/* ============================================================
   RUPANJALI — Elegant Jewellery
   Design system extracted from the client's UI/UX mockups
   ============================================================ */

:root {
  --pink:       #D24862;
  --pink-dark:  #B93A52;
  --pink-deep:  #9E2840;
  --pink-soft:  #FBE3E8;
  --blush:      #F8E9E7;
  --peach:      #F2E3DA;
  --cream:      #FAF3F1;
  --footer-bg:  #F9ECEA;
  --ink:        #1B1B1B;
  --gray:       #7B7B7B;
  --gray-2:     #A5A0A0;
  --line:       #EFE3E0;
  --gold:       #C69A4E;
  --gold-light: #EEB74C;
  --green:      #2E9E5B;
  --orange:     #E8912D;
  --red:        #C0392B;
  --white:      #FFFFFF;
  --serif:  'Jost', 'Segoe UI', sans-serif;
  --sans:   'Jost', 'Segoe UI', sans-serif;
  --script: 'Great Vibes', cursive;
  --shadow:    0 10px 34px rgba(158, 40, 64, .08);
  --shadow-sm: 0 3px 14px rgba(158, 40, 64, .07);
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 14px; }
.ic { vertical-align: -3px; }

.container { width: min(1200px, 92%); margin: 0 auto; }

h1, h2, h3, h4, h5, h6, .serif, .sans { font-family: var(--sans); font-weight: 600; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 1.4px; text-transform: uppercase;
  transition: all .22s ease; border: 1.5px solid transparent;
}
.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(210, 72, 98, .35); }
.btn-outline { border-color: var(--pink); color: var(--pink); background: transparent; }
.btn-outline:hover { background: var(--pink); color: #fff; }
.btn-white { background: #fff; color: var(--pink-deep); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.18); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 22px; font-size: 12px; }
.btn-xs { padding: 8px 16px; font-size: 11px; letter-spacing: 1px; }
.btn-lg { padding: 16px 34px; font-size: 14px; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ---------------- Topbar ---------------- */
.topbar { background: var(--pink); color: #fff; font-size: 12.5px; letter-spacing: .4px; }
.topbar a { color: #fff; }
.topbar-inner { display: flex; align-items: center; min-height: 38px; gap: 18px; }
.topbar-home { justify-content: space-between; }
.topbar-msg { display: flex; align-items: center; gap: 7px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; font-size: 11.5px; }
.topbar-links { display: flex; gap: 22px; align-items: center; }
.topbar-links a:hover { opacity: .85; }
.topbar-cur { display: inline-flex; align-items: center; gap: 4px; opacity: .95; }
.topbar-triple { justify-content: space-between; text-transform: uppercase; font-size: 11px; letter-spacing: 1px; font-weight: 500; }
.topbar-triple span { display: inline-flex; align-items: center; gap: 7px; }

/* ---------------- Brand logo ---------------- */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-icon { color: var(--gold); display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--script); font-size: 38px; color: var(--gold); transform: translateY(-2px); }
.brand-sub { font-size: 8.5px; letter-spacing: 4.2px; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

/* ---------------- Header: home compact ---------------- */
.header { background: #fff; position: relative; z-index: 60; }
.header-home-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 14px 0; }

.nav-inline { display: flex; gap: 26px; align-items: center; }
.nav-link {
  font-size: 12.5px; font-weight: 500; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--ink); padding: 6px 0; position: relative; display: inline-flex; align-items: center; gap: 3px;
  transition: color .2s;
}
.nav-link:hover, .nav-link.active { color: var(--pink); }
.nav-link.active::after {
  content: ''; position: absolute; left: 0; right: 14px; bottom: -2px;
  height: 2px; background: var(--pink); border-radius: 2px;
}
.nav-link:not(:has(.ic)).active::after { right: 0; }

.header-icons { display: flex; align-items: center; gap: 18px; }
.hicon { position: relative; color: var(--ink); display: inline-flex; flex-direction: column; align-items: center; gap: 3px; transition: color .2s; }
.hicon:hover, .hicon.active { color: var(--pink); }
.hicon-label { font-size: 11px; color: var(--gray); }
.hicon:hover .hicon-label, .hicon.active .hicon-label { color: var(--pink); }
.badge-dot {
  position: absolute; top: -7px; right: -9px;
  background: var(--pink); color: #fff; font-size: 10px; font-weight: 600;
  min-width: 17px; height: 17px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 4px;
}

/* ---------------- Header: inner (search bar + nav row) ---------------- */
.header-mid { display: flex; align-items: center; gap: 34px; padding: 16px 0; }
.header-search {
  flex: 1; max-width: 470px; display: flex; align-items: center; position: relative;
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden;
  transition: border-color .2s;
}
.header-search:focus-within { border-color: var(--pink); }
.header-search input { flex: 1; border: none; outline: none; padding: 12px 16px; font-size: 14px; color: var(--ink); background: transparent; }
.header-search input::placeholder { color: var(--gray-2); }
.header-search button {
  background: var(--pink); color: #fff; width: 52px; align-self: stretch;
  display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; margin: 3px;
  transition: background .2s;
}
.header-search button:hover { background: var(--pink-dark); }
.search-clear { color: var(--gray-2); display: inline-flex; padding: 0 4px; }
.header-inner .header-icons { gap: 24px; }
.nav-row { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.nav-row-inner { display: flex; justify-content: center; gap: 38px; }
.nav-row .nav-link { padding: 14px 0; }
.nav-row .nav-link.active::after { bottom: 10px; }

.nav-burger { display: none; }
.mobile-nav {
  display: none; flex-direction: column; background: #fff; border-bottom: 1px solid var(--line);
  padding: 10px 5%;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: 11px 0; border-bottom: 1px dashed var(--line); }

/* ---------------- Hero (homepage) ---------------- */
.hero { background: var(--blush); overflow: hidden; position: relative; }
.hero-slide { display: none; }
.hero-slide.active { display: block; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; align-items: center;
  gap: 30px; min-height: 470px; padding: 30px 0;
}
.hero-eyebrow { color: var(--pink); font-size: 13px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 14px; }
.hero-title { font-size: clamp(42px, 5.6vw, 68px); line-height: 1.04; font-weight: 500; margin-bottom: 20px; }
.hero-sub { color: var(--gray); max-width: 340px; margin-bottom: 28px; font-size: 15px; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-video { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 500; color: var(--ink); }
.hero-video .ic { color: var(--pink); }
.hero-media { position: relative; }
.hero-media img { border-radius: 14px; width: 100%; aspect-ratio: 16/10.6; object-fit: cover; }
.hero-dots { display: flex; gap: 8px; justify-content: center; padding-bottom: 26px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: #E5C8C4; transition: all .25s; }
.hero-dot.active { background: var(--pink); width: 22px; border-radius: 5px; }

/* ---------------- Features strip ---------------- */
.features-strip.is-card { margin-top: -34px; position: relative; z-index: 5; }
.features-strip.is-card .features-grid {
  background: #fff; border-radius: 14px; box-shadow: var(--shadow);
  padding: 26px 30px;
}
.features-strip.is-band { background: var(--cream); padding: 26px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-item { display: flex; gap: 14px; align-items: center; justify-content: center; }
.feature-item + .feature-item { border-left: 1px solid var(--line); }
.feature-ic { color: var(--pink); background: var(--pink-soft); width: 46px; height: 46px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.feature-title { font-size: 13px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; }
.feature-sub { font-size: 12.5px; color: var(--gray); }

/* ---------------- Category circles ---------------- */
.cat-circles { display: flex; justify-content: space-between; gap: 14px; padding: 44px 0 10px; flex-wrap: wrap; }
.cat-circle { text-align: center; width: 104px; }
.cat-circle-img {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 10px; overflow: hidden;
  background: var(--blush); border: 2px solid transparent; transition: all .22s;
  display: flex; align-items: center; justify-content: center; color: var(--pink);
}
.cat-circle-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-circle:hover .cat-circle-img { border-color: var(--pink); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.cat-circle-name { font-size: 12.5px; font-weight: 500; }

/* subcategory outline chips (category page) */
.subcat-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; padding: 34px 0 6px; }
.subcat { text-align: center; width: 96px; }
.subcat-ic {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 9px;
  border: 1.5px solid var(--line); color: var(--pink);
  display: flex; align-items: center; justify-content: center; transition: all .2s; background: #fff;
}
.subcat:hover .subcat-ic, .subcat.active .subcat-ic { border-color: var(--pink); box-shadow: 0 0 0 4px var(--pink-soft); }
.subcat-name { font-size: 12px; font-weight: 500; }

/* ---------------- Sections ---------------- */
.section { padding: 46px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 26px; gap: 16px; }
.eyebrow { color: var(--pink); font-size: 11.5px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 6px; }
.section-title { font-size: clamp(24px, 3vw, 32px); font-weight: 500; }
.view-all { font-size: 12px; font-weight: 500; letter-spacing: 1.6px; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.view-all:hover { color: var(--pink); }

/* ---------------- Product cards ---------------- */
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* Web Desktop Larger Product Grid Sizing */
@media (min-width: 992px) {
  .grid-5 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .grid-6 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 26px; }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .catalog-3 .catalog-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .p-body { padding: 15px 16px 18px; }
  .p-name { font-size: 16.5px; }
  .price-now { font-size: 18.5px; }
}

.p-card { position: relative; }
.p-media {
  position: relative; border-radius: 10px; overflow: hidden; background: var(--blush);
  aspect-ratio: 1/1.15; margin-bottom: 12px;
}
.p-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.p-card:hover .p-media img { transform: scale(1.06); }
.badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 5px 11px; border-radius: 20px; color: #fff; background: var(--pink);
}
.badge-best { background: var(--pink-deep); }
.badge-sale { background: var(--pink); }
.heart-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; background: #fff; color: var(--pink);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.08); transition: all .2s;
}
.heart-btn:hover { transform: scale(1.1); }
.heart-btn.active { background: var(--pink); color: #fff; }
.heart-btn.active svg { fill: #fff; }
.cartmini-btn {
  position: absolute; right: 10px; bottom: 10px; z-index: 2;
  width: 36px; height: 36px; border-radius: 9px; background: #fff; color: var(--pink);
  border: 1.5px solid var(--pink-soft);
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(6px); transition: all .22s;
}
.p-card:hover .cartmini-btn { opacity: 1; transform: none; }
.cartmini-btn:hover { background: var(--pink); color: #fff; border-color: var(--pink); }
.p-cat { font-size: 12px; color: var(--gray); display: block; margin-bottom: 3px; }
.p-name {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-name a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.p-name a:hover { color: var(--pink); }
.p-price { display: flex; align-items: center; gap: 9px; }
.price-now { color: var(--pink); font-weight: 600; font-size: 18px; }
.price-was { color: var(--gray-2); text-decoration: line-through; font-size: 14.5px; }
.p-rating { display: flex; align-items: center; gap: 6px; margin-top: 5px; }
.stars { display: inline-flex; gap: 1.5px; }
.star { fill: #E4DCD9; stroke: none; }
.star.filled { fill: var(--gold-light); }
.rating-count { font-size: 13px; color: var(--gray); }
.p-card .btn-block { margin-top: 10px; }

/* list view */
.catalog-grid.list-view { grid-template-columns: 1fr; gap: 16px; }
.catalog-grid.list-view .p-card { display: grid; grid-template-columns: 190px 1fr; gap: 20px; align-items: center; border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.catalog-grid.list-view .p-media { margin: 0; aspect-ratio: 1/1; }

/* ---------------- Promo banners (homepage) ---------------- */
.promos { display: grid; grid-template-columns: 1fr 1.15fr; gap: 22px; }
.promo {
  border-radius: 14px; overflow: hidden; position: relative; min-height: 240px;
  display: flex; flex-direction: column; justify-content: center; padding: 38px;
}
.promo-pink { background: linear-gradient(115deg, var(--pink-deep) 0%, var(--pink) 90%); color: #fff; }
.promo-pink .promo-img { position: absolute; right: 0; top: 0; bottom: 0; width: 52%; object-fit: cover; opacity: .92; mask-image: linear-gradient(to right, transparent, #000 38%); -webkit-mask-image: linear-gradient(to right, transparent, #000 38%); }
.promo-blush { background: var(--peach); }
.promo-blush .promo-img { position: absolute; right: 0; top: 0; bottom: 0; width: 55%; height: 100%; object-fit: cover; mask-image: linear-gradient(to right, transparent, #000 42%); -webkit-mask-image: linear-gradient(to right, transparent, #000 42%); }
.promo > * { position: relative; z-index: 2; }
.promo-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; opacity: .92; }
.promo-blush .promo-eyebrow { color: var(--pink); }
.promo-title { font-family: var(--serif); font-size: 40px; font-weight: 500; line-height: 1.05; margin-bottom: 8px; }
.promo-sub { font-size: 14px; margin-bottom: 20px; opacity: .9; max-width: 250px; }
.promo .btn { align-self: flex-start; }

/* ---------------- Instagram strip ---------------- */
.ig-strip { background: var(--cream); padding: 34px 0; }
.ig-inner { display: flex; align-items: center; gap: 34px; }
.ig-left { flex: none; width: 210px; }
.ig-handle { font-size: 19px; font-weight: 600; margin-bottom: 14px; }
.ig-photos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; flex: 1; }
.ig-photo { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 1; }
.ig-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ig-photo:hover img { transform: scale(1.08); }
.ig-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; background: rgba(0,0,0,.18); }

/* ---------------- Newsletter band ---------------- */
.newsletter-band { background: var(--pink-soft); padding: 36px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.newsletter-left { display: flex; align-items: center; gap: 18px; }
.newsletter-ic { width: 58px; height: 58px; background: #fff; color: var(--pink); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.newsletter-title { font-size: 24px; font-weight: 500; color: var(--pink-deep); }
.newsletter-sub { color: var(--gray); font-size: 13.5px; max-width: 380px; }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 480px; }
.newsletter-form input {
  flex: 1; border: 1px solid #fff; background: #fff; border-radius: 8px; padding: 13px 18px; outline: none;
}
.newsletter-form input:focus { border-color: var(--pink); }

/* ---------------- Footer ---------------- */
.footer { background: var(--footer-bg); padding-top: 52px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1fr 1.3fr; gap: 30px; padding-bottom: 40px; }
.footer-brand .brand { margin-bottom: 12px; }
.footer-tagline { color: var(--gray); font-size: 13.5px; margin-bottom: 16px; max-width: 220px; }
.socials { display: flex; gap: 9px; }
.socials a {
  width: 34px; height: 34px; border-radius: 50%; background: #fff; color: var(--pink);
  display: inline-flex; align-items: center; justify-content: center; transition: all .2s;
}
.socials a:hover { background: var(--pink); color: #fff; transform: translateY(-2px); }
.footer-head { font-size: 13px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col a, .footer-col span { color: var(--gray); font-size: 13.5px; transition: color .2s; display: inline-flex; align-items: center; gap: 8px; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom { border-top: 1px solid #EFD9D5; padding: 16px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--gray); }
.pay-icons { display: flex; gap: 8px; align-items: center; }
.pay {
  background: #fff; border: 1px solid var(--line); border-radius: 5px;
  font-size: 10px; font-weight: 700; padding: 4px 9px; letter-spacing: .4px;
  display: inline-flex; align-items: center; gap: 3px;
}
.pay-visa { color: #1A1F71; font-style: italic; }
.pay-mc i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.pay-mc i:first-child { background: #EB001B; margin-right: -5px; }
.pay-mc i:last-child { background: #F79E1B; opacity: .9; }
.pay-bkash { color: #D12053; }
.pay-nagad { color: #F0592A; }
.pay-ssl { color: var(--green); }

/* ---------------- Toasts ---------------- */
.toast-stack { position: fixed; top: 20px; right: 20px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: #fff; border-left: 4px solid var(--green); box-shadow: 0 8px 30px rgba(0,0,0,.14);
  padding: 13px 20px; border-radius: 9px; font-size: 14px; min-width: 250px; max-width: 340px;
  animation: toastIn .3s ease;
}
.toast-error, .toast-danger { border-left-color: var(--red); }
.toast-warning { border-left-color: var(--orange); }
.toast-success { border-left-color: var(--green); }
@keyframes toastIn { from { opacity: 0; transform: translateX(24px); } }

/* ---------------- Page hero (inner pages) ---------------- */
.page-hero { background: var(--blush); position: relative; overflow: hidden; padding: 44px 0 48px; }
.page-hero-img {
  position: absolute; right: 0; top: 0; bottom: 0; width: 52%;
  background-size: cover; background-position: center;
  mask-image: linear-gradient(to right, transparent, #000 45%);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 45%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--gray); margin-bottom: 14px; }
.breadcrumb a { display: inline-flex; align-items: center; gap: 5px; }
.breadcrumb a:hover { color: var(--pink); }
.bc-sep { color: var(--gray-2); }
.page-title { font-size: clamp(30px, 4vw, 44px); font-weight: 500; margin-bottom: 8px; }
.page-sub { color: var(--gray); max-width: 340px; }

/* ---------------- Catalog layout ---------------- */
.catalog { display: grid; grid-template-columns: 250px 1fr; gap: 30px; align-items: start; padding: 40px 0 30px; }
.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.catalog-3 .catalog-grid { grid-template-columns: repeat(3, 1fr); }

/* filters */
.filters { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px; position: sticky; top: 16px; }
.filters-head { font-size: 14px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.f-block { padding: 15px 0; border-bottom: 1px solid var(--line); }
.f-block:last-of-type { border-bottom: none; }
.f-title { font-size: 12px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 11px; }
.f-check { display: flex; justify-content: space-between; align-items: center; padding: 4.5px 0; font-size: 13.5px; color: #444; cursor: pointer; }
.f-check em { font-style: normal; color: var(--gray-2); font-size: 12px; }
.f-check input { accent-color: var(--pink); margin-right: 7px; }
.f-check span { display: inline-flex; align-items: center; }
.f-clear { margin-top: 14px; }

/* dual range slider */
.range-wrap { position: relative; height: 26px; margin: 4px 2px 8px; }
.range-track { position: absolute; top: 11px; left: 0; right: 0; height: 4px; border-radius: 4px; background: #F0DCD8; }
.range-fill { position: absolute; height: 100%; background: var(--pink); border-radius: 4px; }
.range-wrap input[type=range] {
  position: absolute; inset: 0; width: 100%; appearance: none; -webkit-appearance: none;
  background: none; pointer-events: none; height: 26px; margin: 0;
}
.range-wrap input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; pointer-events: auto;
  width: 15px; height: 15px; border-radius: 50%; background: var(--pink);
  border: 2.5px solid #fff; box-shadow: 0 1px 5px rgba(0,0,0,.22); cursor: grab; margin-top: 0;
}
.range-wrap input[type=range]::-moz-range-thumb {
  pointer-events: auto; width: 13px; height: 13px; border-radius: 50%;
  background: var(--pink); border: 2.5px solid #fff; box-shadow: 0 1px 5px rgba(0,0,0,.22); cursor: grab;
}
.range-inputs { display: flex; align-items: center; gap: 7px; }
.range-inputs input { width: 64px; border: 1px solid var(--line); border-radius: 7px; padding: 7px 8px; font-size: 12.5px; }
.range-inputs span { color: var(--gray-2); }

.filter-promo {
  margin-top: 18px; background: var(--pink-soft); border-radius: 12px; padding: 22px; text-align: left;
}
.fp-eyebrow { color: var(--pink); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.fp-title { font-family: var(--serif); font-size: 32px; color: var(--pink-deep); margin: 4px 0 2px; }
.fp-sub { color: var(--gray); font-size: 13px; margin-bottom: 14px; }

/* toolbar */
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; gap: 14px; flex-wrap: wrap; }
.showing { color: var(--gray); font-size: 13.5px; }
.toolbar-right { display: flex; align-items: center; gap: 12px; }
.sort-label { font-size: 13px; color: var(--gray); }
.sort-select { border: 1px solid var(--line); border-radius: 8px; padding: 9px 12px; font-size: 13px; background: #fff; outline: none; cursor: pointer; }
.view-toggle { display: flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.vt-btn { padding: 8px 11px; color: var(--gray); background: #fff; display: inline-flex; }
.vt-btn.active { background: var(--pink); color: #fff; }

/* pagination */
.pagination { display: flex; gap: 8px; justify-content: center; padding: 34px 0 10px; }
.page-btn {
  min-width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13.5px; color: var(--ink); background: #fff; transition: all .2s; padding: 0 6px;
}
a.page-btn:hover { border-color: var(--pink); color: var(--pink); }
.page-btn.active { background: var(--pink); color: #fff; border-color: var(--pink); }
.page-btn.disabled { opacity: .45; }
.page-dots { align-self: center; color: var(--gray-2); }

/* ---------------- Product page ---------------- */
.product-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 32px; padding: 24px 0 16px; align-items: start; }
.gallery { position: relative; padding-left: 92px; width: 100%; box-sizing: border-box; }
.gallery-thumbs {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  padding-right: 2px;
  box-sizing: border-box;
}
.gallery-thumbs::-webkit-scrollbar { width: 4px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--pink-soft); border-radius: 4px; }
.g-thumb {
  border: 1.5px solid var(--line); border-radius: 9px; overflow: hidden; cursor: pointer;
  width: 80px; height: 72px; flex: 0 0 72px; background: var(--blush); transition: border-color .2s, transform .15s; padding: 0; box-sizing: border-box;
}
.g-thumb:hover { border-color: var(--pink); transform: scale(1.02); }
.g-thumb img { width: 100%; height: 100%; object-fit: cover; }
.g-thumb.active { border-color: var(--pink); box-shadow: 0 0 0 2px var(--pink); }
.gallery-main { position: relative; border-radius: 14px; overflow: hidden; background: var(--blush); width: 100%; aspect-ratio: 1 / 1; cursor: zoom-in; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .15s ease-out; transform-origin: center center; pointer-events: none; }
.gallery-main.is-zoomed img { transform: scale(2.2); }
.gallery-main .badge { top: 14px; left: 14px; }
.zoom-hint { position: absolute; bottom: 14px; right: 14px; width: 38px; height: 38px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ink); box-shadow: var(--shadow-sm); pointer-events: none; }

@media (max-width: 768px) {
  .product-layout { grid-template-columns: 1fr; gap: 20px; padding: 12px 0 16px; }
  .gallery { padding-left: 0; display: flex; flex-direction: column; gap: 10px; }
  .gallery-thumbs {
    position: relative; top: auto; bottom: auto; left: auto;
    width: 100%; height: auto; flex-direction: row;
    overflow-x: auto; overflow-y: hidden; gap: 8px; padding: 4px 0;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-thumbs::-webkit-scrollbar { height: 3px; }
  .g-thumb { width: 64px; height: 64px; flex: 0 0 64px; border-radius: 8px; }
}

.pd-title { font-size: clamp(20px, 2.2vw, 26px); font-weight: 500; margin-bottom: 10px; line-height: 1.25; }
.pd-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.pd-meta .rating-count { font-size: 13px; }
.pd-meta-sep { color: var(--line); }
.stock-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--green); font-weight: 500; }
.stock-pill::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.stock-pill.out { color: var(--red); }
.stock-pill.out::before { background: var(--red); }
.stock-pill.low { color: var(--orange); }
.stock-pill.low::before { background: var(--orange); }

.pd-price-row { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; flex-wrap: wrap; }
.pd-price { font-size: 34px; color: var(--pink); font-weight: 600; font-family: var(--sans); }
.pd-was { font-size: 19px; color: var(--gray-2); text-decoration: line-through; }
.save-pill { background: var(--pink-soft); color: var(--pink-deep); font-size: 12.5px; font-weight: 500; padding: 6px 13px; border-radius: 18px; }
.pd-short { color: var(--gray); margin-bottom: 22px; max-width: 480px; }

.pd-label { font-size: 12px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 9px; }
.color-swatches { display: flex; gap: 10px; margin-bottom: 20px; }
.swatch {
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer; border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px var(--line); transition: box-shadow .2s;
}
.swatch.active { box-shadow: 0 0 0 2px var(--pink); }
.swatch[data-color="Gold"] { background: linear-gradient(135deg, #F0C86C, #D9A83E); }
.swatch[data-color="Silver"] { background: linear-gradient(135deg, #F2F2F2, #C9CDD3); }
.swatch[data-color="Rose Gold"] { background: linear-gradient(135deg, #F6CFC0, #E5A28C); }
.swatch[data-color="White Gold"] { background: linear-gradient(135deg, #FAFAF6, #DDDDD0); }

.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 9px; overflow: hidden; }
.qty-btn { width: 42px; height: 44px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); background: #fff; transition: background .15s; }
.qty-btn:hover { background: var(--cream); }
.qty-input { width: 52px; text-align: center; border: none; outline: none; font-size: 15px; font-weight: 500; height: 44px; }
.pd-qty { margin-bottom: 22px; }

.pd-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; max-width: 480px; }
.pd-links { display: flex; gap: 28px; padding-top: 4px; }
.pd-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink); transition: color .2s; }
.pd-link:hover, .pd-link.active { color: var(--pink); }
.pd-link.active svg { fill: var(--pink); }

/* tabs */
.tabs-wrap { padding: 30px 0 10px; }
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 26px; flex-wrap: wrap; }
.tab-btn {
  padding: 13px 20px; font-size: 12.5px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gray); position: relative; transition: color .2s; background: none;
}
.tab-btn.active { color: var(--ink); }
.tab-btn.active::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: -1px; height: 2.5px; background: var(--pink); border-radius: 3px; }
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } }

.desc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.desc-text p { color: #444; margin-bottom: 18px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.check-list li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: #333; }
.check-list .ic { color: var(--gold-light); flex: none; }
.desc-promo { position: relative; border-radius: 14px; overflow: hidden; min-height: 300px; display: flex; flex-direction: column; justify-content: center; padding: 40px; background: var(--peach); }
.desc-promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .94; }
.desc-promo-content { position: relative; z-index: 2; max-width: 55%; }
.desc-promo h3 { font-size: 32px; font-weight: 500; line-height: 1.15; margin-bottom: 10px; }
.desc-promo p { color: #555; }

.spec-table { width: 100%; border-collapse: collapse; max-width: 620px; }
.spec-table td { padding: 11px 14px; border: 1px solid var(--line); font-size: 14px; }
.spec-table td:first-child { background: var(--cream); font-weight: 500; width: 190px; }

/* reviews */
.reviews-summary { display: flex; align-items: center; gap: 26px; margin-bottom: 26px; flex-wrap: wrap; }
.rv-big { font-size: 46px; font-family: var(--serif); color: var(--ink); line-height: 1; }
.review-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.review-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.review-name { font-weight: 600; font-size: 14.5px; }
.review-date { color: var(--gray-2); font-size: 12.5px; }
.review-text { color: #444; font-size: 14px; }
.review-photos { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.rv-photo-btn {
  width: 64px; height: 64px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line);
  padding: 0; background: var(--blush); cursor: pointer; transition: transform .15s, border-color .15s; flex: none;
}
.rv-photo-btn img { width: 100%; height: 100%; object-fit: cover; }
.rv-photo-btn:hover { transform: scale(1.06); border-color: var(--pink); }

/* Fullscreen Image Lightbox Modal */
.rpj-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(6px);
  z-index: 99999; display: flex; align-items: center; justify-content: center; opacity: 0;
  transition: opacity .25s ease; pointer-events: none;
}
.rpj-modal-overlay.active { opacity: 1; pointer-events: auto; }
.rpj-modal-img { max-width: 90vw; max-height: 85vh; border-radius: 10px; box-shadow: 0 20px 50px rgba(0,0,0,.5); object-fit: contain; }
.rpj-modal-close {
  position: absolute; top: 20px; right: 20px; color: #fff; font-size: 28px;
  background: rgba(255,255,255,.2); width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s;
  line-height: 1;
}
.rpj-modal-close:hover { background: var(--pink); }
.review-form { background: var(--cream); border-radius: 12px; padding: 24px; margin-top: 26px; max-width: 640px; }
.review-form h4 { font-family: var(--sans); font-weight: 600; margin-bottom: 14px; }
.star-input { display: flex; gap: 4px; margin-bottom: 14px; }
.star-input button { color: #E4DCD9; transition: color .15s; }
.star-input button.on { color: var(--gold-light); }
.star-input button svg { fill: currentColor; stroke: none; width: 22px; height: 22px; }

/* ---------------- Forms ---------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-field label { font-size: 13px; font-weight: 500; color: #333; }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid var(--line); border-radius: 9px; padding: 12px 15px; outline: none;
  transition: border-color .2s; background: #fff; width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--pink); }
.form-check { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: #444; cursor: pointer; margin-bottom: 14px; }
.form-check input { accent-color: var(--pink); width: 15px; height: 15px; }
.form-error { background: #FDECEC; color: var(--red); border-radius: 9px; padding: 12px 16px; font-size: 13.5px; margin-bottom: 16px; }
.form-success { background: #E8F7EE; color: #1F7A43; border-radius: 9px; padding: 12px 16px; font-size: 13.5px; margin-bottom: 16px; }

/* ---------------- Cart page ---------------- */
.cart-layout { display: grid; grid-template-columns: 1fr 350px; gap: 28px; align-items: start; padding: 34px 0; }
.cart-panel { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left; font-size: 11.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gray);
  padding: 15px 18px; background: var(--cream); font-weight: 600;
}
.cart-table td { padding: 17px 18px; border-top: 1px solid var(--line); vertical-align: middle; }
.cart-prod { display: flex; gap: 15px; align-items: center; }
.cart-prod img { width: 74px; height: 74px; border-radius: 10px; object-fit: cover; background: var(--blush); flex: none; }
.cart-prod-name { font-weight: 500; font-size: 14.5px; margin-bottom: 3px; }
.cart-prod-meta { color: var(--gray); font-size: 12.5px; margin-bottom: 3px; }
.cart-stock { font-size: 12px; color: var(--green); display: inline-flex; align-items: center; gap: 5px; }
.cart-stock::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.cart-stock.low { color: var(--orange); }
.cart-line-total { color: var(--pink); font-weight: 600; }
.cart-remove { color: var(--gray-2); width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; transition: all .2s; }
.cart-remove:hover { color: var(--red); border-color: var(--red); }
.cart-table .qty-stepper { transform: scale(.92); }
.cart-foot { display: flex; justify-content: space-between; gap: 14px; padding: 16px 18px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.coupon-form { display: flex; gap: 10px; }
.coupon-form input { border: 1.5px solid var(--line); border-radius: 8px; padding: 10px 15px; width: 190px; outline: none; }
.coupon-form input:focus { border-color: var(--pink); }

.summary-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; }
.summary-title { font-family: var(--sans); font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.sum-row { display: flex; justify-content: space-between; font-size: 14px; padding: 6.5px 0; color: #444; }
.sum-row em { font-style: normal; color: var(--gray); }
.sum-discount { color: var(--green); }
.sum-total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 14px; font-size: 16px; font-weight: 600; align-items: center; }
.sum-total b { color: var(--pink); font-size: 24px; }
.saved-note { color: var(--green); font-size: 12.5px; text-align: right; margin-top: 4px; }
.summary-card .btn-block { margin-top: 16px; }
.trust-card { background: var(--cream); border-radius: 14px; padding: 20px 22px; margin-top: 18px; display: flex; flex-direction: column; gap: 15px; }
.trust-row { display: flex; gap: 13px; align-items: center; }
.trust-row .ic { color: var(--pink); flex: none; }
.trust-t { font-size: 13.5px; font-weight: 600; }
.trust-s { font-size: 12.5px; color: var(--gray); }

.cart-empty { text-align: center; padding: 70px 20px; }
.cart-empty .ic { color: var(--pink); opacity: .5; }
.cart-empty h2 { margin: 16px 0 8px; }
.cart-empty p { color: var(--gray); margin-bottom: 22px; }

/* ---------------- Checkout ---------------- */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 34px; padding: 34px 0; align-items: start; }
.co-step { margin-bottom: 30px; }
.co-summary { position: sticky; top: 26px; z-index: 10; }
.co-step-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.co-step-title { display: flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 600; font-family: var(--sans); }
.step-num {
  width: 30px; height: 30px; border-radius: 50%; background: var(--pink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 14px; flex: none;
}
.co-login-hint { font-size: 13px; color: var(--gray); }
.co-login-hint a { color: var(--pink); font-weight: 500; }

.ship-option, .pay-option {
  display: flex; align-items: center; gap: 15px; border: 1.5px solid var(--line); border-radius: 11px;
  padding: 15px 18px; margin-bottom: 12px; cursor: pointer; transition: all .2s; background: #fff;
}
.ship-option:has(input:checked), .pay-option:has(input:checked) { border-color: var(--pink); background: #FFF8F9; }
.ship-option input, .pay-option input { accent-color: var(--pink); width: 17px; height: 17px; flex: none; }
.ship-ic, .pay-ic { color: var(--pink); flex: none; }
.opt-title { font-weight: 500; font-size: 14.5px; }
.opt-sub { font-size: 12.5px; color: var(--gray); }
.opt-price { margin-left: auto; font-weight: 600; color: var(--ink); }
.pay-option.disabled { opacity: .55; cursor: not-allowed; }
.pay-brands { margin-left: auto; display: flex; gap: 6px; }
.secure-note { display: flex; align-items: center; gap: 9px; color: var(--gray); font-size: 13px; margin-top: 6px; }

.ship-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 12px;
}
.ship-options-grid .ship-option {
  margin-bottom: 0;
}
@media (max-width: 620px) {
  .ship-options-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.co-summary .summary-title { display: flex; justify-content: space-between; align-items: center; }
.co-items { display: flex; flex-direction: column; gap: 15px; margin-bottom: 16px; max-height: 340px; overflow-y: auto; padding-right: 4px; }
.co-item { display: flex; gap: 13px; align-items: center; }
.co-item img { width: 62px; height: 62px; border-radius: 10px; object-fit: cover; background: var(--blush); flex: none; }
.co-item-name { font-size: 14px; font-weight: 500; }
.co-item-meta { font-size: 12px; color: var(--gray); }
.co-item-price { margin-left: auto; font-weight: 600; font-size: 14px; }
.coupon-mini { background: var(--cream); border-radius: 10px; padding: 14px; margin: 14px 0; }
.coupon-mini-label { font-size: 13px; margin-bottom: 9px; display: flex; align-items: center; gap: 8px; color: #444; }
.coupon-mini .coupon-form input { flex: 1; width: auto; background: #fff; }
.legal-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 12px; }
.legal-note a { color: var(--pink); }
.co-trust { display: flex; justify-content: space-between; gap: 10px; margin-top: 18px; text-align: center; }
.co-trust div { flex: 1; }
.co-trust .ic { color: var(--pink); }
.co-trust-t { font-size: 12px; font-weight: 600; margin-top: 5px; }
.co-trust-s { font-size: 11px; color: var(--gray); }

/* ---------------- Order success / tracking ---------------- */
.success-hero { background: var(--blush); text-align: center; padding: 54px 0 46px; position: relative; overflow: hidden; }
.confetti { position: absolute; border-radius: 2px; opacity: .8; }
.success-check {
  width: 96px; height: 96px; margin: 0 auto 22px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center; color: var(--green);
  box-shadow: 0 0 0 12px rgba(255,255,255,.5);
}
.success-title { font-size: clamp(28px, 4vw, 42px); font-weight: 500; margin-bottom: 8px; }
.success-sub { color: var(--gray); max-width: 430px; margin: 0 auto 16px; }
.order-id-line { font-size: 15px; margin-bottom: 22px; }
.order-id-line b { color: var(--pink); }

.timeline-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px 28px; margin-top: -26px; position: relative; z-index: 4; box-shadow: var(--shadow-sm); }
.timeline-label { color: var(--pink); font-weight: 600; font-size: 14px; margin-bottom: 22px; }
.timeline { display: flex; align-items: flex-start; }
.tl-step { display: flex; flex-direction: column; align-items: center; text-align: center; width: 110px; flex: none; }
.tl-dot {
  width: 46px; height: 46px; border-radius: 50%; background: #F1EAE8; color: var(--gray-2);
  display: flex; align-items: center; justify-content: center; position: relative; margin-bottom: 10px;
}
.tl-step.done .tl-dot { background: var(--pink); color: #fff; }
.tl-check {
  position: absolute; right: -2px; bottom: -2px; width: 17px; height: 17px; border-radius: 50%;
  background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.tl-label { font-size: 13px; font-weight: 600; }
.tl-date { font-size: 11.5px; color: var(--gray); margin-top: 3px; line-height: 1.45; }
.tl-line { flex: 1; height: 2.5px; background: #F1EAE8; margin-top: 22px; border-radius: 2px; min-width: 20px; }
.tl-line.done { background: var(--pink); }

.status-banner {
  display: flex; align-items: center; gap: 16px; background: var(--pink-soft); border-radius: 12px;
  padding: 17px 22px; margin: 24px 0; flex-wrap: wrap;
}
.status-banner .ic { color: var(--pink); flex: none; }
.sb-title { font-weight: 600; font-size: 14.5px; }
.sb-sub { font-size: 13px; color: var(--gray); }
.status-banner .btn { margin-left: auto; }

.order-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; padding: 26px 0 40px; align-items: start; }
.order-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; margin-bottom: 20px; }
.order-card h3 { font-family: var(--sans); font-size: 15.5px; font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 9px; }
.order-card h3 .ic { color: var(--pink); }
.oc-item { display: flex; gap: 14px; align-items: center; padding: 10px 0; border-bottom: 1px solid #F6EEEC; }
.oc-item:last-of-type { border-bottom: none; }
.oc-item img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; background: var(--blush); }
.oc-name { font-weight: 500; font-size: 14px; }
.oc-meta { font-size: 12.5px; color: var(--gray); }
.oc-price { margin-left: auto; font-weight: 600; }
.next-steps { display: flex; flex-direction: column; gap: 0; }
.ns-item { display: flex; gap: 15px; position: relative; padding-bottom: 22px; }
.ns-item:last-child { padding-bottom: 0; }
.ns-item::before { content: ''; position: absolute; left: 21px; top: 44px; bottom: 0; width: 1.5px; background: #F0DCD8; }
.ns-item:last-child::before { display: none; }
.ns-ic { width: 43px; height: 43px; flex: none; border-radius: 50%; background: #fff; border: 1.5px solid var(--pink-soft); color: var(--pink); display: flex; align-items: center; justify-content: center; }
.ns-t { font-weight: 600; font-size: 14px; }
.ns-s { font-size: 13px; color: var(--gray); }
.ns-s a { color: var(--pink); font-weight: 500; }
.info-line { font-size: 14px; color: #444; line-height: 1.75; }

.shipment-table { width: 100%; }
.shipment-table td { padding: 10px 4px; font-size: 14px; border-bottom: 1px solid #F6EEEC; vertical-align: top; }
.shipment-table tr:last-child td { border-bottom: none; }
.shipment-table td:first-child { color: var(--gray); width: 42%; }
.map-card { border-radius: 12px; overflow: hidden; position: relative; background: #EFEDE8; min-height: 220px; }
.map-pop {
  position: absolute; top: 20%; right: 8%; background: #fff; border-radius: 10px; padding: 12px 16px;
  box-shadow: 0 8px 26px rgba(0,0,0,.14); font-size: 12.5px;
}
.map-pop b { display: block; font-size: 13px; }
.map-pop span { color: var(--gray); }

.track-form-card { max-width: 560px; margin: 40px auto; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 34px; box-shadow: var(--shadow-sm); }
.track-form-card h2 { font-size: 24px; margin-bottom: 6px; }
.track-form-card > p { color: var(--gray); margin-bottom: 22px; font-size: 14px; }

.help-band { background: var(--cream); border-radius: 14px; padding: 24px 28px; display: grid; grid-template-columns: 1.2fr 2fr; gap: 24px; margin-bottom: 40px; }
.help-left h4 { font-family: var(--sans); font-weight: 600; margin-bottom: 6px; }
.help-left p, .help-left a { font-size: 13.5px; color: var(--gray); display: flex; align-items: center; gap: 8px; margin-top: 7px; }
.help-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.help-link { display: flex; gap: 12px; align-items: flex-start; }
.help-link .ic { color: var(--pink); margin-top: 2px; flex: none; }
.help-link b { font-size: 13.5px; display: block; font-weight: 600; }
.help-link span { font-size: 12.5px; color: var(--gray); }

/* ---------------- Wishlist ---------------- */
.wish-bar {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin: -30px auto 34px; position: relative; z-index: 5; box-shadow: var(--shadow-sm); flex-wrap: wrap;
}
.wish-count { display: flex; align-items: center; gap: 14px; }
.wish-heart { width: 46px; height: 46px; background: var(--pink); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.wish-heart svg { fill: #fff; }
.wish-count b { display: block; font-size: 16px; }
.wish-count span { color: var(--gray); font-size: 13px; }
.wish-actions { display: flex; align-items: center; gap: 20px; }
.cta-band {
  background: var(--pink-soft); border-radius: 14px; padding: 24px 30px; display: flex; align-items: center;
  gap: 20px; margin: 36px 0 44px; flex-wrap: wrap;
}
.cta-band-ic { width: 56px; height: 56px; border-radius: 50%; background: #fff; color: var(--pink); display: flex; align-items: center; justify-content: center; flex: none; }
.cta-band h3 { font-size: 21px; font-weight: 500; }
.cta-band p { color: var(--gray); font-size: 13.5px; }
.cta-band .btn { margin-left: auto; }

/* ---------------- Auth & account ---------------- */
.auth-wrap { display: grid; place-items: center; padding: 54px 0; background: var(--blush); }
.auth-card { background: #fff; border-radius: 18px; box-shadow: var(--shadow); width: min(460px, 92vw); padding: 38px; }
.auth-card .brand { justify-content: center; display: flex; margin-bottom: 8px; }
.auth-title { text-align: center; font-size: 26px; margin-bottom: 4px; }
.auth-sub { text-align: center; color: var(--gray); font-size: 13.5px; margin-bottom: 24px; }
.auth-alt { text-align: center; margin-top: 18px; font-size: 13.5px; color: var(--gray); }
.auth-alt a { color: var(--pink); font-weight: 500; }

.account-layout { display: grid; grid-template-columns: 250px 1fr; gap: 28px; padding: 36px 0 46px; align-items: start; }
.account-nav { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.account-nav a { display: flex; align-items: center; gap: 11px; padding: 14px 20px; font-size: 14px; border-bottom: 1px solid #F6EEEC; transition: all .15s; }
.account-nav a:hover, .account-nav a.active { background: var(--pink-soft); color: var(--pink-deep); }
.account-nav a:last-child { border-bottom: none; }
.order-row-table { width: 100%; border-collapse: collapse; }
.order-row-table th { text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: 1.4px; color: var(--gray); padding: 12px 14px; background: var(--cream); }
.order-row-table td { padding: 14px; border-top: 1px solid var(--line); font-size: 14px; }
.st-pill { display: inline-block; font-size: 11.5px; font-weight: 600; padding: 5px 12px; border-radius: 16px; letter-spacing: .4px; }
.st-pending    { background: #FFF4D9; color: #B7791F; }
.st-confirmed  { background: #E7F0FE; color: #2563EB; }
.st-processing { background: #FFF4D9; color: #B7791F; }
.st-shipped    { background: #E7F0FE; color: #2563EB; }
.st-delivered  { background: #E5F7EC; color: #1F8A4C; }
.st-cancelled  { background: #FDE8E8; color: #C0392B; }

/* ---------------- Contact / static pages ---------------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.35fr; gap: 30px; padding: 40px 0 50px; align-items: start; }
.contact-card { background: var(--cream); border-radius: 14px; padding: 26px; margin-bottom: 18px; }
.contact-card h3 { font-family: var(--sans); font-size: 15px; font-weight: 600; margin-bottom: 8px; display: flex; gap: 10px; align-items: center; }
.contact-card h3 .ic { color: var(--pink); }
.contact-card p, .contact-card a { color: var(--gray); font-size: 14px; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px; }
.prose { max-width: 780px; padding: 40px 0 50px; }
.prose h2 { font-size: 24px; margin: 26px 0 10px; }
.prose p, .prose li { color: #444; margin-bottom: 12px; font-size: 15px; }
.prose ul { padding-left: 22px; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1080px) {
  .grid-5 { grid-template-columns: repeat(4, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-inline { display: none; }
  .header-home .nav-burger { display: inline-flex; }
  .ig-inner { flex-direction: column; align-items: flex-start; }
  .ig-photos { width: 100%; }
  .timeline { overflow-x: auto; padding-bottom: 8px; }
}
@media (max-width: 900px) {
  .topbar-triple span:nth-child(2), .topbar-triple span:nth-child(3) { display: none; }
  .nav-row { display: none; }
  .nav-burger { display: inline-flex !important; }
  .hero-inner { grid-template-columns: 1fr; min-height: 0; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item + .feature-item { border-left: none; }
  .promos { grid-template-columns: 1fr; }
  .catalog { grid-template-columns: 1fr; }
  .filters { position: static; }
  .product-layout, .cart-layout, .checkout-layout, .order-grid, .contact-layout, .account-layout { grid-template-columns: 1fr; }
  .desc-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 64px 1fr; }
  .help-band { grid-template-columns: 1fr; }
  .help-links { grid-template-columns: 1fr; }
  .header-mid { flex-wrap: wrap; gap: 14px; }
  .header-search { order: 3; min-width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-5, .grid-6, .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-circles { justify-content: center; }
  .cart-table th:nth-child(2), .cart-table td:nth-child(2) { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .pd-actions { grid-template-columns: 1fr; }
  .ig-photos { grid-template-columns: repeat(3, 1fr); }
  .co-trust { flex-direction: column; text-align: left; }
}

/* ============================================================
   LIVE CHAT WIDGET
   ============================================================ */
.chatw { position: fixed; right: 18px; bottom: 18px; z-index: 900; font-family: var(--sans); }
.chatw-btn {
  width: 58px; height: 58px; border-radius: 50%; background: var(--pink); color: #fff;
  display: flex; align-items: center; justify-content: center; position: relative;
  box-shadow: 0 8px 26px rgba(210, 72, 98, .45); transition: transform .2s, background .2s;
}
.chatw-btn:hover { transform: scale(1.07); background: var(--pink-dark); }
.chatw-badge {
  position: absolute; top: -4px; right: -4px; background: var(--pink-deep); color: #fff;
  min-width: 20px; height: 20px; border-radius: 10px; font-size: 11px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 5px; border: 2px solid #fff;
}
.chatw-panel {
  position: absolute; right: 0; bottom: 72px; width: 350px; max-width: calc(100vw - 24px);
  background: #fff; border-radius: 16px; box-shadow: 0 18px 60px rgba(0,0,0,.22);
  overflow: hidden; display: flex; flex-direction: column; max-height: min(540px, calc(100vh - 120px));
  animation: chatIn .22s ease;
}
@keyframes chatIn { from { opacity: 0; transform: translateY(14px); } }
.chatw-head {
  background: linear-gradient(120deg, var(--pink-deep), var(--pink)); color: #fff;
  padding: 15px 18px; display: flex; justify-content: space-between; align-items: center; flex: none;
}
.chatw-title { font-weight: 600; font-size: 15px; }
.chatw-status { font-size: 12px; opacity: .92; display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.chatw-dot { width: 8px; height: 8px; border-radius: 50%; background: #9ca3af; display: inline-block; }
.chatw-dot.on { background: #4ade80; box-shadow: 0 0 0 3px rgba(74, 222, 128, .25); }
.chatw-close { color: #fff; font-size: 16px; opacity: .85; padding: 4px; }
.chatw-close:hover { opacity: 1; }
.chatw-start { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.chatw-welcome { font-size: 13.5px; color: #444; background: var(--cream); border-radius: 10px; padding: 12px 14px; }
.chatw-start input { border: 1.5px solid var(--line); border-radius: 9px; padding: 11px 13px; font-size: 13.5px; outline: none; }
.chatw-start input:focus { border-color: var(--pink); }
.chatw-err { background: #FDECEC; color: var(--red); font-size: 12.5px; border-radius: 8px; padding: 9px 12px; }
.chatw-send-btn {
  background: var(--pink); color: #fff; border-radius: 9px; padding: 12px;
  font-weight: 500; font-size: 13.5px; letter-spacing: .6px; transition: background .2s;
}
.chatw-send-btn:hover { background: var(--pink-dark); }
.chatw-body { display: flex; flex-direction: column; flex: 1; min-height: 260px; }
.chatw-msgs { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; background: #FBF7F6; }
.chatw-msg { max-width: 82%; }
.chatw-msg.me { align-self: flex-end; text-align: right; }
.chatw-msg.them { align-self: flex-start; }
.chatw-bubble {
  display: inline-block; padding: 9px 13px; border-radius: 14px; font-size: 13.5px; line-height: 1.5;
  background: #fff; border: 1px solid var(--line); text-align: left; word-break: break-word; white-space: pre-wrap;
}
.chatw-msg.me .chatw-bubble { background: var(--pink); color: #fff; border-color: var(--pink); border-bottom-right-radius: 4px; }
.chatw-msg.them .chatw-bubble { border-bottom-left-radius: 4px; }
.chatw-meta { font-size: 10.5px; color: var(--gray-2); margin-top: 3px; }
.chatw-tick { color: var(--gray-2); font-weight: 600; }
.chatw-tick.seen { color: #3B82F6; }
.chatw-typing { font-size: 12px; color: var(--gray); padding: 4px 16px 8px; background: #FBF7F6; }
.chatw-typing span { animation: blink 1.2s infinite; }
.chatw-typing span:nth-child(2) { animation-delay: .2s; }
.chatw-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 100% { opacity: .2; } 50% { opacity: 1; } }
.chatw-input { display: flex; border-top: 1px solid var(--line); background: #fff; flex: none; }
.chatw-input input { flex: 1; border: none; outline: none; padding: 13px 15px; font-size: 13.5px; }
.chatw-input button { color: var(--pink); padding: 0 16px; display: flex; align-items: center; }

/* ============================================================
   RESPONSIVE OVERHAUL — no overflow, no breakage on any screen
   ============================================================ */
html, body { max-width: 100%; overflow-x: hidden; }
img { height: auto; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* fluid type + spacing at tablet */
@media (max-width: 1024px) {
  .section { padding: 36px 0; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .promo-title { font-size: 33px; }
  .desc-promo-content { max-width: 70%; }
}

@media (max-width: 900px) {
  .container { width: 94%; }
  /* header */
  .topbar-triple { justify-content: center; }
  .header-mid { gap: 12px; }
  .header-icons { gap: 14px; }
  .hicon-label { display: none; }
  /* hero */
  .hero-inner { padding: 26px 0 18px; gap: 20px; }
  .hero-media img { aspect-ratio: 16/10; }
  .hero-title { font-size: clamp(34px, 8vw, 48px); }
  /* features card */
  .features-strip.is-card { margin-top: -20px; }
  .features-strip.is-card .features-grid { padding: 18px; gap: 14px; }
  .feature-item { justify-content: flex-start; }
  /* category circles → swipeable row */
  .cat-circles {
    flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
    gap: 8px; padding: 28px 0 14px; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  }
  .cat-circle { flex: 0 0 auto; scroll-snap-align: start; width: 92px; }
  .cat-circle-img { width: 74px; height: 74px; }
  /* subcategory chips scroll */
  .subcat-row { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding: 24px 0 4px; -webkit-overflow-scrolling: touch; }
  .subcat { flex: 0 0 auto; }
  /* product page */
  .gallery { grid-template-columns: 1fr; }
  .gallery-thumbs { flex-direction: row; order: 2; overflow-x: auto; }
  .g-thumb { flex: 0 0 66px; }
  .pd-title { font-size: 22px; }
  .pd-price { font-size: 28px; }
  /* tabs scroll */
  .tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tab-btn { white-space: nowrap; padding: 12px 14px; }
  /* cart table → horizontal scroll safety */
  .cart-panel { overflow-x: auto; }
  .cart-table { min-width: 560px; }
  .cart-foot { flex-direction: column; align-items: stretch; }
  .coupon-form { flex-wrap: wrap; }
  .coupon-form input { flex: 1; min-width: 0; width: auto; }
  /* checkout */
  .checkout-layout { gap: 22px; }
  .co-summary { position: static; }
  /* order pages */
  .order-grid { gap: 16px; }
  .status-banner .btn { margin-left: 0; width: 100%; justify-content: center; }
  .timeline { min-width: 540px; }
  .timeline-card { overflow-x: auto; }
  /* wishlist bar */
  .wish-bar { margin-top: -18px; }
  .wish-actions { width: 100%; justify-content: space-between; }
  /* newsletter */
  .newsletter-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .newsletter-left { flex-direction: column; text-align: center; }
  .newsletter-form { max-width: none; }
  /* footer */
  .footer-grid { gap: 22px; padding-bottom: 26px; }
}

@media (max-width: 620px) {
  body { font-size: 14px; }
  .topbar-msg { font-size: 10px; }
  .topbar-links { gap: 12px; font-size: 11.5px; }
  .topbar-cur { display: none; }
  .brand-name { font-size: 30px; }
  .brand-sub { letter-spacing: 3px; }
  .page-hero { padding: 28px 0 32px; }
  .page-hero-img { width: 70%; opacity: .5; }
  .page-title { font-size: 28px; }
  .section-head { flex-wrap: wrap; }
  .section-title { font-size: 22px; }
  .hero-actions .btn { padding: 12px 20px; }
  .grid-5, .grid-6, .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .p-name { font-size: 14.5px; }
  .price-now { font-size: 16px; }
  .cartmini-btn { opacity: 1; transform: none; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-ic { width: 38px; height: 38px; }
  .feature-title { font-size: 11.5px; }
  .feature-sub { font-size: 11px; }
  .promos { gap: 14px; }
  .promo { padding: 26px; min-height: 190px; }
  .ig-photos { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .pd-actions { grid-template-columns: 1fr; }
  .pd-links { flex-wrap: wrap; gap: 14px; }
  .desc-promo { min-height: 220px; padding: 24px; }
  .desc-promo h3 { font-size: 24px; }
  .review-form { padding: 18px; }
  .auth-card { padding: 26px 20px; }
  .track-form-card { padding: 24px 18px; margin: 24px auto; }
  .help-band { padding: 18px; }
  .cta-band { padding: 20px; }
  .cta-band .btn { margin-left: 0; width: 100%; justify-content: center; }
  .summary-card, .order-card { padding: 18px; }
  .co-trust { flex-direction: row; }
  .footer { padding-top: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand .brand { justify-content: center; display: flex; }
  .footer-tagline { margin-inline: auto; }
  .socials { justify-content: center; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .chatw { right: 12px; bottom: 12px; }
  .chatw-btn { width: 52px; height: 52px; }
  .toast-stack { left: 12px; right: 12px; }
  .toast { min-width: 0; max-width: none; }
}

@media (max-width: 420px) {
  .grid-5, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col a, .footer-col span { justify-content: center; }
  .pagination { flex-wrap: wrap; }
  .hero-title { font-size: 32px; }
  .ig-photos { grid-template-columns: repeat(2, 1fr); }
}

/* mobile filter toggle */
@media (max-width: 900px) {
  .filters { position: relative; }
  .filters-head { cursor: pointer; display: flex; justify-content: space-between; align-items: center; margin-bottom: 0; }
  .filters-head::after { content: '▾'; color: var(--pink); transition: transform .2s; }
  .filters.open .filters-head::after { transform: rotate(180deg); }
  .filters form > .f-block, .filters .f-clear, .filters .filter-promo { display: none; }
  .filters.open form > .f-block, .filters.open .f-clear { display: block; }
  .filters.open .f-block { display: block; }
}

/* uploaded brand logo image */
.brand-img { max-height: 54px; width: auto; }
.header-home .brand-img, .header-inner .brand-img { max-height: 48px; }

/* ============================================================
   HERO 3D  +  UNIFIED HEADER  +  MOBILE DRAWER  (v3 polish)
   ============================================================ */

/* ---- 3D hero ---- */
.hero-3d { position: relative; overflow: hidden; background:
  radial-gradient(900px 420px at 85% 20%, #FBD9DE 0%, transparent 60%),
  radial-gradient(700px 420px at 8% 85%, #FDEDE3 0%, transparent 55%),
  var(--blush); }
.hero-deco { position: absolute; border-radius: 50%; filter: blur(52px); opacity: .55; pointer-events: none; }
.hero-deco-1 { width: 340px; height: 340px; background: #F6C6CE; top: -110px; right: 6%; }
.hero-deco-2 { width: 260px; height: 260px; background: #F3D9B9; bottom: -90px; left: 3%; }
.hero-spark { position: absolute; color: var(--gold-light); pointer-events: none; animation: sparkTw 3.6s ease-in-out infinite; font-size: 18px; }
.hero-spark.s1 { top: 18%; left: 42%; }
.hero-spark.s2 { top: 68%; left: 55%; font-size: 13px; animation-delay: 1.2s; }
.hero-spark.s3 { top: 26%; right: 6%; font-size: 15px; animation-delay: 2.1s; }
@keyframes sparkTw { 0%,100% { opacity: .25; transform: scale(.8) rotate(0deg); } 50% { opacity: 1; transform: scale(1.15) rotate(18deg); } }

.hero-3d .hero-slide { display: none; }
.hero-3d .hero-slide.active { display: block; }
.hero-3d .hero-slide.active .hero-text { animation: heroTxt .7s cubic-bezier(.2,.8,.25,1) both; }
.hero-3d .hero-slide.active .hero-stage { animation: heroImg .8s cubic-bezier(.2,.8,.25,1) both; }
@keyframes heroTxt { from { opacity: 0; transform: translateY(26px); } }
@keyframes heroImg { from { opacity: 0; transform: translateX(34px) scale(.96); } }

.hero-mini-stats { display: flex; align-items: center; gap: 14px; margin-top: 30px; color: var(--gray); font-size: 12.5px; flex-wrap: wrap; }
.hero-mini-stats b { color: var(--ink); font-weight: 600; }
.hero-mini-stats i { width: 1px; height: 16px; background: #E7CFCA; }

.hero-stage { position: relative; perspective: 1300px; padding: 26px 10px 34px; }
.hero-ring {
  position: absolute; inset: 6% -4% auto auto; width: 130px; height: 130px; border-radius: 50%;
  border: 2px dashed rgba(198, 154, 78, .55); animation: ringSpin 22s linear infinite; pointer-events: none;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.hero-glow { position: absolute; left: 8%; right: 8%; bottom: 6px; height: 40px; background: rgba(158, 40, 64, .22); filter: blur(26px); border-radius: 50%; }
.hero-card {
  position: relative; border-radius: 22px; overflow: visible;
  transform-style: preserve-3d; transform: rotateY(-7deg) rotateX(3deg);
  transition: transform .18s ease-out; will-change: transform;
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.hero-card img {
  width: 100%; aspect-ratio: 16/10.4; object-fit: cover; border-radius: 22px; display: block;
  box-shadow: 0 34px 70px -22px rgba(158, 40, 64, .45), 0 10px 26px rgba(158, 40, 64, .16);
}
.hero-card::after { /* glass shine */
  content: ''; position: absolute; inset: 0; border-radius: 22px; pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.28) 0%, transparent 32%);
}
.hero-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7); border-radius: 30px;
  padding: 9px 15px; font-size: 12px; font-weight: 500; color: var(--pink-deep);
  box-shadow: 0 10px 26px rgba(158,40,64,.18); transform: translateZ(55px);
}
.hero-chip .ic { color: var(--pink); }
.chip-a { top: -14px; left: -12px; animation: chipFloat 5s ease-in-out infinite; }
.chip-b { bottom: -14px; right: -8px; animation: chipFloat 5s ease-in-out 1.4s infinite; }
@keyframes chipFloat { 0%,100% { margin-top: 0; } 50% { margin-top: -7px; } }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.86);
  color: var(--pink-deep); font-size: 24px; line-height: 1; backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm); transition: all .2s; display: flex; align-items: center; justify-content: center;
}
.hero-arrow:hover { background: var(--pink); color: #fff; }
.hero-arrow.prev { left: 14px; }
.hero-arrow.next { right: 14px; }

/* ---- unified header: burger placement ---- */
.header-mid .nav-burger { display: none; order: -1; }

/* ---- mobile drawer ---- */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(27, 27, 27, .45); z-index: 940;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.mobile-drawer {
  position: fixed; top: 0; bottom: 0; left: 0; width: min(320px, 86vw); z-index: 950;
  background: #fff; box-shadow: 18px 0 50px rgba(0,0,0,.18);
  transform: translateX(-102%); transition: transform .28s cubic-bezier(.2,.8,.25,1);
  display: flex; flex-direction: column;
}
body.drawer-open { overflow: hidden; }
body.drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }
body.drawer-open .mobile-drawer { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line); background: var(--blush); }
.drawer-head .brand-name { font-size: 30px; }
.drawer-close { font-size: 18px; color: var(--pink-deep); padding: 6px 10px; }
.drawer-nav { flex: 1; overflow-y: auto; padding: 10px 0; }
.drawer-link {
  display: block; padding: 14px 22px; font-size: 14px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase; color: var(--ink);
  border-bottom: 1px dashed #F3E4E1; transition: all .15s;
}
.drawer-link:hover, .drawer-link.active { color: var(--pink); background: #FFF7F8; padding-left: 26px; }
.drawer-foot { padding: 16px 22px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--gray); }
.drawer-foot a { display: inline-flex; align-items: center; gap: 8px; color: var(--pink-deep); font-weight: 500; }
.mobile-nav { display: none !important; } /* legacy — replaced by drawer */

/* ---- header responsive refinements ---- */
@media (max-width: 900px) {
  .header-mid { flex-wrap: wrap; gap: 10px 14px; padding: 12px 0; }
  .header-mid .nav-burger { display: inline-flex; }
  .header-search { order: 5; min-width: 100%; }
  .header-search input { padding: 10px 14px; font-size: 13.5px; }
  .header-search button { width: 46px; }
  .brand { margin-right: auto; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 8px; }
  .hero-text { order: 1; }
  .hero-stage { order: 0; max-width: 470px; margin: 0 auto; width: 100%; padding-top: 12px; }
  .hero-card { transform: none; animation-duration: 7s; }
  .hero-mini-stats { justify-content: center; }
  .hero-arrow { top: 26%; }
  .hero-ring { display: none; }
}
@media (max-width: 620px) {
  .hero-arrow { display: none; }
  .hero-chip { font-size: 10.5px; padding: 7px 11px; }
  .hero-mini-stats { gap: 9px; font-size: 11.5px; }
  .hero-title { font-size: clamp(30px, 9vw, 40px); }
  .hero-3d .hero-slide .hero-actions .btn-lg { padding: 13px 22px; font-size: 12.5px; }
}

/* ============================================================
   WOODMART-STYLE HEADER (brand pink) + sticky nav row
   ============================================================ */
/* hide legacy header styles if any linger */
.topbar, .header-home, .header-inner .header-mid, .nav-row { display: none; }
.header.header-inner { display: none; }

.hd { background: #fff; }

/* ---- Row 1: utility bar ---- */
.hd-top { border-bottom: 1px solid var(--line); font-size: 11.5px; letter-spacing: .8px; text-transform: uppercase; color: #5c5c66; background: #fff; }
.hd-top-in { display: flex; align-items: stretch; justify-content: space-between; min-height: 40px; }
.hd-top-left, .hd-top-right { display: flex; align-items: stretch; }
.hd-top-item {
  display: inline-flex; align-items: center; gap: 7px; padding: 0 16px;
  border-left: 1px solid var(--line); color: inherit; transition: color .15s; font-weight: 500;
}
.hd-top-left .hd-top-item:first-child { border-left: none; padding-left: 0; }
.hd-top-right .hd-top-item:last-child { padding-right: 0; }
.hd-top-right .hd-top-item:last-child + * { border-right: none; }
a.hd-top-item:hover { color: var(--pink); }
.hd-announce { color: var(--pink-deep); font-weight: 600; }
.hd-socials { gap: 13px; }
.hd-socials a { color: #8a8a94; display: inline-flex; transition: color .15s; }
.hd-socials a:hover { color: var(--pink); }

/* ---- Row 2: main ---- */
.hd-main { border-bottom: 1px solid var(--line); }
.hd-main-in { display: flex; align-items: center; gap: 28px; padding: 18px 0; }
.hd-burger { display: none; color: var(--ink); }
.hd .brand { flex: none; }

.hd-search {
  flex: 1; display: flex; align-items: stretch; border: 2px solid var(--pink);
  border-radius: 10px; overflow: hidden; background: #fff; max-width: 640px; height: 48px;
}
.hd-search input { flex: 1; border: none; outline: none; padding: 0 16px; font-size: 14px; min-width: 0; }
.hd-search-cat { display: flex; align-items: center; border-left: 1px solid var(--line); }
.hd-search-cat select {
  border: none; outline: none; background: #fff; height: 100%; padding: 0 30px 0 14px;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: #5c5c66; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23888' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.hd-search > button {
  width: 56px; background: var(--pink); color: #fff; display: flex; align-items: center;
  justify-content: center; transition: background .18s; flex: none;
}
.hd-search > button:hover { background: var(--pink-dark); }

.hd-support { display: flex; align-items: center; gap: 11px; flex: none; }
.hd-support-ic { color: var(--pink); opacity: .85; }
.hd-support-tx b { display: block; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--pink-deep); font-weight: 600; }
.hd-support-tx small { color: var(--gray); font-size: 12.5px; }

.hd-cart { display: flex; align-items: center; gap: 11px; flex: none; }
.hd-cart-ic { position: relative; color: var(--ink); }
.hd-cart-ic em {
  position: absolute; top: -7px; right: -9px; font-style: normal;
  background: var(--pink); color: #fff; font-size: 10px; font-weight: 600;
  min-width: 17px; height: 17px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; padding: 0 4px;
}
.hd-cart-tx b { display: block; font-size: 14.5px; color: var(--pink); font-weight: 600; }
.hd-cart-tx small { color: var(--gray); font-size: 12px; }

/* ---- Row 3: sticky nav ---- */
.hd-nav {
  position: sticky; top: 0; z-index: 120; background: #fff;
  border-bottom: 1px solid var(--line);
}
.hd-nav.is-stuck { box-shadow: 0 6px 22px rgba(158, 40, 64, .12); }
.hd-nav-in { display: flex; align-items: stretch; gap: 26px; min-height: 52px; }

.hd-cats { position: relative; flex: none; display: flex; }
.hd-cats-btn {
  display: inline-flex; align-items: center; gap: 11px; background: var(--pink); color: #fff;
  padding: 0 20px; font-size: 12.5px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase;
  min-width: 250px; transition: background .18s;
}
.hd-cats-btn:hover { background: var(--pink-dark); }
.hd-cats-btn .ic:last-child { margin-left: auto; }
.hd-cats-panel {
  position: absolute; top: 100%; left: 0; width: 100%; min-width: 250px; background: #fff;
  border: 1px solid var(--line); border-top: none; box-shadow: 0 16px 40px rgba(0,0,0,.1);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .22s; z-index: 130;
}
.hd-cats:hover .hd-cats-panel, .hd-cats.open .hd-cats-panel { opacity: 1; visibility: visible; transform: none; }
.hd-cats-panel a {
  display: flex; align-items: center; gap: 11px; padding: 12px 18px; font-size: 13.5px;
  border-bottom: 1px solid #F6EEEC; color: #444; transition: all .15s;
}
.hd-cats-panel a:hover { color: var(--pink); background: #FFF7F8; padding-left: 23px; }
.hd-cats-panel a .ic { color: var(--pink); opacity: .7; }
.hd-cats-all { font-weight: 600; color: var(--pink-deep) !important; }

.hd-menu { display: flex; align-items: stretch; gap: 4px; flex: 1; }
.hd-link {
  display: inline-flex; align-items: center; padding: 0 13px; font-size: 12.5px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink); position: relative; transition: color .18s;
}
.hd-link:hover, .hd-link.active { color: var(--pink); }
.hd-link.active::after { content: ''; position: absolute; left: 13px; right: 13px; bottom: 0; height: 2.5px; background: var(--pink); border-radius: 2px; }

.hd-nav-right { display: flex; align-items: stretch; gap: 4px; margin-left: auto; }
.hd-mini { display: inline-flex; align-items: center; gap: 7px; padding: 0 12px; font-size: 12.5px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink); transition: color .18s; }
.hd-mini:hover { color: var(--pink); }
.hd-mini em {
  font-style: normal; background: var(--pink); color: #fff; font-size: 10px; font-weight: 600;
  min-width: 17px; height: 17px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; padding: 0 4px;
  transform: translateY(-7px); margin-left: -4px;
}

/* ---- drawer: search + tabs (WoodMart mobile) ---- */
.drawer-search { display: flex; align-items: center; border-bottom: 1px solid var(--line); flex: none; }
.drawer-search input { flex: 1; border: none; outline: none; padding: 17px 18px; font-size: 14.5px; min-width: 0; }
.drawer-search button { color: var(--ink); padding: 0 16px; }
.drawer-tabs { display: flex; flex: none; }
.drawer-tab {
  flex: 1; padding: 14px 10px; font-size: 12.5px; font-weight: 600; letter-spacing: 1.6px;
  text-transform: uppercase; color: #9a9aa2; background: #F4F4F6; border-bottom: 2px solid transparent; transition: all .18s;
}
.drawer-tab.active { background: #fff; color: var(--ink); border-bottom-color: var(--pink); }
.drawer-pane { display: none; flex: 1; overflow-y: auto; padding-bottom: 20px; }
.drawer-pane.active { display: block; }
.drawer-acc { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; }
.drawer-acc .acc-arrow { color: var(--gray-2); font-size: 18px; transition: transform .2s; }
.drawer-acc.open .acc-arrow { transform: rotate(90deg); }
.drawer-sub { display: none; background: #FBF7F6; }
.drawer-sub.open { display: block; }
.drawer-sublink { display: block; padding: 12px 22px 12px 34px; font-size: 13px; color: #555; border-bottom: 1px dashed #F0E2DF; }
.drawer-sublink:hover { color: var(--pink); }
.drawer-ic-link { display: flex; align-items: center; gap: 11px; text-transform: none; letter-spacing: .3px; font-size: 14px; }
.drawer-ic-link .ic { color: var(--pink); }
.drawer-badge {
  font-style: normal; background: var(--pink); color: #fff; font-size: 10px; font-weight: 600;
  min-width: 17px; height: 17px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; padding: 0 4px; margin-left: auto;
}

/* ---- responsive header ---- */
@media (max-width: 1100px) {
  .hd-support { display: none; }
  .hd-cats-btn { min-width: 200px; }
  .hd-menu { gap: 0; }
  .hd-link { padding: 0 9px; font-size: 11.5px; }
}
@media (max-width: 900px) {
  .hd-top { display: none; }
  .hd-nav { display: none; }             /* menu lives in drawer on mobile */
  .hd-main { position: sticky; top: 0; z-index: 120; box-shadow: 0 2px 14px rgba(158,40,64,.08); }
  .hd-main-in { gap: 14px; padding: 12px 0; }
  .hd-burger { display: inline-flex; }
  .hd-search { display: none; }          /* search moves into the drawer */
  .hd .brand { margin-right: auto; }
  .hd .brand-name { font-size: 29px; }
  .hd-cart-tx { display: none; }
}

/* single 3D hero polish */
.hero-single .hero-inner { min-height: 500px; }
.hero-single .hero-card img { aspect-ratio: 16/10; }
.hero-single .hero-title { font-size: clamp(44px, 5.8vw, 72px); }
@media (max-width: 900px) { .hero-single .hero-inner { min-height: 0; } }

/* ============================================================
   HEADER POLISH v2 — no text wrap, nicer cart, mock-perfect
   ============================================================ */
/* never let menu/nav text break into two lines */
.hd-link, .hd-mini, .hd-cats-btn, .hd-top-item, .hd-support-tx b, .hd-cart-tx b { white-space: nowrap; }
.hd-nav-in { flex-wrap: nowrap; }
.hd-menu { overflow-x: auto; scrollbar-width: none; }
.hd-menu::-webkit-scrollbar { display: none; }
.hd-top-left, .hd-top-right { flex-wrap: nowrap; white-space: nowrap; }
.hd-top-in { overflow: hidden; }

/* row-2 spacing closer to the reference */
.hd-main-in { padding: 20px 0; gap: 30px; }

/* nicer cart beside search: soft pink circle + stacked text */
.hd-cart { gap: 12px; padding: 6px 8px; border-radius: 12px; transition: background .18s; }
.hd-cart:hover { background: #FFF4F6; }
.hd-cart-ic {
  width: 48px; height: 48px; border-radius: 50%; background: var(--pink-soft);
  color: var(--pink-deep); display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid #F6CBD4; position: relative; flex: none; transition: all .18s;
}
.hd-cart:hover .hd-cart-ic { background: var(--pink); color: #fff; border-color: var(--pink); }
.hd-cart-ic em {
  top: -5px; right: -5px; border: 2px solid #fff; min-width: 19px; height: 19px; border-radius: 10px;
}
.hd-cart-tx small { display: block; color: var(--gray); font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; }
.hd-cart-tx b { font-size: 16px; }

/* tighter mid-size behavior so nothing breaks */
@media (max-width: 1280px) {
  .hd-cats-btn { min-width: 210px; padding: 0 15px; letter-spacing: 1px; }
  .hd-link { padding: 0 10px; letter-spacing: .8px; }
  .hd-mini { padding: 0 9px; }
  .hd-top-item { padding: 0 11px; }
}
@media (max-width: 1160px) {
  .hd-announce { display: none; }
  .hd-mini span { display: none; }         /* icon + badge only */
  .hd-mini em { transform: translateY(-8px); }
}

/* ============================================================
   CHAT WIDGET POLISH — hidden by default, opens on click only
   ============================================================ */
.chatw-panel { border-radius: 20px; box-shadow: 0 24px 70px rgba(158,40,64,.28); }
.chatw-head { padding: 14px 16px; display: flex; align-items: center; gap: 11px; }
.chatw-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.45); display: inline-flex; align-items: center; justify-content: center; flex: none;
}
.chatw-close { font-size: 15px; width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: background .15s; }
.chatw-close:hover { background: rgba(255,255,255,.16); }
.chatw-btn svg { transition: transform .2s; }
.chatw.open .chatw-btn { background: var(--pink-deep); }
.chatw-msgs { scroll-behavior: smooth; }
.chatw-bubble { box-shadow: 0 1px 3px rgba(0,0,0,.05); }

/* ============================================================
   [hidden] FIX — CSS display rules must never beat the hidden attr
   (this was why the chat panel & start form stayed visible)
   ============================================================ */
[hidden] { display: none !important; }

/* ============================================================
   MINI-CART SIDEBAR POPUP
   ============================================================ */
.mcart-overlay {
  position: fixed; inset: 0; background: rgba(27,27,27,.45); z-index: 960;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.mcart {
  position: fixed; top: 0; bottom: 0; right: 0; width: min(390px, 94vw); z-index: 970;
  background: #fff; box-shadow: -18px 0 50px rgba(0,0,0,.18);
  transform: translateX(103%); transition: transform .3s cubic-bezier(.2,.8,.25,1);
  display: flex; flex-direction: column;
}
body.mcart-open { overflow: hidden; }
body.mcart-open .mcart { transform: none; }
body.mcart-open .mcart-overlay { opacity: 1; pointer-events: auto; }
.mcart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--line); background: var(--blush); flex: none;
}
.mcart-head b { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600; color: var(--pink-deep); }
.mcart-head .ic { color: var(--pink); }
.mcart-count {
  font-style: normal; background: var(--pink); color: #fff; font-size: 11px; font-weight: 600;
  min-width: 20px; height: 20px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; padding: 0 6px;
}
.mcart-close { width: 32px; height: 32px; border-radius: 50%; color: var(--pink-deep); font-size: 15px; display: inline-flex; align-items: center; justify-content: center; transition: background .15s; }
.mcart-close:hover { background: #fff; }
.mcart-items { flex: 1; overflow-y: auto; padding: 8px 20px; }
.mcart-item { display: flex; gap: 13px; align-items: center; padding: 14px 0; border-bottom: 1px dashed #F0E2DF; }
.mcart-item img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; background: var(--blush); flex: none; }
.mcart-item-info { flex: 1; min-width: 0; }
.mcart-item-name { font-size: 13.5px; font-weight: 500; display: block; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mcart-item-name:hover { color: var(--pink); }
.mcart-item-meta { font-size: 12px; color: var(--gray); margin-top: 2px; }
.mcart-item-meta b { color: var(--pink); font-weight: 600; }
.mcart-item-rm {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); color: var(--gray-2);
  display: inline-flex; align-items: center; justify-content: center; flex: none; font-size: 12px; transition: all .15s;
}
.mcart-item-rm:hover { color: var(--red); border-color: var(--red); }
.mcart-empty { text-align: center; color: var(--gray); padding: 60px 10px; font-size: 14px; }
.mcart-empty .ic { color: var(--pink); opacity: .4; display: block; margin: 0 auto 10px; }
.mcart-foot { border-top: 1px solid var(--line); padding: 16px 20px 18px; flex: none; background: #FFFDFC; }
.mcart-subtotal { display: flex; justify-content: space-between; align-items: center; font-size: 14.5px; margin-bottom: 6px; }
.mcart-subtotal b { color: var(--pink); font-size: 19px; }
.mcart-note { display: flex; align-items: center; gap: 7px; color: var(--gray); font-size: 12px; margin-bottom: 13px; }
.mcart-note .ic { color: var(--pink); }
.mcart-btns { display: grid; grid-template-columns: 1fr 1.2fr; gap: 10px; }
.mcart-btns .btn { padding: 12px 10px; font-size: 12px; }

/* ============================================================
   PRODUCT CARD v2 — category, price row + round cart button
   ============================================================ */
.p-card { background: #fff; border: 1px solid #F5E9E6; border-radius: 14px; overflow: hidden; transition: all .22s; display: flex; flex-direction: column; }
.p-card:hover { border-color: #F0CDD5; box-shadow: 0 14px 34px rgba(158,40,64,.12); transform: translateY(-4px); }
.p-media { border-radius: 0; margin-bottom: 0; aspect-ratio: 1/1; }
.p-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 3px; flex: 1; }
.p-cat { font-size: 10.5px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); }
.p-cat:hover { color: var(--pink); }
.p-name {
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.7em;
}
.p-name a {
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.p-name a:hover { color: var(--pink); }
.p-bottom { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 6px; }
.p-cartbtn {
  width: 38px; height: 38px; border-radius: 50%; background: var(--pink-soft); color: var(--pink-deep);
  border: 1.5px solid #F3C7D0; display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s; flex: none;
}
.p-cartbtn:hover { background: var(--pink); color: #fff; border-color: var(--pink); transform: scale(1.1); }
.p-rating { padding: 0 0 2px; }
.p-card .btn-block { margin: 8px 0 2px; }
@media (max-width: 620px) { .p-body { padding: 10px 11px 12px; } .p-cartbtn { width: 34px; height: 34px; } }

/* checkout summary: remove item button */
.co-item { position: relative; }
.co-item-rm { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line); color: var(--gray-2); font-size: 11px; display: inline-flex; align-items: center; justify-content: center; flex: none; transition: all .15s; }
.co-item-rm:hover { color: var(--red); border-color: var(--red); }
.coupon-mini .coupon-form { display: flex; gap: 8px; }
.coupon-mini .coupon-form input { flex: 1; width: auto; background: #fff; border: 1.5px solid var(--line); border-radius: 8px; padding: 9px 12px; outline: none; }
.coupon-mini .coupon-form input:focus { border-color: var(--pink); }

/* ══════════ Color variants & premium product options ══════════ */
.pd-label b.js-color-name { color: var(--pink); font-weight: 600; }
.swatch { position: relative; }
.swatch[data-out] { opacity: .45; }
.swatch[data-out]::after { content: '✕'; position: absolute; inset: 0; display: grid; place-items: center; font-size: 11px; font-weight: 700; color: #8d2f2f; }
.size-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.size-pill { border: 1.5px solid var(--line); border-radius: 10px; padding: 7px 15px; background: #fff; cursor: pointer; font-size: 13px; font-family: inherit; color: #4a4a4a; transition: all .15s; }
.size-pill:hover { border-color: var(--pink); }
.size-pill.active { border-color: var(--pink); color: var(--pink); background: var(--pink-soft); font-weight: 600; }
.tag-chips { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 16px; }
.tag-chip { font-size: 11.5px; letter-spacing: .4px; padding: 5px 12px; border-radius: 999px; background: var(--pink-soft); color: var(--pink); text-decoration: none; border: 1px solid transparent; transition: all .15s; }
.tag-chip:hover { border-color: var(--pink); }
.video-embed { position: relative; padding-top: 56.25%; border-radius: 16px; overflow: hidden; max-width: 840px; box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Image swatches — variant photo replaces the colour dot */
.color-swatches { align-items: center; }
.swatch.swatch-img { width: 46px; height: 46px; border-radius: 10px; padding: 0; overflow: hidden; background: #fff; border: 1.5px solid var(--line); }
.swatch.swatch-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.swatch.swatch-img.active { border-color: var(--pink); box-shadow: 0 0 0 2px var(--pink); }
.swatch.swatch-img[data-out] img { filter: grayscale(.8); }

/* ══════════ Mobile grid fix — .grid-4 never collapsed before ══════════ */
@media (max-width: 1080px) { .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* Per-section PHONE columns (admin: Homepage Sections ▸ Mobile columns) */
@media (max-width: 620px) {
  .mgrid-1 { grid-template-columns: 1fr !important; }
  .mgrid-2 { grid-template-columns: repeat(2, 1fr) !important; }
  .mgrid-3 { grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; }
  .mgrid-4 { grid-template-columns: repeat(4, 1fr) !important; gap: 8px !important; }
  .mgrid-3 .p-body, .mgrid-4 .p-body { padding: 8px 8px 10px; }
  .mgrid-3 .p-name, .mgrid-4 .p-name { font-size: 12px; }
  .mgrid-4 .p-cartbtn { width: 26px; height: 26px; }
  .mgrid-1 .p-card img { aspect-ratio: 5/4; }
}

/* ══════════ Hero — phone-perfect ══════════ */
@media (max-width: 620px) {
  .hero-single { overflow: hidden; }
  .hero-deco-1 { width: 190px; height: 190px; top: -70px; right: -40px; }
  .hero-deco-2 { width: 150px; height: 150px; bottom: -60px; left: -40px; }
  .hero-spark { display: none; }
  .hero-single .hero-inner { padding: 20px 0 6px; gap: 14px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 2px; }
  .hero-single .hero-title { font-size: clamp(30px, 9.5vw, 40px); line-height: 1.08; margin-bottom: 12px; }
  .hero-sub { font-size: 13.5px; max-width: 92%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; gap: 10px; margin-top: 16px; }
  .hero-actions .btn-lg { padding: 12px 20px; font-size: 13px; }
  .hero-video { font-size: 12.5px; }
  .hero-video svg { width: 28px; height: 28px; }
  .hero-mini-stats { justify-content: center; gap: 9px; margin-top: 16px; font-size: 11.5px; }
  .hero-stage { max-width: min(92vw, 400px); padding: 8px 6px 20px; margin: 0 auto; }
  .hero-single .hero-card img { aspect-ratio: 4/3; }
  .hero-card { border-radius: 18px; }
  .hero-chip { font-size: 10.5px; padding: 6px 10px; border-radius: 10px; }
  .hero-chip.chip-a { top: 8px; left: 8px; }
  .hero-chip.chip-b { bottom: 8px; right: 8px; }
  .hero-ring, .hero-glow { transform: scale(.8); }
}
@media (max-width: 380px) {
  .hero-single .hero-title { font-size: 28px; }
  .hero-mini-stats i { display: none; }
}

.hd-actions { display: flex; align-items: center; gap: 8px; flex: none; }

/* ══════════ HERO BANNER CAROUSEL & ANIMATIONS (FIXED OVERLAY GRID) ══════════ */
.hero-carousel { position: relative; }
.hero-slides-wrap {
  display: grid;
  grid-template-areas: "heroslide";
  position: relative;
  width: 100%;
}
.hero-carousel .hero-slide {
  grid-area: heroslide;
  display: none !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-in-out;
  width: 100%;
}
.hero-carousel .hero-slide.active {
  display: block !important;
  opacity: 1;
  visibility: visible;
  animation: heroSlideFade .5s cubic-bezier(.2,.8,.25,1) forwards;
}
@keyframes heroSlideFade {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}
.hero-carousel-dots .hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(158, 40, 64, .25);
  border: none;
  cursor: pointer;
  transition: all .25s;
  padding: 0;
}
.hero-carousel-dots .hero-dot.active {
  background: var(--pink);
  width: 24px;
  border-radius: 5px;
}

/* ══════════ CATEGORIES — Centered, compact, close together ══════════ */
.cat-circles {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: flex-start !important;
  flex-wrap: wrap !important;
  gap: 16px 20px !important;
  padding: 16px 0 10px !important;
  margin: 0 auto !important;
  max-width: 1080px !important;
  width: 100% !important;
}
.cat-circle {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  text-decoration: none !important;
  width: 90px !important;
  flex: 0 0 auto !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  transition: transform .2s ease !important;
}
.cat-circle:hover {
  transform: translateY(-3px) !important;
  background: transparent !important;
  box-shadow: none !important;
}
.cat-circle-img {
  width: 76px !important;
  height: 76px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  background: #FDF4F5 !important;
  border: 2px solid #F0C4CC !important;
  transition: all .22s !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 6px !important;
  box-shadow: 0 4px 12px rgba(158, 40, 64, .08) !important;
}
.cat-circle-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
}
.cat-circle-img.cat-all-img {
  background: #FAF0EE !important;
  color: var(--pink) !important;
  border-color: var(--pink) !important;
}
.cat-circle:hover .cat-circle-img {
  border-color: var(--pink) !important;
  box-shadow: 0 8px 20px rgba(158, 40, 64, .2) !important;
  transform: scale(1.05) !important;
}
.cat-circle:hover .cat-circle-img.cat-all-img {
  background: var(--pink) !important;
  color: #fff !important;
}
.cat-circle-name {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
  text-align: center !important;
  line-height: 1.25 !important;
  display: block !important;
  width: 100% !important;
}

@media (max-width: 620px) {
  .cat-circles {
    gap: 12px 14px !important;
    padding: 12px 0 4px !important;
  }
  .cat-circle {
    width: 76px !important;
  }
  .cat-circle-img {
    width: 62px !important;
    height: 62px !important;
    margin-bottom: 5px !important;
  }
  .cat-circle-name {
    font-size: 11.5px !important;
  }
}

/* ══════════ TIGHT SECTION SPACING & MOBILE PERFECT HERO BANNER ══════════ */
.section { padding: 24px 0 !important; }

@media (max-width: 620px) {
  .section { padding: 14px 0 !important; }
  
  .hero-single { padding: 10px 0 16px; overflow: hidden; }
  .hero-single .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 10px 12px 14px;
  }
  .hero-text { order: 1; width: 100%; text-align: center; }
  .hero-stage { order: 0; width: 100%; max-width: 320px; margin: 0 auto; padding: 0; }
  .hero-single .hero-title {
    font-size: clamp(24px, 7vw, 32px) !important;
    line-height: 1.15;
    margin-bottom: 8px;
  }
  .hero-sub {
    font-size: 12.5px;
    margin-bottom: 14px;
    line-height: 1.35;
  }
  .hero-actions { justify-content: center; margin-top: 8px; }
  .hero-actions .btn-lg { padding: 10px 20px; font-size: 12.5px; }
  .hero-card { border-radius: 14px; }
  .hero-card img { aspect-ratio: 16/10; }
  .hero-ring, .hero-glow { display: none !important; }
  .hero-chip { font-size: 9.5px; padding: 4px 8px; border-radius: 8px; }
}

/* ══════════ CHECKOUT ORDER SUMMARY QTY CONTROLS ══════════ */
.co-item-info-wrap { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.co-qty-ctrl { display: inline-flex; align-items: center; gap: 5px; margin-top: 4px; border: 1px solid var(--line); border-radius: 6px; padding: 2px 4px; background: #fff; width: fit-content; }
.co-qty-btn { width: 22px; height: 22px; border-radius: 4px; border: none; background: #FDF0F3; color: var(--pink); font-weight: 700; font-size: 13px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all .15s; line-height: 1; padding: 0; }
.co-qty-btn:hover { background: var(--pink); color: #fff; }
.co-qty-val { font-size: 12.5px; font-weight: 600; min-width: 16px; text-align: center; color: var(--ink); }

/* ══════════ EXTRA COMPACT VERTICAL PAYMENT OPTIONS ══════════ */
.pay-options-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  width: 100% !important;
}
.pay-option-compact {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 10px !important;
  border: 1.5px solid #F0E4E2 !important;
  border-radius: 7px !important;
  background: #fff !important;
  cursor: pointer !important;
  transition: all .15s ease !important;
}
.pay-option-compact:hover {
  border-color: #E8B4C0 !important;
}
.pay-option-compact:has(input:checked) {
  border-color: var(--pink) !important;
  background: #FDF4F5 !important;
}
.pay-option-compact input[type="radio"] {
  accent-color: var(--pink) !important;
  width: 15px !important;
  height: 15px !important;
  margin: 0 !important;
  flex: none !important;
  cursor: pointer !important;
}
.pay-logo-bkash-sm {
  height: 18px !important;
  width: auto !important;
  object-fit: contain !important;
  flex: none !important;
}
.pay-ic-sm {
  color: var(--pink) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: none !important;
  width: 18px !important;
}
.opt-title-sm {
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  line-height: 1.2 !important;
}

/* ══════════ REVIEW PHOTOS & RESPONSIVE GRID STYLING ══════════ */
.reviews-split-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 36px !important;
  align-items: start !important;
}

@media (max-width: 900px) {
  .reviews-split-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

.review-photos {
  display: flex !important;
  gap: 10px !important;
  margin-top: 10px !important;
  margin-bottom: 6px !important;
  flex-wrap: wrap !important;
}
.rv-photo-btn {
  width: 72px !important;
  height: 72px !important;
  border-radius: 10px !important;
  border: 1.5px solid var(--line) !important;
  padding: 0 !important;
  background: #fff !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: transform .2s, border-color .2s, box-shadow .2s !important;
  display: inline-block !important;
}
.rv-photo-btn:hover {
  transform: translateY(-2px) scale(1.04) !important;
  border-color: var(--pink) !important;
  box-shadow: 0 6px 16px rgba(210,72,98,.2) !important;
}
/* ══════════ PROMOTIONAL POPUP MODAL & DISTINCT THEMES ══════════ */
.promo-popup-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 10, 15, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: promoFadeIn .3s ease-out;
}
@keyframes promoFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.promo-popup-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  animation: promoSlideUp .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes promoSlideUp {
  from { transform: translateY(40px) scale(0.92); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.promo-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  color: #333;
  border: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.promo-close-btn:hover {
  background: #D24862;
  color: #fff;
  transform: rotate(90deg) scale(1.1);
}

.promo-popup-img img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  display: block;
}

.promo-popup-content {
  padding: 24px 26px;
  text-align: center;
}

.promo-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}

.promo-subtitle {
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.promo-coupon-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 18px;
}

.promo-code-text {
  font-family: monospace;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
}

.promo-copy-btn {
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}

.promo-action-btn {
  display: block;
  width: 100%;
  padding: 14px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 14px;
  text-decoration: none !important;
  text-align: center;
  transition: all .25s;
}

/* ══════════ THEME 1: LUXURY GOLD ══════════ */
.promo-theme-luxury_gold {
  background: #FFFDF8;
  border: 2px solid #E5C583;
  box-shadow: 0 25px 70px rgba(197, 160, 89, 0.3);
}
.promo-gold-header {
  background: linear-gradient(135deg, #1C1917 0%, #2D2723 100%);
  color: #E5C583;
  padding: 20px 24px 16px;
  text-align: center;
  border-bottom: 2px solid #E5C583;
}
.promo-gold-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #F3E5AB;
  text-transform: uppercase;
}
.promo-gold-sub {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: #C5A059;
  margin-top: 2px;
}
.promo-theme-luxury_gold .promo-title {
  color: #2D2723;
  font-family: 'Playfair Display', serif;
}
.promo-theme-luxury_gold .promo-subtitle {
  color: #665c54;
}
.promo-gold-coupon {
  background: #FDF9F0;
  border: 1.5px dashed #C5A059;
}
.promo-gold-coupon .promo-code-text {
  color: #8C6B28;
}
.promo-gold-coupon .promo-copy-btn {
  background: #C5A059;
  color: #ffffff;
}
.promo-gold-coupon .promo-copy-btn:hover {
  background: #A3803C;
}
.promo-gold-btn {
  background: linear-gradient(135deg, #C5A059 0%, #9B7837 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}
.promo-gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(197, 160, 89, 0.5);
}

/* ══════════ THEME 2: GIFT COUPON (VOUCHER TICKET) ══════════ */
.promo-theme-gift_coupon {
  background: #FFFFFF;
  border: 2px solid #F5C6D0;
}
.promo-ticket-header {
  background: linear-gradient(135deg, #D24862 0%, #9E263D 100%);
  color: #ffffff;
  padding: 24px;
  text-align: center;
  position: relative;
}
.promo-ticket-icon {
  font-size: 38px;
  margin-bottom: 4px;
}
.promo-ticket-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  background: rgba(255,255,255,0.2);
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
}
.promo-ticket-divider {
  height: 12px;
  background-image: radial-gradient(circle at 10px 6px, transparent 6px, #ffffff 6px);
  background-size: 20px 12px;
  margin-top: -6px;
}
.promo-theme-gift_coupon .promo-title {
  color: #8E2A3E;
}
.promo-theme-gift_coupon .promo-subtitle {
  color: #666;
}
.promo-ticket-coupon {
  background: #FFF5F7;
  border: 2px dashed #D24862;
}
.promo-ticket-coupon .promo-code-text {
  color: #D24862;
}
.promo-ticket-coupon .promo-copy-btn {
  background: #D24862;
  color: #ffffff;
}
.promo-ticket-coupon .promo-copy-btn:hover {
  background: #B0344B;
}
.promo-theme-gift_coupon .promo-action-btn {
  background: linear-gradient(135deg, #D24862 0%, #9E263D 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(210, 72, 98, 0.35);
}
.promo-theme-gift_coupon .promo-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(210, 72, 98, 0.45);
}

/* ══════════ THEME 3: FLASH SALE (HIGH ENERGY RED) ══════════ */
.promo-theme-flash_sale {
  background: #140306;
  color: #ffffff;
  border: 2px solid #FF3B60;
  box-shadow: 0 25px 70px rgba(255, 59, 96, 0.3);
}
.promo-flash-header {
  background: linear-gradient(135deg, #FF3B60 0%, #C01B3B 100%);
  padding: 24px;
  text-align: center;
}
.promo-flash-tag {
  background: #000000;
  color: #FF3B60;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
}
.promo-flash-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}
.promo-theme-flash_sale .promo-subtitle {
  color: #ddd;
}
.promo-flash-coupon {
  background: rgba(255, 59, 96, 0.1);
  border: 1.5px dashed #FF3B60;
  flex-direction: column;
  gap: 6px;
}
.promo-flash-coupon .promo-code-text {
  color: #FF6B87;
  font-size: 22px;
}
.promo-flash-coupon .promo-copy-btn {
  background: #FF3B60;
  color: #ffffff;
  width: 100%;
}
.promo-flash-coupon .promo-copy-btn:hover {
  background: #E0284C;
}
.promo-flash-btn {
  background: linear-gradient(135deg, #FF3B60 0%, #FF6584 100%);
  color: #ffffff !important;
  font-size: 15px;
  box-shadow: 0 6px 24px rgba(255, 59, 96, 0.5);
}
.promo-flash-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 59, 96, 0.65);
}
.promo-theme-flash_sale .promo-close-btn {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* ══════════ THEME 4: DARK GLASSMORPHISM ══════════ */
.promo-theme-dark_glass {
  background: rgba(18, 16, 22, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.promo-glass-badge {
  background: rgba(210, 72, 98, 0.2);
  color: #FF7B95;
  border: 1px solid rgba(210, 72, 98, 0.4);
}
.promo-theme-dark_glass .promo-title {
  color: #ffffff;
}
.promo-theme-dark_glass .promo-subtitle {
  color: #b0b0b8;
}
.promo-glass-coupon {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px dashed rgba(255, 255, 255, 0.25);
}
.promo-glass-coupon .promo-code-text {
  color: #FF7B95;
}
.promo-glass-coupon .promo-copy-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.promo-glass-coupon .promo-copy-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
.promo-glass-btn {
  background: linear-gradient(135deg, #D24862 0%, #7E2034 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(210, 72, 98, 0.3);
}
.promo-glass-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(210, 72, 98, 0.45);
}
.promo-theme-dark_glass .promo-close-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* ══════════ THEME 5: SPIN THE WHEEL (EXACT REFERENCE DESIGN) ══════════ */
.promo-theme-spin_wheel {
  background: #ffffff;
  max-width: 720px !important;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.45);
  border: none;
}

.promo-spin-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 380px;
}

.promo-spin-left {
  background: #141414;
  color: #ffffff;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.promo-spin-header {
  position: relative;
  margin-bottom: 14px;
}

.promo-bolt-icon {
  position: absolute;
  top: -24px;
  right: 10px;
  font-size: 42px;
  color: #D24862;
  line-height: 1;
}

.promo-title-top {
  font-size: 34px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.05;
  text-transform: uppercase;
}

.promo-title-bottom {
  font-size: 34px;
  font-weight: 900;
  color: #D24862;
  letter-spacing: 1px;
  line-height: 1.05;
  text-transform: uppercase;
}

.promo-spin-subtitle {
  font-size: 13.5px;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 20px;
}

.promo-spin-input {
  width: 100%;
  padding: 13px 18px;
  border-radius: 10px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #111111;
  font-size: 14px;
  margin-bottom: 14px;
  outline: none;
  font-weight: 500;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}
.promo-spin-input::placeholder { color: #aaaaaa; }

.promo-spin-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #D24862;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1.5px;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(210, 72, 98, 0.4);
  transition: background .2s, transform .15s;
}
.promo-spin-btn:hover {
  background: #b53850;
  transform: translateY(-1px);
}

.promo-spin-right {
  background: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wheel-pointer {
  position: absolute;
  top: 14px;
  z-index: 10;
  font-size: 28px;
  color: #D24862;
  text-shadow: 0 3px 6px rgba(0,0,0,0.25);
  line-height: 1;
}

.wheel-container {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  box-shadow: 0 10px 35px rgba(0,0,0,0.18);
  transform-origin: center center;
}

.spin-result-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 10, 15, 0.85);
  backdrop-filter: blur(8px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: promoFadeIn .3s ease-out;
}

.spin-result-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: promoSlideUp .35s ease-out;
}

@media (max-width: 650px) {
  .promo-spin-wrapper {
    grid-template-columns: 1fr !important;
  }
  .promo-spin-right {
    padding: 20px 10px 28px !important;
  }
  .wheel-container {
    width: 240px !important;
    height: 240px !important;
  }
  .wheel-container canvas {
    width: 240px !important;
    height: 240px !important;
  }
}

/* ============================================================
   Single Product Page BOGO Offer Box
   ============================================================ */
.pd-bogo-box {
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #FFF0F3 0%, #FFFFFF 60%, #FFF5F7 100%);
  border: 1.5px dashed var(--pink);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(210, 72, 98, 0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}
.pd-bogo-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--pink-deep), var(--pink));
  border-radius: 4px 0 0 4px;
}
.pd-bogo-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(210, 72, 98, 0.15);
  border-color: var(--pink-deep);
}
.pd-bogo-icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFF0F3;
  border: 1px solid #F9D9DF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(210, 72, 98, 0.1);
  animation: giftPulse 2.5s infinite ease-in-out;
}
@keyframes giftPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.pd-bogo-text {
  flex: 1;
  min-width: 0;
}
.pd-bogo-title {
  color: var(--pink-deep);
  font-weight: 700;
  font-size: 14px;
  display: block;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.pd-bogo-sub {
  color: #555555;
  font-size: 12.5px;
  display: block;
  margin-top: 3px;
  line-height: 1.45;
}
.pd-bogo-sub b {
  color: var(--pink-deep);
  font-weight: 700;
}

/* ============================================================
   Flash Sale Live Countdown Timer & Urgency Badges (Feature #2)
   ============================================================ */
.pd-flash-timer-box {
  width: 100%;
  max-width: 460px;
  margin-top: 14px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #141414 0%, #2A181C 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  box-sizing: border-box;
}
.pd-flash-head span {
  font-size: 13px;
  font-weight: 700;
  color: #FF5A78;
  display: block;
  letter-spacing: 0.02em;
}
.pd-flash-head small {
  font-size: 11px;
  color: #CCCCCC;
  display: block;
}
.pd-timer {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pd-tunit {
  background: #252525;
  border: 1px solid #3D3D3D;
  border-radius: 6px;
  padding: 3px 7px;
  text-align: center;
  min-width: 32px;
}
.pd-tunit b {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
  line-height: 1.1;
}
.pd-tunit small {
  font-size: 9px;
  color: #AAAAAA;
  display: block;
  text-transform: uppercase;
}
.pd-tsep {
  font-weight: 700;
  color: #FF5A78;
  font-size: 14px;
}

.pd-urgency-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 14px;
  max-width: 460px;
}
.pd-urgency-pill {
  background: #FFF5F7;
  border: 1px solid #F6CBD4;
  color: #444444;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pd-urgency-pill.low {
  background: #FFF0F3;
  border-color: #F7D4DA;
  color: var(--pink-deep);
  font-weight: 600;
}

/* ============================================================
   Photo Review Incentive Banner (Feature #4)
   ============================================================ */
.pd-review-reward-banner {
  background: linear-gradient(135deg, #FFF0F3 0%, #FFFFFF 100%);
  border: 1.5px dashed var(--pink);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.pd-review-reward-banner .rr-icon {
  font-size: 26px;
  flex-shrink: 0;
}
.pd-review-reward-banner .rr-text b {
  color: var(--pink-deep);
  font-size: 13.5px;
  display: block;
  line-height: 1.35;
}
.pd-review-reward-banner .rr-text span {
  color: #555555;
  font-size: 12px;
  display: block;
  margin-top: 2px;
}

/* ============================================================
   Homepage Middle Promotional Offer Cards Grid
   ============================================================ */
.promo-grid {
  display: grid;
  gap: 20px;
}
.promo-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.promo-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.promo-grid-1 { grid-template-columns: 1fr; }

.promo-card {
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(210, 72, 98, 0.12);
}
.promo-card-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  min-height: 180px;
  box-sizing: border-box;
}
.promo-card-body {
  flex: 1;
  min-width: 0;
  z-index: 2;
  padding-right: 14px;
}
.promo-card-badge {
  background: var(--pink-deep);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.promo-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 6px;
}
.promo-card-sub {
  font-size: 12.5px;
  color: #555555;
  line-height: 1.45;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.promo-card-btn {
  border-radius: 20px;
  font-size: 12px;
  padding: 8px 18px;
}
.promo-card-media {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: rotate(3deg);
  transition: transform 0.3s ease;
}
.promo-card:hover .promo-card-media {
  transform: rotate(0deg) scale(1.05);
}
.promo-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Promo Banner Layout Variations (World-Class Luxury UI) */
.promo-card.style-card_modern {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(210, 72, 98, 0.08);
  border: 1px solid rgba(210, 72, 98, 0.15);
  box-sizing: border-box;
}

.promo-card.style-full_cover {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
}
.promo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 11, 14, 0.82) 0%, rgba(210, 72, 98, 0.5) 100%);
  z-index: 1;
}
.promo-card.style-full_cover .promo-card-in {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  padding: 32px 36px;
  width: 100%;
}
.promo-card.style-full_cover .promo-card-title {
  color: #FFFFFF;
  font-size: clamp(22px, 2.5vw, 32px);
  margin-bottom: 8px;
}
.promo-card.style-full_cover .promo-card-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}
.badge-glass {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.promo-card.style-split_50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.promo-split-text {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.promo-split-media {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.promo-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.promo-card.style-split_50:hover .promo-split-media img {
  transform: scale(1.06);
}

.promo-card.style-glass_overlay {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.promo-glass-box {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 480px;
  box-sizing: border-box;
  text-align: left;
}
.badge-gold {
  background: linear-gradient(135deg, #FFF3D6 0%, #FFE6B0 100%) !important;
  color: #8A5A00 !important;
  border: 1px solid #F0C86C !important;
}

.promo-card.style-minimal_badge {
  border-radius: 16px;
  border: 2px dashed #D24862;
  box-shadow: 0 6px 20px rgba(210, 72, 98, 0.08);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-sizing: border-box;
}

.promo-card.style-neon_dark {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  border: 1px solid #D24862;
}
.neon-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 11, 14, 0.92) 0%, rgba(210, 72, 98, 0.6) 100%);
  z-index: 1;
}
.promo-card.style-neon_dark .promo-card-in {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  padding: 32px 36px;
  width: 100%;
}
.neon-title {
  color: #FFFFFF !important;
  text-shadow: 0 0 14px rgba(210, 72, 98, 0.6);
  font-size: clamp(22px, 2.5vw, 32px);
  margin-bottom: 8px;
}
.badge-neon {
  background: linear-gradient(135deg, #D24862 0%, #9E263D 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(210, 72, 98, 0.4);
}
.promo-ticket-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.promo-ticket-left .ticket-icon {
  font-size: 32px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #FFF0F3;
  border: 1px solid #F9D9DF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-white-pink {
  background: #FFFFFF;
  color: #D24862;
  border: 1px solid #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: all 0.25s;
}
.btn-white-pink:hover {
  background: #FFF0F3;
  color: #B82245;
  transform: translateY(-2px);
}

@media (max-width: 990px) {
  .promo-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 650px) {
  .promo-grid-3, .promo-grid-2 { grid-template-columns: 1fr; }
  .promo-card-in { padding: 18px; min-height: 0; }
  .promo-card-media { width: 95px; height: 95px; }
  .promo-card-title { font-size: 18px; }
}

/* Per-Product Flash Sale & Stock Urgency Offer Card (Ultra Compact & Sleek) */
.pd-prod-offer-card {
  background: linear-gradient(135deg, #FFF4F7 0%, #FFFFFF 100%);
  border: 1px solid #FFCCD7;
  border-radius: 12px;
  padding: 10px 14px;
  margin-top: 10px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(210, 72, 98, 0.05);
  width: 100%;
  box-sizing: border-box;
}
.pd-prod-offer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(210, 72, 98, 0.18);
}
.pd-prod-offer-title {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #B82245;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.pd-prod-offer-title .offer-icon {
  font-size: 13px;
}
.pd-prod-offer-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: #777777;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid rgba(210, 72, 98, 0.12);
}
.pd-prod-offer-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.pd-timer-row {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pd-timer-row .pd-tunit {
  background: #181818;
  border-radius: 6px;
  padding: 3px 7px;
  text-align: center;
  min-width: 30px;
}
.pd-timer-row .pd-tunit b {
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
  display: block;
  line-height: 1.05;
}
.pd-timer-row .pd-tunit small {
  font-size: 8px;
  color: #AAAAAA;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 1px;
}
.pd-timer-row .pd-tsep {
  font-weight: 800;
  color: #D24862;
  font-size: 13px;
}
.pd-prod-offer-stock {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #FFF0F3;
  color: #B82245;
  border: 1px solid #FFC5D3;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 11.5px;
  font-weight: 700;
}
.pd-prod-offer-stock b {
  color: #D24862;
  font-weight: 900;
}
.pd-prod-offer-stock .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D24862;
  flex-shrink: 0;
  animation: pulseDot 1.5s infinite;
}
  border-radius: 8px;
  padding: 5px 9px;
  text-align: center;
  min-width: 36px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.1);
}
.pd-timer-row .pd-tunit b {
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  display: block;
  line-height: 1.1;
}
.pd-timer-row .pd-tunit small {
  font-size: 9px;
  color: #AAAAAA;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}
.pd-timer-row .pd-tsep {
  font-weight: 800;
  color: #D24862;
  font-size: 15px;
}
.pd-prod-offer-stock {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #FFFFFF;
  color: #B82245;
  border: 1px solid #FFC2D1;
  padding: 8px 14px;
  border-radius: 24px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(210, 72, 98, 0.06);
}
.pd-prod-offer-stock b {
  color: #D24862;
  font-weight: 900;
}
.pd-prod-offer-stock .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D24862;
  flex-shrink: 0;
  animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(210, 72, 98, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(210, 72, 98, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(210, 72, 98, 0); }
}

@media (max-width: 540px) {
  .pd-prod-offer-body {
    flex-direction: column;
    align-items: flex-start;
  }
  .pd-prod-offer-stock {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}

/* ============================================================
   Live Order Notification Toast (Social Proof - Premium & Larger)
   ============================================================ */
.sales-pop-toast {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 99998;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F9 100%);
  border: 1.5px solid #FFCCD7;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 14px 40px rgba(210, 72, 98, 0.16);
  display: flex;
  align-items: center;
  gap: 14px;
  width: 370px;
  max-width: 90vw;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
  box-sizing: border-box;
}
.sales-pop-toast.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sales-pop-img {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid #FFD0DC;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.sales-pop-body {
  flex: 1;
  min-width: 0;
}
.sales-pop-user-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}
.sales-pop-user-row .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D24862;
  flex-shrink: 0;
  animation: pulseDot 1.5s infinite;
}
.sales-pop-user {
  font-size: 12px;
  color: #444444;
  margin: 0;
  line-height: 1.3;
}
.sales-pop-user b {
  color: #111111;
  font-weight: 700;
}
.sales-pop-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #B82245;
  margin: 0 0 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}
.sales-pop-title:hover {
  text-decoration: underline;
  color: #D24862;
}
.sales-pop-meta {
  gap: 6px;
}
.sales-pop-meta .badge-verified {
  color: #27ae60;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.sales-pop-close {
  background: none;
  border: none;
  color: #aaaaaa;
  font-size: 14px;
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
  flex-shrink: 0;
  margin-left: -4px;
}
.sales-pop-close:hover {
  color: #D24862;
}

@media (max-width: 600px) {
  .sales-pop-toast {
    bottom: 74px;
    left: 12px;
    right: 12px;
    max-width: none;
  }
}
