/* ====================================================
   SAFFRON LUXURY THEME
   Inspired by Spa Ceylon / saffron flower palette
   ==================================================== */

/* Google Fonts (safe even if also loaded via <link>) */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Cormorant+Garamond:wght@400;500;600&display=swap");

/* ==============================
   Design Tokens
   ============================== */
:root{
  /* Brand – saffron flower + saffron threads */
  --ps-primary: #7b2cbf;        /* Royal purple (main CTA, accents) */
  --ps-primary-600: #5a189a;    /* Darker hover */
  --ps-primary-700: #3c096c;    /* Deep accent / focus ring */

  --ps-secondary: #f3a61b;      /* Saffron gold */
  --ps-secondary-600: #d48806;  /* Darker saffron */

  /* Base */
  --ps-bg: #ffffff;
  --ps-card: #ffffff;
  --ps-text: #281628;           /* Deep plum-brown text */
  --ps-muted: #7e6d83;          /* Muted lavender-brown */

  /* Links */
  --link: #5a189a;
  --link-hover: #3c096c;

  /* Radii & Shadows */
  --ps-radius: 16px;
  --ps-shadow: 0 10px 30px rgba(17, 12, 32, .07);

  /* Layout */
  --container-max: 1320px;
  --bottom-nav-h: 68px;

  /* Header */
  --header-band-y: 18px;
  --header-soft-border: #f7e7c6; /* warm pale gold */

  /* Search */
  --search-bg: #ffffff;
  --search-border: #e7e0f4;
  --search-shadow: 0 18px 40px rgba(33, 18, 66, .12);

  /* Type scale */
  --fs-base: 15.5px;
  --lh-base: 1.55;

  /* Section gaps */
  --ps-section-gap: clamp(32px, 5vw, 96px);
}

/* Containers (match XStore width) */
@media (min-width:1200px){
  .container, .container-lg, .container-xl, .container-xxl{
    max-width: var(--container-max);
  }
}

/* ==============================
   Base / Typography
   ============================== */
html, body{
  background: var(--ps-bg);
  color: var(--ps-text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button, input, select, textarea{ font-family: inherit; }

/* Headings – luxury serif */
h1,.h1,h2,.h2,h3,.h3,h4,.h4,
h5,.h5,h6,.h6{
  font-family: "Playfair Display", serif;
  letter-spacing: .5px;
  color: var(--ps-text);
}
h1,.h1{ font-weight:700; }
h2,.h2{ font-weight:600; }
h3,.h3{ font-weight:600; }
h4,.h4,h5,.h5,h6,.h6{ font-weight:500; }

/* Brand title utility (for logo text / main wordmark) */
.brand-title{
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Small “LIFE SCIENCES” style text */
.brand-eyebrow,
.text-small-serif{
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .78rem;
}

/* Links */
a{ color: var(--link); }
a:hover{ color: var(--link-hover); }

/* Accent utilities */
.text-accent{ color: var(--ps-primary) !important; }
.text-secondary-brand{ color: var(--ps-secondary) !important; }
.bg-accent{ background: var(--ps-primary) !important; color:#fff !important; }
.bg-secondary-brand{ background: var(--ps-secondary) !important; color:#3b2600 !important; }
.badge-accent{ background: var(--ps-primary); }

/* ==============================
   Buttons
   ============================== */
.btn-primary{
  background: var(--ps-primary) !important;
  border-color: var(--ps-primary) !important;
  color:#fff !important;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle{
  background: var(--ps-primary-600) !important;
  border-color: var(--ps-primary-600) !important;
}
.btn-primary:focus,
.btn-check:focus + .btn-primary{
  box-shadow: 0 0 0 .2rem rgba(90,24,154,.25) !important;
}
.btn-primary:disabled,
.btn-primary.disabled{
  background: var(--ps-primary) !important;
  border-color: var(--ps-primary) !important;
  opacity:.65;
  color:#fff !important;
}

/* Secondary (saffron gold) */
.btn-success,
.btn-accent-gold{
  background: var(--ps-secondary) !important;
  border-color: var(--ps-secondary) !important;
  color:#3b2600 !important;
}
.btn-success:hover,
.btn-accent-gold:hover{
  background: var(--ps-secondary-600) !important;
  border-color: var(--ps-secondary-600) !important;
}

/* Outline with brand */
.btn-outline-primary{
  color: var(--ps-primary) !important;
  border-color: var(--ps-primary) !important;
  background: transparent !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus{
  background: var(--ps-primary) !important;
  border-color: var(--ps-primary) !important;
  color:#fff !important;
}

/* Top notice bar */
  .site-noticebar{
    background:#0b0b0b;
    color:#fff;
    text-align:center;
    padding:10px 14px;
    font-size:12px;
    letter-spacing:.06em;
    line-height:1.2;
    position:relative;
  }
  .site-noticebar .notice-close{
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    border:0;
    background:transparent;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    opacity:.85;
  }
  .site-noticebar .notice-close:hover{ opacity:1; }

  /* remove gap header -> hero */
  header.main-header{ margin-bottom:0 !important; }
  .site-main > .container{ padding-top:0 !important; }
  #heroArea, .hero-full{ margin-top:0 !important; }

/* ==============================
   Topbar
   ============================== */
.topbar{
  background:#fbf7ff;
  border-bottom:1px solid #eee0ff;
  font-size:.95rem;
  color:var(--ps-muted);
}
.topbar .tb-link{
  color:var(--ps-muted);
  text-decoration:none;
  padding:.55rem .85rem;
  display:inline-flex;
  align-items:center;
  gap:.35rem;
}
.topbar .tb-link:hover{ color:var(--ps-primary); }
/* ==============================
   SAFFRON HEADER (DESKTOP + MOBILE)
   ============================== */

/* Header sits over hero */
.saffron-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background-color: transparent;
  transition: background-color .25s ease, box-shadow .25s ease;
}

.site-main{
  padding-top: 110px;
}

@media (max-width: 991.98px){
  .site-main{
    padding-top: 80px;
  }
}



  /* Header: always solid white, small shadow */
    .saffron-header{
      background:#ffffff !important;
      box-shadow:0 8px 24px rgba(0,0,0,.06);
    }
    body.header-overlay-page .saffron-header{
      background:#ffffff !important;
    }

    /* Desktop logo size tweak if needed */
    .saffron-header-desktop .saffron-logo-img{
      height:44px;
      width:auto;
    }

    /* Mobile logo */
    .saffron-header-mobile .site-logo{
      height:40px;
      width:auto;
    }

    /* Offcanvas menu text – match theme (Cormorant, uppercase, letter-spacing) */
    .off-list a span{
      font-family:"Cormorant Garamond", serif;
      letter-spacing:2px;
      text-transform:uppercase;
      font-size:.9rem;
      font-weight:600;
    }



/* -------- Desktop layout -------- */
.saffron-header-desktop .saffron-logo-img {
  height: 68px;
  width: auto;
  margin: 0 auto;
}

/* icons (search / account / bag) */
.header-icon-link {
  color: var(--ps-text);
  text-decoration: none;
  font-size: 20px;
}
.header-icon-link:hover { opacity: .8; }

/* main nav links */
.saffron-main-nav .nav-link {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 1px;
  text-transform: none;
  font-size: 0.92rem;
  color: var(--ps-text);
  padding: .75rem 1rem .4rem;
  border-bottom: 1px solid transparent;
}
.saffron-main-nav .nav-link.active,
.saffron-main-nav .nav-link:hover {
  border-bottom-color: #ffffff;
}

/* little triangle after items with dropdown */
.mega-nav .caret {
  font-size: .65rem;
}

/* cart dot */
.cart-count-dot {
  position: absolute;
  top: -4px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #f3a61b;        /* saffron yellow */
  color: #3b2600;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}

/* -------- Mega menu (desktop) -------- */
.mega-nav {
  position: static; /* parent is static so dropdown can stretch full width */
}

/* full-width white panel under header */
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 0;
  padding: 32px 0;
  border: 0;
  border-radius: 0;
  min-width: 100%;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(2,6,23,.12);
}

/* inner content is constrained to site container */
.mega-menu .container {
  max-width: var(--container-max, 1320px);
  margin: 0 auto;
}

/* column headings (first-level children) */
.mega-heading {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .5px;
  margin-bottom: .35rem;
}
.mega-heading a {
  color: #2b1933;
  text-decoration: none;
}
.mega-heading a:hover {
  color: #5a189a; /* deep purple accent */
}

/* second-level links */
.mega-list li a {
  display: block;
  font-size: .88rem;
  color: #6c5a7a;
  text-decoration: none;
  padding: .12rem 0;
}
.mega-list li a:hover {
  color: #3c096c;
}

/* -------- Header when SCROLLED (all pages) -------- */

body.header-scrolled .saffron-header {
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

body.header-scrolled .header-icon-link,
body.header-scrolled .saffron-main-nav .nav-link {
  color: #2b1933;
}
body.header-scrolled .saffron-main-nav .nav-link.active,
body.header-scrolled .saffron-main-nav .nav-link:hover {
  border-bottom-color: #2b1933;
}



/* -------- MOBILE HEADER (≤ 991px) -------- */

@media (max-width: 991.98px){
  .saffron-header-mobile {
    background:#ffffff;
    border-bottom:1px solid #eee0ff;
  }

  .m-icon{
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
    width:auto;
    height:auto;
    padding:0;
  }
  .m-icon i{
    color:#1f1533 !important;
    font-size:22px;
    line-height:1;
  }
  .m-icon:hover i{ opacity:.85; }

  .saffron-header-mobile .site-logo{
    height:34px;
    width:auto;
    /* no display:block here – logo swap handles visibility */
  }
}

/* -------- Mobile offcanvas menu -------- */

.off-menu{
  --bs-offcanvas-width:85vw;
  background: var(--ps-primary);
  color:#fff;
}
.off-menu .btn-close{ filter:invert(1); opacity:.9; }
.off-header-logo{ height:28px; }
.off-search .form-control{ height:40px; border-radius:8px; }
.off-search .btn{ height:40px; border-radius:8px; }

.off-tabs .nav-link{
  color:#000000;
  opacity:.85;
  font-weight:700;
  letter-spacing:.3px;
}
.off-tabs .nav-link.active{
  color:#000000;
  opacity:1;

}
.off-tabs .nav-link.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:2px;
  background:#000000;
}

.off-list a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.75rem 0;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.off-list a:hover{ color:#fff; opacity:.95; }

.off-sub a{
  display:block;
  padding:.4rem 0 .4rem .75rem;
  font-weight:500;
  opacity:.9;
  border:0;
}
.off-divider{
  border-top:1px solid rgba(255,255,255,.25);
  margin:.75rem 0;
}

/* Mobile header logo */
.saffron-header-mobile .site-logo {
  height: 40px;
  width: auto;
}

/* ==============================
   LOGO SWAP (dark vs white background)
   ============================== */

/* Default: transparent header on home → show dark-bg logo only */
.saffron-logo-img.logo-dark-bg,
.site-logo.logo-dark-bg {
  display: inline-block;
}
.saffron-logo-img.logo-white-bg,
.site-logo.logo-white-bg {
  display: none;
}




/* =========================
   Bottom nav (desktop main)
   ========================= */
.navbelt{
  background:#ffffff;
  border-top:1px solid #f4e8ff;
  border-bottom:1px solid #f4e8ff;
}
.navbelt .nav .nav-link{
  color: var(--ps-text);
  font-weight:600;
  padding:.9rem 1rem;
  letter-spacing:.15px;
  text-transform:uppercase;
  font-size:.82rem;
}
.navbelt .nav .nav-link:hover,
.navbelt .nav .nav-link.active{
  color: var(--ps-primary);
}

/* Optional alternate belt */
.navbelt-orion{
  background:#fbf7ff;
  border-top:1px solid #eee0ff;
  border-bottom:1px solid #eee0ff;
}
.navbelt-orion .nav{ gap:.25rem; }
.navbelt-orion .nav-link{
  color:#2b1933;
  font-weight:700;
  letter-spacing:.2px;
  padding:.8rem 1rem;
  border-radius:.5rem;
  text-transform:uppercase;
}
.navbelt-orion .nav-link:hover{ color:var(--ps-primary); }
.navbelt-orion .nav-link.active{
  background:var(--ps-primary);
  color:#fff;
  box-shadow:0 6px 16px rgba(60,9,108,.35);
}

/* All Departments trigger */
.cats-trigger{
  border:1px solid var(--header-soft-border);
  background:#fffaf1;
  border-radius:12px;
  color:#2b1933;
  font-weight:600;
}
.cats-trigger i{ color: var(--ps-primary); }
#browseToggle.btn{ padding:.55rem .85rem; border-radius:12px; }
#browseToggle .bi-chevron-down{ transition:transform .15s ease; }
.cats-wrap.show #browseToggle .bi-chevron-down{ transform:rotate(180deg); }

.cats-panel{
  position:absolute;
  left:0;
  top:calc(100% + 8px);
  width:320px;
  max-height:72vh;
  overflow:auto;
  background:#fff;
  border:1px solid #eee3ff;
  border-radius:12px;
  box-shadow:0 18px 40px rgba(33,18,66,.18);
  display:none;
  z-index:1060;
  transition:max-height .2s ease;
  overscroll-behavior: contain;
}
.cats-wrap.show .cats-panel{ display:block; }
.cats-item > a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:.6rem .9rem;
  color:#2b1933;
  text-decoration:none;
  font-weight:500;
}
.cats-item > a:hover{ background:#faf4ff; }
.cats-sub{ display:none; padding:0 0 .6rem .9rem; }
.cats-item:hover .cats-sub{ display:block; }
.cats-sub a{
  display:block;
  padding:.25rem 0;
  color:#6c5a7a;
  text-decoration:none;
  font-weight:500;
}
.cats-sub a:hover{ color: var(--ps-primary); }

/* ==============================
   MOBILE HEADER (≤ 991px)
   ============================== */
@media (max-width: 991.98px){
  .logo-row{ padding:16px 0; }
  .contact-mini{ display:none !important; }

  .m-band{
    background:#ffffff !important;
    color:#1f1533 !important;
    padding:.55rem 0;
    border-bottom:1px solid #eee0ff;
  }

  .m-icon{
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
    width:auto;
    height:auto;
    padding:0;
  }
  .m-icon i{
    color:#1f1533 !important;
    font-size:22px;
    line-height:1;
  }
  .m-icon:hover i{ opacity:.85; }

  .site-logo{
    height:34px;
    width:auto;
    display:block;
    filter:none !important;
  }

  .m-search-wrap{
    background:#ffffff;
    border:1px solid #e7e0f4;
    border-radius:9999px;
    box-shadow:0 8px 20px rgba(33,18,66,.08);
    padding:.25rem;
    margin-top:.75rem;
  }
  .m-search-wrap input{
    border:0;
    height:40px;
    box-shadow:none;
    color:#1f1533;
  }
  .m-search-wrap button{
    border:0;
    height:40px;
    border-radius:9999px;
    color:#1f1533;
    background:transparent;
  }

  .m-icon .badge{
    transform: translate(-30%, -30%);
  }

  .off-menu .offcanvas-header{
    background:#ffffff;
    border-bottom:1px solid #eee0ff;
    color:#1f1533;
  }
  .off-menu .offcanvas-body{
    background:#ffffff;
    color:#1f1533;
  }
  .off-menu .off-list a{
    color:#1f1533;
    text-decoration:none;
  }
  .off-menu .off-list a:hover{
    color:var(--ps-primary);
  }

  /* Mobile search suggestion tweaks */
  .m-search-wrap { position: relative; }
}

/* Mobile offcanvas menu shell */
.off-menu{
  --bs-offcanvas-width:85vw;
  background: var(--ps-primary);
  color:#fff;
}
.off-menu .btn-close{ filter:invert(1); opacity:.9; }
.off-header-logo{ height:28px; }
.off-search .form-control{ height:40px; border-radius:8px; }
.off-search .btn{ height:40px; border-radius:8px; }
.off-tabs .nav-link{
  color:#000000;
  opacity:.85;
  font-weight:700;
  letter-spacing:.3px;
}
.off-tabs .nav-link.active{
  color:#000000;
  opacity:1;
 
}
.off-tabs .nav-link.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:2px;
  background:#000000;
}
.off-list a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.75rem 0;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.off-list a:hover{ color:#fff; opacity:.95; }
.off-sub a{
  display:block;
  padding:.4rem 0 .4rem .75rem;
  font-weight:500;
  opacity:.9;
  border:0;
}
.off-divider{
  border-top:1px solid rgba(255,255,255,.25);
  margin:.75rem 0;
}

/* Main content spacing under sticky header */
.site-main{
  padding-top: 110px;   /* adjust if header taller/shorter */
  background: #ffffff;  /* ensure clean white under everything */
}

/* Mobile: header slightly shorter */
@media (max-width: 991.98px){
  .site-main{
    padding-top: 80px;
  }
}

/* More dropdown links */
.saffron-more-menu{ max-width:320px; }
.saffron-more-link{
  display:block;
  padding:.6rem .75rem;
  border-radius:10px;
  text-decoration:none;
  color:#2b1933;
  font-weight:600;
  font-size:.9rem;
}
.saffron-more-link:hover{
  background:#faf4ff;
  color: var(--ps-primary);
}
.saffron-more-link.active{
  background: rgba(90,24,154,.10);
  color: var(--ps-primary);
}


/* ==============================
   Sections / Headings / Chips
   ============================== */
.feature-bar,
#shopByCategory,
.section-trending,
.section-latest{
  margin-top: var(--ps-section-gap) !important;
  margin-bottom: var(--ps-section-gap) !important;
}

/* Section headers */
.section-head{
  position:relative;
  min-height:40px;
  display:flex;
  align-items:center;
  margin-bottom:1rem;
  justify-content:flex-start;
}
.section-head h4{
  margin:0;
  text-align:left;
}

/* Section title chip */
.section-head .title-chip{
  display:inline-block;
  color:#3b2600;
  background: #fff5dd;
  padding:.40rem .90rem;
  border-radius:999px;
  line-height:1.1;
  font-weight:600;
  letter-spacing:.2px;
  box-shadow:0 6px 16px rgba(0,0,0,.04);
  border:1px solid #f3e0b5;
  max-width:100%;
  white-space:nowrap;
  font-family:"Cormorant Garamond", serif;
  text-transform:uppercase;
}

/* Purple variant */
.section-head .chip-purple{
  background: #f3e8ff;
  color:#3c096c;
  border-color:#e1c9ff;
}

/* “View all” CTA on desktop */
.section-head .cta-desktop{
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
}

/* ==============================
   HERO – fixed aspect, no stretch
   ============================== */

/* Full-bleed container still ok */
.full-bleed{
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

/* No negative margin – sit normally under header */
.orion-hero{
  margin-top: 0;
}

/* Stage: keep BG ratio, don’t stretch */
/* Desktop default (keep) */
.orion-hero .hero-stage{
  width: 100%;
  border-radius: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Mobile: show FULL image (no crop) */
@media (max-width: 991.98px){

  .orion-hero .hero-stage{
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    aspect-ratio: 16 / 9;   /* controls height */
    height: auto;
    min-height: 0;          /* IMPORTANT */
    border-radius: 0;
  }

  /* kill inherited heights */
  .orion-hero .container,
  .orion-hero .row{
    height: auto !important;
    min-height: 0 !important;
  }
}


/* Foreground PNG – never stretched */
.orion-hero .hero-fg{
  max-width: 100%;
  height: auto;                    /* keep natural ratio */
  max-height: 440px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 34px rgba(60,9,108,.35));
}

/* Text block */
.orion-hero .hero-copy{
  padding: 24px 16px;
  color: #3c096c;
}
.orion-hero .hero-title{
  font-size: clamp(28px, 4.6vw, 56px);
  font-weight:600;
  letter-spacing: .4px;
  color: #3c096c;
  margin-bottom:.25em;
}
.orion-hero .hero-sub{
  font-size: clamp(16px, 2.2vw, 26px);
  font-family:"Cormorant Garamond", serif;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#f3a61b;
}

/* Hero button */
.btn-hero{
  background:var(--ps-primary);
  border:1px solid var(--ps-primary);
  color:#fff;
  font-weight:600;
  border-radius:999px;
  padding:.9rem 1.4rem;
  box-shadow:0 6px 18px rgba(90,24,154,.35);
}
.btn-hero:hover{
  background:var(--ps-primary-600);
  border-color:var(--ps-primary-600);
}

/* Carousel controls */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next{
  width: 5rem;
}

/* Animations */
.animate{
  opacity:0;
  transform: translateY(20px) scale(.98);
  transition: opacity .6s, transform .6s;
}
.carousel-item.active .animate.in{
  opacity:1;
  transform:none;
}
.el-1{ transition-delay:.10s }
.el-2{ transition-delay:.20s }
.el-3{ transition-delay:.35s }
.el-4{ transition-delay:.50s }

.hero-empty{
  background: linear-gradient(180deg,#fdfbff,#fff8ef);
}

/* Desktop layout */
@media (min-width: 992px){
  .orion-hero .col-lg-6:first-child{
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .orion-hero .hero-stage{
    min-height: 520px;
  }
}

/* Tablet & Mobile */
@media (max-width: 991.98px){
  .orion-hero .container,
  .orion-hero .row,
  .orion-hero .col-12{
    padding:0 !important;
    margin:0 !important;
  }

  .orion-hero .hero-stage{
    /* slightly shorter on small screens but same behaviour */
   
    border-radius:0;
  }

  /* Foreground image: smaller but still correct ratio */
  .orion-hero .hero-fg{
    position:absolute;
    left: 6vw;
    bottom: 0;
    width: min(42vw, 240px);
    height:auto;               /* keep aspect ratio */
    max-height:none;
    transform:none;
    filter:drop-shadow(0 10px 18px rgba(33,18,66,.28));
    z-index:2;
    pointer-events:none;
  }

  .orion-hero .hero-copy{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    left: calc(6vw + min(42vw, 240px) + 4vw);
    right:6vw;
    padding:0;
    text-align:left;
    color:#1f1533;
    text-shadow:none;
    z-index:3;
  }

  .orion-hero .hero-title{
    font-size:clamp(22px, 7vw, 34px);
    line-height:1.1;
    margin:0 0 4px;
  }
  .orion-hero .hero-sub{
    font-size:clamp(12px, 4vw, 16px);
    margin:0 0 10px;
  }
  .btn-hero{
    padding:.55rem .9rem;
    border-radius:999px;
    box-shadow:0 3px 10px rgba(33,18,66,.25);
  }

  #heroCarousel .carousel-control-prev,
  #heroCarousel .carousel-control-next{ width: 12%; }
  #heroCarousel .carousel-control-prev-icon,
  #heroCarousel .carousel-control-next-icon{
    transform:scale(.85);
    filter:drop-shadow(0 2px 6px rgba(0,0,0,.35));
  }
}

@media (max-width: 380px){
  .orion-hero .hero-fg{
    width: min(38vw, 200px);
  }
  .orion-hero .hero-copy{
    left: calc(6vw + min(38vw, 200px) + 4vw);
  }
}


/* ==============================
   Product card – saffron theme
   ============================== */
.product-card{
  --pc-border: #eee4ff;
  --pc-hover-border: #f8d7a1;
  --pc-shadow: 0 8px 24px rgba(33,18,66,.05);
  --pc-shadow-hover: 0 12px 28px rgba(33,18,66,.09);

  display:flex;
  flex-direction:column;
  gap:.45rem;
  border:1px solid var(--pc-border);
  box-shadow: var(--pc-shadow);
  border-radius:14px;
  background:#fff;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.product-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--pc-shadow-hover);
  border-color: var(--pc-hover-border);
}
.product-card:focus-within{
  box-shadow: 0 0 0 3px rgba(123,44,191,.16), var(--pc-shadow);
  border-color: var(--pc-hover-border);
}
.product-card > a.d-block{
  flex:1;
  color: inherit;
  text-decoration:none;
}
.product-card a{
  color:inherit;
  text-decoration:none;
}
.product-card a:hover{ color:inherit; }

/* Image */
.product-card .pcard-img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:contain;
  background:#fdfbff;
  padding:14px;
  border-radius:12px 12px 0 0;
  border-bottom:1px solid #f2e9ff;
  transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
}
.product-card:hover .pcard-img{
  transform:translateY(-1px);
  border-color:#f8d7a1;
  background:#fffaf2;
}

/* Title */
.product-card .product-name{
  font-weight:600;
  color:#2b1933;
  font-size:.9rem;
  line-height:1.2rem;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  min-height: calc(1.2rem * 2);
}
.product-card:hover .product-name{ color: var(--ps-primary); }

/* Meta line */
.product-card .small.text-muted{
  color:var(--ps-muted) !important;
  font-size:.78rem !important;
}

/* Price row */
.product-card .price{
  margin-top:.16rem;
  display:flex;
  align-items:baseline;
  gap:.32rem;
}
.product-card .price del{
  color:#a08fb0;
  font-size:.82rem;
}
.product-card .price .fw-bold{
  color:#2b1933;
  font-size:.98rem;
}
.product-card .price .text-danger{
  color:#b91c1c !important;
  font-size:.98rem;
}

/* Add to cart button */
.product-card .btn-add{
  height:40px;
  padding:0 .85rem !important;
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap:.45rem;
  width:100%;
  font-weight:600;
  font-size:.88rem;

  background: transparent;
  color: var(--ps-primary);
  border: 2px solid var(--ps-primary);
  border-radius:999px;
  transition: background-color .15s ease, color .15s ease,
              border-color .15s ease, transform .06s ease;
}
.product-card .btn-add i{ color: inherit; }
.product-card .btn-add:hover{
  background: rgba(123,44,191,.06);
  color: var(--ps-primary-600);
  border-color: var(--ps-primary-600);
}
.product-card .btn-add:active{
  transform: translateY(1px);
  background: rgba(123,44,191,.12);
}
.product-card .btn-add:focus{
  box-shadow:0 0 0 3px rgba(123,44,191,.18);
}

/* Wishlist button */
.product-card .btn-heart{
  width:40px;
  height:40px;
  padding:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;

  background: transparent;
  color: var(--ps-primary);
  border: 2px solid var(--ps-primary);
  transition: background-color .15s ease, color .15s ease,
              border-color .15s ease, transform .06s ease;
}
.product-card .btn-heart i{ color: inherit; }
.product-card .btn-heart:hover{
  background: rgba(123,44,191,.06);
  color: var(--ps-primary-600);
  border-color: var(--ps-primary-600);
}
.product-card .btn-heart:active{ transform: translateY(1px); }
.product-card .btn-heart:focus{
  box-shadow:0 0 0 3px rgba(123,44,191,.18);
}

/* Mobile tweaks for product cards */
@media (max-width: 575.98px){
  .product-card .pcard-img{ padding:10px; }
  .product-card .product-name{
    font-size:.86rem;
    line-height:1.16rem;
    min-height: calc(1.16rem * 2);
  }
  .product-card .small.text-muted{ font-size:.76rem !important; }
  .product-card .price .fw-bold,
  .product-card .price .text-danger{ font-size:.94rem; }
  .product-card .price del{ font-size:.8rem; }
  .product-card .btn-add{ height:38px; font-size:.86rem; }
}

/* ==============================
   Footer banner (edge-to-edge)
   ============================== */
.footer-banner{ margin:0; margin-top: clamp(24px,4vw,56px); }
.footer-banner-img{
  display:block;
  width:100vw;
  max-width:100%;
  height:auto;
  margin-left:50%;
  transform:translateX(-50%);
  border-radius:0;
}

/* ============================== 
   Footer – dark luxe (centered)
   ============================== */
.ps-footer--light{
  /* Dark theme tokens */
  --ft-bg:#050709;
  --ft-card:#050709;
  --ft-text:#f9fafb;
  --ft-muted:#9ca3af;
  --ft-head:#ffffff;
  --ft-accent:#f59e0b;      /* warm saffron / gold */
  --ft-border:#1f2937;

  margin-top: clamp(32px, 6vw, 96px);
  padding: 44px 0 22px;
  background: var(--ft-bg);
  color: var(--ft-text);
  border-top: 1px solid var(--ft-border);
}

.ps-footer--light .ps-foot-divider{
  border-top:1px solid var(--ft-border);
}

/* Grid */
.ps-footer-grid--4{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* desktop: allow left alignment so it looks neat */
@media (min-width: 992px){
  .ps-footer-grid--4{
    text-align:left;
  }
}

/* tablet */
@media (max-width: 991.98px){
  .ps-footer-grid--4{
    grid-template-columns: 1fr 1fr;
    gap:24px;
    text-align:center;
  }
}

/* mobile – single column, center all */
@media (max-width: 575.98px){
  .ps-footer-grid--4{
    grid-template-columns: 1fr;
    gap:18px;
    text-align:center;
  }
}

/* blocks */
.ps-foot-block{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

/* center blocks on mobile */
@media (max-width: 767.98px){
  .ps-foot-block{
    align-items:center;
  }
}

/* headings */
.ps-foot-heading{
  margin:0 0 14px;
  font-weight:600;
  font-size:20px;
  letter-spacing:.4px;
  color:var(--ft-head);
  text-transform:none;
  font-family:"Playfair Display", serif;
}

/* about block */
.ps-foot-about .ps-foot-brand img{ height:42px; }

.ps-foot-about .ps-foot-copy{
  margin:14px 0;
  color:var(--ft-muted);
  max-width: 40ch;
}

/* center copy on mobile */
@media (max-width: 767.98px){
  .ps-foot-about .ps-foot-copy{
    text-align:center;
  }
}

/* bullet list */
.ps-list-ticks{
  list-style:none;
  padding:0;
  margin:0;
}
.ps-list-ticks li{
  display:flex;
  align-items:center;
  gap:.55rem;
  padding:.38rem 0;
}
.ps-list-ticks li::before{
  content:"›";
  color:var(--ft-accent);
  font-weight:700;
}
.ps-foot-list a{
  color:var(--ft-text);
  text-decoration:none;
  font-size:0.95rem;
}
.ps-foot-list a:hover{
  color:var(--ft-accent);
}

/* center lists on mobile (but keep tick icon + text inline) */
@media (max-width: 767.98px){
  .ps-list-ticks li,
  .ps-list-numbered li{
    justify-content:center;
  }
}

/* numbered list */
.ps-list-numbered{
  list-style:none;
  padding:0;
  margin:0;
  counter-reset: acc;
}
.ps-list-numbered li{
  display:flex;
  align-items:center;
  gap:.55rem;
  padding:.38rem 0;
}
.ps-list-numbered .num{
  width:26px;
  height:26px;
  border-radius:50%;
  background: var(--ft-accent);
  color:#000;
  font-weight:700;
  font-size:.9rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* contact lines */
.ps-contact-lines{
  list-style:none;
  padding:0;
  margin:0;
}
.ps-contact-lines li{
  display:flex;
  gap:.6rem;
  align-items:flex-start;
  padding:.38rem 0;
}
.ps-contact-lines i{
  color:var(--ft-accent);
  font-size:18px;
  margin-top:.15rem;
}
.ps-contact-lines a{
  color:var(--ft-text);
  text-decoration:none;
}
.ps-contact-lines a:hover{ color:var(--ft-accent); }
.ps-contact-lines .sep{ opacity:.65; margin:0 .5rem; }

/* center contact items on mobile */
@media (max-width: 767.98px){
  .ps-contact-lines li{
    justify-content:center;
    text-align:left; /* icon + text still aligned nicely */
  }
}

/* social */
.ps-footer--light .ps-foot-social{
  margin-top:10px;
}

.ps-footer--light .ps-soc{
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#111827;
  border:1px solid #374151;
  color:#f9fafb;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.ps-footer--light .ps-soc + .ps-soc{
  margin-left:8px;
}
.ps-footer--light .ps-soc:hover{
  background:#f59e0b;
  border-color:#f59e0b;
  color:#111827;
  transform: translateY(-1px);
}

/* bottom line */
.ps-foot-bottom{
  margin-top:22px;
}
.ps-bottom-line{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:.4rem;
  font-size:.85rem;
  color:var(--ft-muted);
  text-align:center;
}
.ps-bottom-line a{
  color:var(--ft-text);
  text-decoration:none;
}
.ps-bottom-line a:hover{
  color:var(--ft-accent);
}
.ps-bottom-line .sep{
  opacity:.5;
}

/* ==============================
   Mobile bottom nav
   ============================== */
.mbottom-nav{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:1040;
  display:grid;
  grid-template-columns:repeat(5,1fr);

  /* UPDATED: white bar, subtle border + shadow on top */
  background:#ffffff;
  color:#111827;
  border-top:1px solid rgba(15,23,42,.06);
  padding:8px 6px calc(8px + env(safe-area-inset-bottom));
  box-shadow:0 -4px 14px rgba(15,23,42,.08);
}

.mbottom-nav .mbitem{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-decoration:none;

  /* UPDATED: default icon/text dark */
  color:#111827;

  gap:4px;
  min-height:48px;
  line-height:1;
  font-weight:600;
}

.mbottom-nav .mbitem i{
  font-size:22px;
}

.mbottom-nav .mbitem span{
  font-size:12px;
}

/* UPDATED: active item uses theme primary color */
.mbottom-nav .mbitem.active{
  color:var(--ps-primary, #7b2cbf);
}

.mbottom-nav .mbitem.active i,
.mbottom-nav .mbitem.active span{
  opacity:1;
  filter:none;
}

/* non-active slightly muted 
.mbottom-nav .mbitem:not(.active){
  opacity:0.9;
  color:#6b7280;
}
*/

.mbottom-nav .mbitem:active{
  transform:translateY(1px);
}

/* cart / badge */
.mbottom-nav .mbadge{
  position:absolute;
  top:2px;
  right:22%;
  transform:translate(50%,-40%);
  background:#dc3545;
  color:#fff;
  font-size:10px;
  padding:2px 6px;
  border-radius:999px;
  line-height:1;
}

/* body padding for bottom bar */
@media (max-width:991.98px){
  body{
    padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom));
  }
}

@media (min-width:992px){
  .mbottom-nav{ display:none; }
  body{ padding-bottom:0 !important; }
}

/* WhatsApp floating button (unchanged) */
.whatsapp-fab{
  position: fixed;
  right: 14px;
  bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom) + 14px);
  z-index: 1050;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #25D366;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  border: 0;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.whatsapp-fab i{ font-size: 26px; line-height: 1; }
.whatsapp-fab:hover{ transform: translateY(-1px); filter: brightness(0.98); }
.whatsapp-fab:active{ transform: translateY(0); }
@media (max-width: 360px){
  .whatsapp-fab{
    right: 10px;
    bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom) + 10px);
  }
}

/* ==============================
   Search suggestions (desktop + mobile)
   ============================== */
.ps-suggest,
.ps-suggest-fixed{
  z-index: 2000;
  background: #fff;
  border: 1px solid #e7e0f4;
  border-radius: 14px;
  box-shadow: var(--search-shadow);
  max-height: 70vh;
  overflow: auto;
  padding: 6px;
}
.ps-suggest{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  right:0;
}
.ps-suggest-fixed{
  position:fixed;
  left: 1rem;
  right: 1rem;
}
.ps-sg-header,
.ps-sg-footer{
  padding: .5rem .75rem;
  background: #fff;
  border-bottom: 1px solid #eee5ff;
}
.ps-sg-footer{
  border-top:1px solid #eee5ff;
  border-bottom:0;
}
.ps-sg-list{
  list-style:none;
  padding:0;
  margin:0;
  max-height:420px;
  overflow:auto;
}
.ps-sg-item{
  display:flex;
  align-items:center;
  gap:.75rem;
  padding:.6rem .75rem;
  border-radius:.7rem;
  color:#2b1933;
  text-decoration:none;
  cursor:pointer;
}
.ps-sg-item:hover,
.ps-sg-item[aria-selected="true"]{
  background:#f7f0ff;
}
.ps-sg-thumb{
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background:#fdfbff;
  border:1px solid #eee5ff;
  object-fit: contain;
}
.ps-sg-name{
  font-weight:600;
  color:#2b1933;
  line-height:1.2;
  display:block;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.ps-sg-price{
  margin-left:auto;
  font-weight:700;
  color: var(--ps-primary);
}
.ps-sg-match{
  color:var(--ps-primary);
  font-weight:700;
}
.ps-sg-empty{
  padding:.75rem;
  color:var(--ps-muted);
}

@media (max-width: 991.98px){
  .ps-suggest{
    max-height:50vh;
    max-height:50svh;
    max-height:50dvh;
    overflow:auto;
    overscroll-behavior:contain;
  }

  .m-band{ padding: .40rem 0 !important; }
  .site-logo{ height: 70px !important; }
  .m-search-wrap{
    margin-top: .45rem !important;
    margin-bottom: .45rem !important;
    padding: .10rem !important;
    border-radius: 9999px !important;
  }
  .m-search-wrap .form-control{
    height: 32px !important;
    line-height: 32px !important;
    padding: 0 .75rem !important;
    border: 0 !important;
    box-shadow: none !important;
    font-size: 14px !important;
  }
  .m-search-wrap .btn{
    height: 32px !important;
    padding: 0 .55rem !important;
    border: 0 !important;
    border-radius: 9999px !important;
  }
  .m-search-wrap .bi{ font-size: 18px !important; }
}

/* ==============================
   Brands strip
   ============================== */
.section-brands .title-chip.chip-purple{
  background:#f3e8ff;
  border:1px solid #e0ccff;
  color:#3c096c;
}
.brand-strip{
  --gap: 28px;
  --speed: 28s;
  position:relative;
  overflow:hidden;
  padding:10px 0;
  border-radius: 12px;
  background:#fff;
  border:1px solid #eee5ff;
}
.brand-track{
  display:flex;
  align-items:center;
  gap:var(--gap);
  width:max-content;
  animation: brand-marquee var(--speed) linear infinite;
  will-change:transform;
}
.brand-strip:hover .brand-track{ animation-play-state:paused; }
.brand{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:120px;
  height:64px;
  padding:8px 14px;
  border-radius:10px;
  background:#fdfbff;
  box-shadow:0 1px 3px rgba(0,0,0,.04);
  transition:transform .15s ease, box-shadow .15s ease;
}
.brand:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}
.brand img{
  max-height:50px;
  max-width:120px;
  width:auto;
  height:auto;
  object-fit:contain;
  filter:saturate(1.02) contrast(1.03);
}
@media (max-width: 575.98px){
  .brand{ min-width:100px; height:56px; padding:6px 10px; }
  .brand img{ max-height:34px; max-width:100px; }
  .brand-strip{ --gap:18px; --speed:22s; }
}
@keyframes brand-marquee{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ==============================
   Misc
   ============================== */
section.mb-5{ scroll-margin-top:84px; }
@media (min-width:992px){
  .row.g-4 > [class*="col-lg-3"] .product-card{ min-height:100%; }
}

/* PRODUCT PAGE image sizing (desktop) */
@media (min-width:992px){
  #pd-main{
    max-height:390px;
    width:100%;
    height:auto;
    object-fit:contain;
    display:block;
  }
}

/* ==============================
   Features strip
   ============================== */
.features-strip{
  border-top: 1px solid #eee5ff;
  border-bottom: 1px solid #eee5ff;
  padding: 28px 0;
}
.feature{
  display:flex;
  gap:18px;
  align-items:flex-start;
}
.feature .feat-ico{
  flex:0 0 auto;
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background: #f3e8ff;
  box-shadow: inset 0 0 0 1px #e1c9ff;
}
.feature .feat-ico i{
  font-size:24px;
  color:var(--ps-primary);
}
.feature .feat-title{
  margin:0 0 6px 0;
  font-weight:600;
  letter-spacing:.2px;
  color:#2b1933;
  font-family:"Playfair Display", serif;
}
.feature .feat-text{
  color:var(--ps-muted);
  line-height:1.55;
}
@media (max-width: 575.98px){
  .features-strip{ padding: 22px 0; }
  .feature .feat-ico{
    width:48px;
    height:48px;
    border-radius:14px;
  }
  .feature .feat-ico i{ font-size:22px; }
}

/* ==============================
   Category + New arrivals (sidebar)
   ============================== */
#latestWithCats .card-soft{
  background:#fff;
  border:1px solid #eee5ff;
  border-radius:12px;
  padding:0;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
}
#latestWithCats .cat-panel-head{
  padding:14px 18px;
  font-weight:600;
  letter-spacing:.4px;
  color:#2b1933;
  border-bottom:1px solid #eee5ff;
  background:#faf5ff;
  border-radius:12px 12px 0 0;
  font-family:"Playfair Display", serif;
}
#latestWithCats .cat-list li + li{
  border-top:1px solid #f1ecff;
}
#latestWithCats .cat-row{
  display:flex;
  align-items:center;
  gap:12px;
  padding:.75rem .85rem;
  border-radius:.5rem;
  color:#2b1933;
  text-decoration:none;
  transition:background .15s ease;
}
#latestWithCats .cat-row:hover{ background:#f7f0ff; }
#latestWithCats .cat-thumb{
  width:38px;
  height:38px;
  flex:0 0 38px;
  border-radius:10px;
  overflow:hidden;
  background:#f7f3ff;
  border:1px solid #eee5ff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
#latestWithCats .cat-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
#latestWithCats .cat-title{
  font-weight:600;
  letter-spacing:.2px;
  flex:1 1 auto;
}
#latestWithCats .cat-chevron{
  color:#a08fb0;
  font-size:1rem;
}
#latestWithCats .cat-row:hover .cat-chevron{ color:#6c5a7a; }

@media (max-width: 991.98px){
  #latestWithCats .cat-panel{ margin-bottom:12px; }
}



/* ==============================
   Purchase progress strip
   ============================== */
.steps-card{
  border:1px solid #eee5ff;
  border-radius:12px;
  background:#fff;
}
.steps-head{
  padding:.9rem 1rem;
  font-weight:600;
  letter-spacing:.3px;
  border-bottom:1px solid #eee5ff;
  background:#faf5ff;
  font-family:"Playfair Display", serif;
}
.progress-steps{
  display:grid;
  grid-template-columns: repeat(5,1fr);
  gap:0;
  padding:1.1rem 0;
}
.progress-steps .step{
  text-align:center;
  position:relative;
  padding:.25rem .5rem;
}
.progress-steps .step:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;
  top:15%;
  bottom:15%;
  width:1px;
  background:repeating-linear-gradient(
    to bottom,#eee5ff 0,#eee5ff 6px,transparent 6px,transparent 12px
  );
}
.step-title{
  font-weight:600;
  font-size:1.1rem;
  color:#2b1933;
  margin-bottom:.35rem;
  font-family:"Playfair Display", serif;
}
.step-ico{
  font-size:40px;
  color:#c0b2d9;
  margin-bottom:.25rem;
}
.step-sub{
  color:var(--ps-muted);
  font-weight:500;
}
.progress-steps .step:hover .step-ico{ color:var(--ps-primary); }
.progress-steps .step:hover .step-title{ color:var(--ps-primary-600); }
@media (max-width: 991.98px){
  .progress-steps{ grid-template-columns:repeat(3,1fr); row-gap:.75rem; }
}
@media (max-width: 575.98px){
  .progress-steps{ grid-template-columns:repeat(2,1fr); }
}

/* ==============================
   Features list (left column)
   ============================== */
.feat-card{
  border:1px solid #eee5ff;
  border-radius:12px;
  background:#fff;
}
.feat-row{
  display:flex;
  gap:14px;
  align-items:center;
  padding:16px 16px;
  border-bottom:1px solid #eee5ff;
}
.feat-row:last-child{ border-bottom:0; }
.feat-ico{
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:#f3e8ff;
  color:var(--ps-primary);
  font-size:22px;
  box-shadow: inset 0 0 0 1px #e1c9ff;
}
.feat-title{
  margin:0;
  font-weight:600;
  color:#2b1933;
  font-family:"Playfair Display", serif;
}
.feat-sub{
  color:var(--ps-muted);
}

/* ==============================
   Deals list
   ============================== */
.deals-head{
  font-weight:600;
  letter-spacing:.3px;
  padding:12px 12px 0;
  color:#2b1933;
  font-family:"Playfair Display", serif;
}
.deal-list .deal-row{
  display:flex;
  gap:10px;
  padding:12px;
  border-top:1px solid #f0ecff;
}
.deal-list .deal-row:first-child{ border-top:0; }
.deal-thumb img{
  width:64px;
  height:64px;
  object-fit:contain;
  background:#f7f3ff;
  border-radius:8px;
}
.deal-meta{
  flex:1;
  min-width:0;
}
.deal-title{
  display:block;
  font-weight:500;
  color:#2b1933;
  line-height:1.2;
  margin-bottom:4px;
  text-decoration:none;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.deal-title:hover{ color:var(--ps-primary); }
.deal-price .now{
  color:#15803d;
  font-weight:600;
  margin-right:6px;
}
.deal-price .was{
  color:#a08fb0;
  font-size:.9rem;
}
.badge-save{
  background:var(--ps-secondary);
  color:#3b2600;
  font-weight:600;
  font-size:.75rem;
  border-radius:.35rem;
  padding:.1rem .4rem;
  margin-left:6px;
}

/* ==============================
   Auth hero (login/register)
   ============================== */
.auth-hero{
  background: linear-gradient(135deg, #7b2cbf 0%, #f3a61b 90%);
  color:#fff;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(60,9,108,.35);
}


/* ============= Trending Now layout ============= */
.section-trending {
  background: #fff;
}

.section-trending .trend-grid {
  max-width: 1200px;
  margin: 0 auto;
}

/* Make each card stretch the full column height so bottoms align nicely */
.section-trending .trend-grid > [class*="col-"] {
  display: flex;
}

.section-trending .trend-grid .or-card {
  width: 100%;
}

/* Centered View all button style, matching theme */
.btn-view-all-trend {
  padding-inline: 2.5rem;
  border-radius: 999px;
  font-weight: 600;
}

/* On very small screens, give a bit more breathing room */
@media (max-width: 575.98px) {
  .section-trending {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

/* Main content spacing under sticky header */
.site-main{
  padding-top: 110px;
  background: #ffffff;
}

@media (max-width: 991.98px){
  .site-main{
    padding-top: 64px;   /* try 60–68px until the gap disappears */
  }
}


/* === HERO SPACING FIX === */


/* mobile: hero should touch header, very small bottom gap */
@media (max-width: 991.98px){
  .site-main{
    padding-top: 64px;      /* match real mobile header height */
  }

  #heroArea{
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0.35rem; /* reduce white space under banner */
  }
}


/* ==============================
   Header search dropdown
   ============================== */
.header-search-shell{
  position: fixed;
  z-index: 1050;
  background: #ffffff;
  border: 1px solid rgba(148,163,184,.28);
  box-shadow: 0 18px 40px rgba(15,23,42,.16);
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .18s ease;
}

/* Open state */
.header-search-shell.is-open{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.header-search-inner{
  padding: 10px 12px;
}

/* Desktop: small panel on left side under header */
@media (min-width: 992px){
  .header-search-shell{
    /* align with container left gutter */
    top: 86px; /* slightly under your desktop header row */
    left: max(16px, calc((100vw - 1320px) / 2 + 8px));
    right: auto;
    width: min(460px, calc(100vw - 40px));
    border-radius: 14px;
  }

  .header-search-form{
    max-width: none;
    margin: 0;
  }
}

/* Mobile: full width under header */
@media (max-width: 991.98px){
  .header-search-shell{
    top: 64px;   /* mobile header height */
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0 0 14px 14px;
  }

  .header-search-inner{
    padding: 8px 12px 10px;
  }

  .header-search-form{
    max-width: 100%;
    margin: 0 auto;
  }
}

/* Input group styling (pill look) */
.header-search-form .input-group-text{
  background: #ffffff;
  border-radius: 999px 0 0 999px;
  border: 1px solid var(--header-soft-border, #f5e3c6);
  border-right: 0;
}

.header-search-form .form-control{
  border-radius: 0 999px 999px 0;
  border: 1px solid var(--header-soft-border, #f5e3c6);
  border-left: 0;
  box-shadow: none;
}

.header-search-form .form-control:focus{
  border-color: var(--ps-primary, #c28b00);
  box-shadow: 0 0 0 .15rem rgba(194,139,0,.18);
}

.header-search-form .btn{
  border-radius: 999px;
}

.header-icon-link{
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ps-text);
  font-size: 20px;
}
.header-icon-link i{ pointer-events:none; }
.header-icon-link:hover{ opacity:.8; }


/*=========== Reviews ==========*/
.pd-reviews-list{
  max-height: 320px;
  overflow-y: auto;
}
.pd-reviews-list{
  font-family:"Cormorant Garamond",serif;
  font-size: 1.5rem; /* match .descripion */
}


.pd-review-item{
  font-size: .9rem;
}

.pd-review-item .bi-star-fill,
.pd-review-item .bi-star{
  margin-right: 2px;
}

