@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --pink-primary: #E91E63;
  --pink-dark: #C2185B;
  --pink-deep: #880E4F;
  --pink-light: #FCE4EC;
  --pink-blush: #FFF5F8;
  --gold: #F59E0B;
  --gold-light: #FEF3C7;
  --slate-dark: #0F172A;
  --slate-mid: #334155;
  --slate-light: #64748B;
  --bg-porcelain: #FDFBFC;
  --white: #FFFFFF;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --shadow-sm: 0 2px 8px rgba(233, 30, 99, 0.06);
  --shadow-md: 0 8px 24px rgba(233, 30, 99, 0.10);
  --shadow-lg: 0 16px 40px rgba(233, 30, 99, 0.16);
  --transition: all 0.25s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: #1E293B;
  background-color: var(--bg-porcelain);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

body.mobile-menu-active {
  overflow: hidden !important;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   BACKDROP OVERLAY FOR MOBILE DRAWER
   ========================================================================== */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  z-index: 999990 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background: var(--slate-dark);
  color: #E2E8F0;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 2px solid var(--pink-primary);
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-badge {
  background: rgba(233, 30, 99, 0.2);
  color: #FF6090;
  border: 1px solid rgba(233, 30, 99, 0.4);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--pink-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(233, 30, 99, 0); }
  100% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); }
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #CBD5E1;
  font-weight: 600;
  font-size: 12.5px;
}

.top-bar-link:hover {
  color: #FF4081;
}

.top-bar-wa {
  color: #4ADE80 !important;
  font-weight: 700;
}

/* ==========================================================================
   MAIN STICKY HEADER & DESKTOP NAVIGATION
   ========================================================================== */
.main-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: var(--transition);
}

.main-header.is-scrolled {
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.12);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-svg {
  height: 44px;
  width: auto;
  max-width: 220px;
}

/* Desktop Navbar */
.navbar-nav {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 11px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--slate-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-item.active .nav-link {
  color: var(--pink-primary);
  background: var(--pink-blush);
}

.nav-link svg.chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
}

.nav-item:hover .nav-link svg.chevron {
  transform: rotate(180deg);
}

/* Mega Dropdown */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1.5px solid var(--pink-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1050;
}

.nav-item:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--slate-mid);
  font-weight: 600;
  font-size: 13.5px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--pink-blush);
  color: var(--pink-primary);
  transform: translateX(4px);
}

.dropdown-item-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--pink-light);
  flex-shrink: 0;
}

/* Header Actions / Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-pink {
  background: linear-gradient(135deg, #FF4081 0%, #E91E63 50%, #C2185B 100%);
  color: var(--white) !important;
  box-shadow: 0 6px 18px rgba(233, 30, 99, 0.35);
}

.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(233, 30, 99, 0.45);
}

.btn-outline-pink {
  background: transparent;
  color: var(--pink-primary) !important;
  border: 1.5px solid var(--pink-primary);
}

.btn-outline-pink:hover {
  background: var(--pink-blush);
  color: var(--pink-dark) !important;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white) !important;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
}

.mobile-nav-toggle {
  display: none;
  background: #FFF0F5;
  border: 1.5px solid #FCE4EC;
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
  color: var(--pink-primary);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-drawer-header, .mobile-drawer-footer {
  display: none;
}

@media (max-width: 1200px) and (min-width: 992px) {
  .nav-link {
    padding: 7px 8px;
    font-size: 13.5px;
  }
  .brand-logo-svg {
    max-width: 180px;
    height: 38px;
  }
  .header-phone-btn {
    padding: 7px 12px;
    font-size: 12px;
  }
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER (< 992px)
   ========================================================================== */
@media (max-width: 991px) {
  .top-bar-text, .top-bar-email {
    display: none;
  }

  .top-bar-inner {
    justify-content: space-between;
  }

  .header-wrapper {
    height: 66px;
  }

  .brand-logo-svg {
    max-width: 170px;
    height: 38px;
  }

  .header-phone-btn {
    display: none !important;
  }

  .main-header,
  body.mobile-menu-active .main-header {
    z-index: 999995 !important;
  }

  .mobile-nav-toggle {
    display: inline-flex !important;
    z-index: 999996 !important;
    position: relative;
  }

  /* Slide-in Drawer */
  .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 86% !important;
    max-width: 340px !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #FFFFFF !important;
    z-index: 1000000 !important;
    box-shadow: 8px 0 36px rgba(15, 23, 42, 0.45) !important;
    transform: translateX(-105%) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .navbar.mobile-open {
    transform: translateX(0%) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .mobile-drawer-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 20px !important;
    border-bottom: 1px solid #F1F5F9 !important;
    background: #FFF5F8 !important;
    flex-shrink: 0 !important;
  }

  .mobile-drawer-close {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: #FFFFFF !important;
    border: 1px solid #FCE4EC !important;
    color: #0F172A !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
  }

  .navbar-nav {
    flex: 1 1 auto !important;
    overflow-y: auto !important;
    padding: 14px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .nav-item {
    width: 100% !important;
  }

  .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 14px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    width: 100% !important;
    color: #0F172A !important;
  }

  .nav-link:hover {
    background: #FFF5F8 !important;
    color: var(--pink-primary) !important;
  }

  .mega-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: #F8FAFC !important;
    border-radius: 10px !important;
    padding: 6px 8px !important;
    margin: 4px 0 8px 10px !important;
    display: none !important;
  }

  .nav-item.dropdown-open > .mega-dropdown {
    display: block !important;
  }

  .nav-item.dropdown-open > .nav-link svg.chevron {
    transform: rotate(180deg) !important;
    color: var(--pink-primary) !important;
  }

  .dropdown-item {
    padding: 9px 12px !important;
    font-size: 13px !important;
    gap: 10px !important;
  }

  .mobile-drawer-footer {
    display: block !important;
    padding: 16px 20px !important;
    border-top: 1px solid #F1F5F9 !important;
    background: #FFFFFF !important;
    flex-shrink: 0 !important;
  }
}

/* ==========================================================================
   HERO BANNER & SLIDER
   ========================================================================== */
.hero-section {
  position: relative;
  background: var(--slate-dark);
  padding: 18px 0 32px 0;
  overflow: hidden;
}

.hero-slider {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-slide {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.78) 50%, rgba(15, 23, 42, 0.35) 100%);
  display: flex;
  align-items: center;
  padding: 40px 60px;
}

.hero-content {
  max-width: 620px;
  color: var(--white);
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--pink-primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: #FF80AB;
}

.hero-subtitle {
  font-size: 16px;
  color: #E2E8F0;
  margin-bottom: 26px;
  line-height: 1.55;
}

/* ==========================================================================
   CATEGORY QUICK TILES
   ========================================================================== */
.categories-section {
  padding: 55px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px auto;
}

.section-tag {
  color: var(--pink-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--slate-dark);
  line-height: 1.25;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 10px;
  text-align: center;
  border: 1px solid var(--pink-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink-primary);
  box-shadow: var(--shadow-md);
}

.category-card-img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2.5px solid var(--pink-light);
  transition: transform 0.3s ease;
}

.category-card:hover .category-card-img {
  transform: scale(1.08);
  border-color: var(--pink-primary);
}

.category-card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--slate-dark);
  line-height: 1.3;
}

/* ==========================================================================
   PRODUCT GRID & CARDS
   ========================================================================== */
.products-section {
  padding: 60px 0;
  background: var(--pink-blush);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--pink-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink-primary);
  box-shadow: var(--shadow-lg);
}

.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--pink-primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  background: #FAF7F8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}

.product-card-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.06);
}

.product-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.product-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.spec-pill {
  background: var(--pink-blush);
  color: var(--pink-dark);
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.product-card-pricing {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #F1F5F9;
}

.price-unit {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--pink-primary);
}

.price-sub {
  font-size: 12px;
  color: var(--slate-light);
  font-weight: 600;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

/* ==========================================================================
   B2B PRICE CALCULATOR
   ========================================================================== */
.calculator-section {
  padding: 70px 0;
  background: var(--white);
}

.calc-box {
  background: linear-gradient(135deg, #FFF5F8 0%, #FFFFFF 100%);
  border: 1.5px solid var(--pink-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--slate-dark);
  margin-bottom: 8px;
}

.form-control, .form-select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  background: var(--white);
  color: #1E293B;
  font-weight: 500;
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15);
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-radio {
  cursor: pointer;
}

.pill-radio input {
  display: none;
}

.pill-label {
  display: inline-block;
  padding: 7px 14px;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 12.5px;
  background: var(--white);
  transition: var(--transition);
}

.pill-radio input:checked + .pill-label {
  background: var(--pink-primary);
  color: var(--white);
  border-color: var(--pink-primary);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.25);
}

.qty-preset-btn {
  padding: 6px 12px;
  background: var(--white);
  border: 1.5px solid #CBD5E1;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.qty-preset-btn.active, .qty-preset-btn:hover {
  background: var(--pink-primary);
  color: var(--white);
  border-color: var(--pink-primary);
}

/* Calculator Summary Box */
.calc-summary-card {
  background: var(--slate-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}

.calc-summary-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 12px;
}

.calc-price-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13.5px;
  color: #CBD5E1;
}

.calc-price-row strong {
  color: var(--white);
}

.calc-total-box {
  margin: 20px 0;
  padding: 18px;
  background: rgba(233, 30, 99, 0.16);
  border: 1.5px solid rgba(233, 30, 99, 0.45);
  border-radius: var(--radius-md);
  text-align: center;
}

.calc-total-rate {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: #FF4081;
  line-height: 1.1;
  margin-top: 4px;
}

/* ==========================================================================
   TRUST PILLARS & FEATURES
   ========================================================================== */
.features-section {
  padding: 55px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--pink-blush);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-primary);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: #FFF0F5;
  color: var(--pink-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  font-size: 24px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--slate-dark);
}

.feature-desc {
  font-size: 13px;
  color: var(--slate-light);
  line-height: 1.5;
}

/* ==========================================================================
   4-STEP ORDERING PROCESS
   ========================================================================== */
.process-section {
  padding: 55px 0;
  background: #F8FAFC;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 28px 18px 20px 18px;
  text-align: center;
  position: relative;
}

.step-num {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--pink-primary);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(233, 30, 99, 0.35);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 55px 0;
  background: var(--white);
}

.faq-item {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 18px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--slate-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: var(--transition);
}

.faq-header:hover {
  background: var(--pink-blush);
  color: var(--pink-primary);
}

.faq-body {
  padding: 0 20px 18px 20px;
  color: var(--slate-mid);
  font-size: 14px;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-body {
  display: block;
}

/* ==========================================================================
   SINGLE PRODUCT PAGE
   ========================================================================== */
.single-prod-container {
  padding: 36px 0 65px 0;
}

.prod-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}

.prod-gallery-main {
  background: var(--white);
  border: 1.5px solid var(--pink-light);
  border-radius: var(--radius-lg);
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.prod-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.thumb-item {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  border: 2px solid #E2E8F0;
  cursor: pointer;
  object-fit: cover;
  padding: 3px;
  background: var(--white);
  transition: var(--transition);
  flex-shrink: 0;
}

.thumb-item.active, .thumb-item:hover {
  border-color: var(--pink-primary);
  box-shadow: 0 4px 10px rgba(233, 30, 99, 0.2);
}

.price-slab-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--pink-light);
}

.price-slab-table th {
  background: var(--slate-dark);
  color: var(--white);
  padding: 9px 12px;
  font-size: 12.5px;
  text-align: left;
}

.price-slab-table td {
  padding: 9px 12px;
  border-bottom: 1px solid #F1F5F9;
  font-size: 13.5px;
  font-weight: 600;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0B1120;
  color: #94A3B8;
  padding: 60px 0 24px 0;
  border-top: 4px solid var(--pink-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2.5px;
  background: var(--pink-primary);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a:hover {
  color: #FF4081;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

/* Floating WhatsApp Pill */
.floating-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25D366;
  color: var(--white) !important;
  padding: 11px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.25s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.06);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (1200px, 991px, 768px, 576px)
   ========================================================================== */
@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-title { font-size: 32px; }
  .hero-slide { min-height: 420px; }
  .hero-slide-overlay { padding: 30px 24px; }
  .calc-grid { grid-template-columns: 1fr; }
  .prod-detail-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 14.5px; margin-bottom: 20px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
  .calc-box { padding: 24px 18px; }
  .calc-summary-card { padding: 22px 18px; }
  .prod-gallery-main { height: 320px; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 24px; line-height: 1.25; }
  .hero-slide { min-height: 380px; }
  .hero-slide-overlay { padding: 24px 16px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .category-card { padding: 12px 6px; }
  .category-card-img { width: 56px; height: 56px; }
  .category-card-name { font-size: 11.5px; }
  .product-card-actions { grid-template-columns: 1fr 1fr; }
  .floating-whatsapp { bottom: 16px; right: 16px; padding: 10px 16px; font-size: 12.5px; }
}
