:root{
  --brand-pink: #E4A3B8;      /* REQUIRED: image border + accents */
  --brand-navy: #142C62;      /* clean premium navy */
  --brand-ink:  #0F172A;
  --brand-muted:#64748B;
  --bg:         #F6F8FC;
  --card:       #FFFFFF;
  --border:     #E6EAF2;

  --radius: 18px;
  --shadow: 0 14px 40px rgba(2, 6, 23, .07);
}

body{ background: var(--bg); color: var(--brand-ink); }

/* Navbar */
.ndp-navbar{
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.ndp-brand{ text-decoration:none; }
.ndp-logo{
  max-height: 60px;
  height: auto;
  width: auto;
  /* Brand image border requirement */
  border-radius: 12px;
  background: #fff;
}
.nav-link{
  color: #334155 !important;
  font-weight: 700;
}
.nav-link.active{
  color: var(--brand-navy) !important;
  position: relative;
}
.nav-link.active::after{
  content:"";
  position:absolute;
  left: .5rem; right: .5rem;
  bottom: .2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-pink);
}

/* Buttons */
.ndp-btn-primary{
  background: var(--brand-navy);
  border: 1px solid var(--brand-navy);
  color:#fff;
  font-weight: 800;
  border-radius: 12px;
  padding: .6rem 1rem;
}
.ndp-btn-primary:hover{
  background: #0f2452;
  border-color: #0f2452;
  color:#fff;
}
.ndp-btn-soft{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
  font-weight: 800;
  border-radius: 12px;
  padding: .6rem 1rem;
}
.ndp-btn-soft:hover{
  background: rgba(255,255,255,.18);
  color:#fff;
}
.ndp-btn-outline{
  border-radius: 12px;
}

/* General layout */
.ndp-page-wrap{ padding: 18px 0 40px; }
.ndp-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.ndp-muted{ color: var(--brand-muted); }
.ndp-section-title{
  font-weight: 900;
  color: var(--brand-navy);
  letter-spacing: .2px;
}

/* Pills */
.ndp-pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(228,163,184,.18);
  border: 1px solid rgba(228,163,184,.35);
  color: var(--brand-navy);
  font-weight: 900;
  font-size: 12px;
}

/* Sidebar */
.ndp-sticky-col{ position: sticky; top: 92px; }
.ndp-sidebar-card{ overflow:hidden; }
.ndp-sidebar-head{
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(228,163,184,.22), rgba(228,163,184,0));
}
.ndp-sidebar-title{
  font-size: 13px;
  font-weight: 900;
  color: var(--brand-navy);
  letter-spacing: .35px;
}
.ndp-product-list{
  max-height: calc(100vh - 220px);
  overflow: auto;
  padding: 8px;
}
.ndp-product-list a{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration:none;
  color: var(--brand-ink);
  font-weight: 700;
  font-size: 13px;
}
.ndp-product-list a:hover{
  background: rgba(228,163,184,.14);
  color: var(--brand-navy);
}
.ndp-product-list a.active{
  background: rgba(20,44,98,.10);
  border: 1px solid rgba(20,44,98,.10);
  color: var(--brand-navy);
}
.ndp-dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--brand-pink);
  flex: 0 0 auto;
}

/* Inputs */
.ndp-input{
  border-radius: 12px !important;
  border: 1px solid var(--border) !important;
  padding: .6rem .8rem !important;
}
.ndp-input:focus{
  border-color: rgba(228,163,184,.7) !important;
  box-shadow: 0 0 0 .25rem rgba(228,163,184,.25) !important;
}
.ndp-label{ color: var(--brand-navy); }

/* Hero carousel */
.ndp-hero-card{ overflow:hidden; }
.carousel-item{
  height: 290px;
  position: relative;
  background: #0b1b3b;
}
.ndp-slide-bg{
  position:absolute; inset:0;
  background-position:center;
  background-size:cover;
  opacity: .40;
  filter: saturate(1.05);
}
.ndp-slide-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(11,27,59,.92), rgba(11,27,59,.45));
}
.ndp-slide-content{
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 28px;
  display:flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color:#fff;
}
.ndp-kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .35px;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
}
.ndp-hero-title{
  font-size: 28px;
  line-height: 1.1;
  font-weight: 950;
  margin: 0;
}
.ndp-hero-sub{
  margin: 0;
  color: rgba(255,255,255,.82);
  max-width: 680px;
}
.ndp-hero-actions{ margin-top: 8px; display:flex; gap:10px; flex-wrap:wrap; }

/* Industries */
.ndp-industry-badge{
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand-pink);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 800;
  color: var(--brand-ink);
  box-shadow: 0 10px 22px rgba(2,6,23,.04);
}

/* Contact tiles */
.ndp-tile{
  border: 1px solid var(--border);
  border-radius: 16px;
  background:#fff;
  padding: 16px;
  height: 100%;
}
.ndp-tile-ico{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(228,163,184,.18);
  border: 1px solid rgba(228,163,184,.35);
  color: var(--brand-navy);
  font-size: 18px;
}
.ndp-tile-title{
  font-weight: 950;
  margin: 10px 0 4px;
  color: var(--brand-navy);
}
.ndp-link{
  color: var(--brand-navy);
  font-weight: 900;
  text-decoration: none;
}
.ndp-link:hover{ text-decoration: underline; }

/* Footer */
.ndp-footer{
  background: #071B2B;
  color: rgba(255,255,255,.82);
  margin-top: 34px;
}
.ndp-footer a{ color: rgba(255,255,255,.82); text-decoration:none; }
.ndp-footer a:hover{ color:#fff; }

/* Responsive */
@media (max-width: 991px){
  .ndp-sticky-col{ position: static; top:auto; }
  .ndp-product-list{ max-height: 320px; }
  .carousel-item{ height: 260px; }
  .ndp-hero-title{ font-size: 24px; }
}


/* Product detail media */
.ndp-product-main-img{
  width: 100%;
  border-radius: 16px;
  border: 2px solid var(--brand-pink); /* #E4A3B8 */
  background: #fff;
  padding: 10px;
  box-shadow: 0 14px 40px rgba(2, 6, 23, .07);
}

.ndp-thumb-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ndp-thumb{
  border: 2px solid transparent;
  background: #fff;
  padding: 6px;
  border-radius: 12px;
  cursor: pointer;
  width: 72px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ndp-thumb img{
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}
.ndp-thumb.active{
  border-color: var(--brand-pink); /* #E4A3B8 */
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
}

.ndp-product-details ul{
  margin-top: 12px;
}
.ndp-product-details li{
  margin-bottom: 6px;
}

.ndp-page-title{ font-weight: 800; letter-spacing: -.02em; }
.ndp-hero-mini{ display:flex; flex-direction:column; gap:12px; }
.ndp-mini-stat{ display:flex; gap:12px; padding:14px; border-radius:16px; background:#fff; border:1px solid rgba(15,23,42,.08); }
.ndp-mini-ico{ width:42px; height:42px; display:flex; align-items:center; justify-content:center; border-radius:12px; border:2px solid var(--brand-pink); }

.ndp-feature{ display:flex; gap:14px; padding:16px; border-radius:18px; background:#fff; border:1px solid rgba(15,23,42,.08); }
.ndp-feature-ico{ width:46px; height:46px; display:flex; align-items:center; justify-content:center; border-radius:14px; border:2px solid var(--brand-pink); }
.ndp-feature-title{ font-size:1.05rem; margin:0 0 6px; font-weight:800; }

.ndp-inner-card{ border:1px solid rgba(15,23,42,.08); }
.ndp-subtitle{ font-weight:800; }

.ndp-list-check{ padding-left: 18px; }
.ndp-list-check li{ margin-bottom: 8px; }

.ndp-grade{
  padding:10px 12px;
  border-radius:14px;
  background:#fff;
  border:1px dashed rgba(15,23,42,.18);
}


.ndp-range-item{
  padding:14px 16px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  font-weight:500;
  transition:.25s ease;
}
.ndp-range-item:hover{
  border-color: var(--brand-pink);
  box-shadow:0 12px 28px rgba(2,6,23,.08);
}
.ndp-quality-side{ display:flex; flex-direction:column; gap:12px; }
.ndp-quality-badge{
  display:flex; gap:12px; padding:14px;
  border-radius:16px; background:#fff;
  border:1px solid rgba(15,23,42,.08);
}
.ndp-quality-ico{
  width:44px; height:44px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  border:2px solid var(--brand-pink);
}
.ndp-quality-title{ font-weight:800; }


/* Breadcrumb */
.ndp-breadcrumb{ display:flex; gap:10px; align-items:center; font-size:.95rem; }
.ndp-bc-link{ color:inherit; text-decoration:none; opacity:.75; }
.ndp-bc-link:hover{ opacity:1; text-decoration:underline; }
.ndp-bc-sep{ opacity:.45; }
.ndp-bc-current{ font-weight:700; }

/* Side nav */
.ndp-side-nav{ border:1px solid rgba(15,23,42,.08); }
.ndp-navlist{ display:flex; flex-direction:column; gap:8px; margin-top:10px; }
.ndp-navitem{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color:inherit;
  padding:10px 12px; border-radius:14px;
  border:1px solid transparent;
  background: rgba(255,255,255,.7);
  transition:.2s ease;
}
.ndp-navitem:hover{ border-color: rgba(15,23,42,.12); transform: translateY(-1px); }
.ndp-navitem.active{
  border-color: var(--brand-pink);
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}

/* Searchbar */
.ndp-searchbar .input-group-text{
  background:#fff; border:1px solid rgba(15,23,42,.12);
  border-right:none; border-radius:14px 0 0 14px;
}
.ndp-searchbar .form-control{
  border:1px solid rgba(15,23,42,.12);
  border-left:none; border-radius:0 14px 14px 0;
  padding:12px 14px;
}

/* Section header */
.ndp-range-section .ndp-section-head{
  display:flex; gap:12px; align-items:flex-start;
  margin: 0 0 14px;
}
.ndp-section-icon{
  width:44px; height:44px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  border:2px solid var(--brand-pink);
  background: rgba(228,163,184,.18);
}

/* Product cards grid */
.ndp-range-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
@media (min-width: 992px){
  .ndp-range-grid{ grid-template-columns: 1fr 1fr; }
}

/* Product card row */
.ndp-range-item2{
  display:flex; align-items:center; gap:12px;
  padding:14px 14px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  transition:.22s ease;
}
.ndp-range-item2:hover{
  border-color: var(--brand-pink);
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
  transform: translateY(-1px);
}
.ndp-ri-ico{
  width:42px; height:42px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  border:2px solid var(--brand-pink);
  background: rgba(228,163,184,.14);
  flex: 0 0 auto;
}
.ndp-ri-body{ flex:1; min-width: 0; }
.ndp-ri-title{
  font-weight:800;
  margin:0 0 2px;
  line-height:1.25;
}

/* Small outline button */
.ndp-btn-outline-sm{
  border:1px solid rgba(15,23,42,.18);
  background:#fff;
  border-radius:12px;
  padding:8px 12px;
  font-weight:700;
  white-space:nowrap;
}
.ndp-btn-outline-sm:hover{
  border-color: var(--brand-pink);
  background: rgba(228,163,184,.10);
}


:root{
  --brand-pink: #E4A3B8;
}

.ndp-industry-head{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:14px;
}
.ndp-industry-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(228,163,184,.18);
  border: 2px solid var(--brand-pink);
  flex: 0 0 auto;
  font-size: 18px;
}

.ndp-mini-block{
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  padding: 14px 14px;
  background: rgba(255,255,255,.7);
}
.ndp-mini-title{
  font-weight: 800;
  margin-bottom: 6px;
}

.ndp-img-frame{
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid var(--brand-pink);
  background: #fff;
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
}
.ndp-img-frame img{
  width: 100%;
  height: auto;
  display: block;
}
:root { --brand-pink:#E4A3B8; }

.ndp-filter-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:center;
}

.ndp-filter-pill{
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  color:#0f172a;
  transition:.15s ease;
}
.ndp-filter-pill:hover{
  border-color: var(--brand-pink);
  box-shadow: 0 10px 22px rgba(2,6,23,.08);
}
.ndp-filter-pill.active{
  border-color: var(--brand-pink);
  background: rgba(228,163,184,.18);
  color:#0f172a;
}

.ndp-product-card{ height:100%; }
.ndp-product-thumb{
  width:100%;
  border:0;
  padding:0;
  background:transparent;
  text-align:left;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  border:3px solid var(--brand-pink);
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
}
.ndp-product-thumb img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
  background:#f8fafc;
}
@media (max-width: 575px){
  .ndp-product-thumb img{ height:180px; }
}

.ndp-product-overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding:12px;
  background: linear-gradient(180deg, rgba(2,6,23,0), rgba(2,6,23,.65));
  color:#fff;
}
.ndp-product-name{
  display:block;
  font-weight:800;
  font-size:14px;
  line-height:1.25;
}
.ndp-product-meta{
  display:flex;
  align-items:center;
  gap:8px;
  opacity:.92;
  font-size:12px;
  margin-top:4px;
}

/* Modal */
.ndp-modal{ border-radius:18px; overflow:hidden; }
.ndp-modal-imgframe{
  border-radius:18px;
  overflow:hidden;
  border:3px solid var(--brand-pink);
  background:#fff;
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
}
.ndp-modal-imgframe img{
  width:100%;
  height:480px;
  object-fit:contain;
  background:#f8fafc;
}
@media (max-width: 991px){
  .ndp-modal-imgframe img{ height:320px; }
}

.ndp-modal-thumbs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.ndp-thumb-btn{
  border:2px solid rgba(15,23,42,.12);
  background:#fff;
  border-radius:12px;
  padding:0;
  width:74px;
  height:64px;
  overflow:hidden;
  cursor:pointer;
}
.ndp-thumb-btn img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.ndp-thumb-btn.active{
  border-color: var(--brand-pink);
}
.ndp-map-head{
  background: rgba(228,163,184,.18);
  border-bottom: 1px solid rgba(15,23,42,.10);
}

@media (min-width: 992px) {
    .py-lg-5 {
        padding-top: 0rem !important;
        padding-bottom: 3rem !important;
    }
}

.ndp-hero-card{
  border-radius: 18px;
}

.ndp-banner-img{
  height: clamp(260px, 42vw, 520px);
  object-fit: cover;
}