@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');


/* ─── TOKENS ─────────────────────────────── */
:root {
  --rose: #c8687a;
  --rose-d: #a04455;
  --rose-l: #f5e0e4;
  --rose-p: #fdf4f5;
  --gold: #c9a96e;
  --gold-l: #f3e8d5;
  --gold-p: #fdf8f0;
  --cream: #faf6f0;
  --warm: #ffffff;
  --warmm: #fdf4f5;
  --ink: #2c2420;
  --text: #3a2f2a;
  --mid: #7a6560;
  --soft: #b0968e;
  --border: #e8ddd8;
  --bsoft: #f0e8e4;
  --white: #fff;
  --green: #4a7c5a;
  --red: #c0392b;
  --fh: 'Playfair Display', Georgia, serif;
  --fb: 'Jost', sans-serif;
  --r4: 4px;
  --r8: 8px;
  --r12: 12px;
  --r20: 20px;
  --r30: 30px;
  --r40: 40px;
  --s1: 0 2px 12px rgba(44, 36, 32, .07);
  --s2: 0 6px 28px rgba(44, 36, 32, .11);
  --s3: 0 16px 56px rgba(44, 36, 32, .15);
  --tr: .24s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--fb);
  color: var(--text);
  background: var(--warm);
  font-size: 14px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased
}

a {
  text-decoration: none;
  color: inherit
}

img {
  display: block;
  max-width: 100%
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--fb)
}

/* ─── PAGE SWITCHER ─────────────────────── */
.vpage {
  display: none
}

.vpage.active {
  display: block
}

/* ─── POPUP ─────────────────────────────── */
#pop-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(44, 36, 32, .58);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s ease;
}

#pop-box {
  background: var(--white);
  border-radius: var(--r20);
  overflow: hidden;
  max-width: 520px;
  width: 92%;
  box-shadow: var(--s3);
  transform: scale(.88) translateY(20px);
  opacity: 0;
  position: relative;
  transition: all .45s cubic-bezier(.34, 1.56, .64, 1) .1s;
}

#pop-overlay.active {
  opacity: 1;
}

#pop-overlay.active #pop-box {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.pop-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: var(--tr);
}

.pop-close:hover {
  background: rgba(255, 255, 255, 1);
  color: var(--rose-d)
}

.pop-top {
  background: linear-gradient(135deg, #c8687a 0%, #a04455 55%, #7a2d40 100%);
  padding: 34px 28px 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pop-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='50' height='50' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='25' r='20' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

.pop-pill {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  position: relative;
}

.pop-top h2 {
  font-family: var(--fh);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  position: relative;
  margin-bottom: 6px
}

.pop-top h2 em {
  color: var(--gold);
  font-style: italic
}

.pop-top p {
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  position: relative
}

.pop-body {
  padding: 22px 28px 26px
}

.pop-lbl {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 12px
}

.cd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px
}

.cd-box {
  background: var(--rose-p);
  border: 1.5px solid var(--rose-l);
  border-radius: var(--r12);
  padding: 12px 6px;
  text-align: center
}

.cd-box .n {
  font-family: var(--fh);
  font-size: 30px;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
  display: block;
  margin-bottom: 3px
}

.cd-box .l {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--soft)
}

.coupon-row {
  background: var(--gold-p);
  border: 1.5px dashed var(--gold);
  border-radius: var(--r8);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px
}

.coupon-row span {
  font-size: 12px;
  color: var(--mid)
}

.coupon-row strong {
  font-size: 15px;
  font-weight: 700;
  color: #7a5010;
  letter-spacing: 2px
}

.coupon-row button {
  font-size: 11px;
  font-weight: 700;
  color: #7a5010;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--gold);
  background: #fff;
  transition: var(--tr);
  cursor: pointer
}

.coupon-row button:hover {
  background: var(--gold);
  color: #fff
}

.btn-pop {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: var(--r40);
  background: linear-gradient(135deg, var(--rose), var(--rose-d));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: var(--tr);
  box-shadow: 0 6px 20px rgba(200, 104, 122, .35);
  cursor: pointer
}

.btn-pop:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 104, 122, .45)
}

.pop-skip {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
  color: var(--soft);
  cursor: pointer;
  transition: var(--tr)
}

.pop-skip:hover {
  color: var(--rose)
}

.header-logo-link {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

/* ─── ANNOUNCE BAR ───────────────────────── */
.ann-bar {
  background: var(--ink);
  padding: 8px 0;
  overflow: hidden
}

.ann-track {
  display: flex;
  gap: 80px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content
}

.ann-track span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: .5px;
  color: rgba(255, 255, 255, .82)
}

.ann-track span::before {
  content: '✦';
  color: var(--gold);
  font-size: 9px
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 14px rgba(44, 36, 32, .06);
}

.pagination .active span {
  background-color: #c8687a !important;
  border-color: #c8687a !important;
}

.pagination>li>a {
  color: #c8687a !important;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  height: 66px;
  gap: 10px
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-d));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--fh);
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
  flex-shrink: 0
}

.logo-name {
  font-family: var(--fh);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto
}

.nav-links a {
  display: block;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--mid);
  border-radius: var(--r8);
  transition: var(--tr);
  position: relative
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rose)
}

.nav-links a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--rose);
  transition: width var(--tr);
  margin-top: 2px;
  border-radius: 2px
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%
}

.nav-links .has-drop {
  position: relative
}

.nav-links .has-drop .drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r12);
  box-shadow: var(--s2);
  padding: 8px;
  min-width: 190px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--tr);
  z-index: 300;
}

.nav-links .has-drop:hover .drop {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0)
}

.nav-links .has-drop .drop a {
  display: block;
  padding: 9px 14px;
  font-size: 12px;
  letter-spacing: .3px;
  text-transform: none;
  border-radius: var(--r8)
}

.nav-links .has-drop {
  position: relative;
}

.nav-links .has-drop:hover .drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links .drop {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--s2);
  padding: 12px 0;
  border-radius: var(--r8);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--tr);
}

.nav-links .drop a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 13px;
  transition: var(--tr);
}

.nav-links .drop a:hover {
  background: var(--rose-p);
  color: var(--rose);
}

.sell-end-banner {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  padding: 0 10px;
}

.sell-end-pup {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  background: linear-gradient(120deg, #ffe8ec 0%, #fecfef 50%, #ffd6b3 100%);
  border-radius: 20px;
}

.sell-end-text h2 {
  font-family: var(--fh);
  font-size: 25px;
  font-weight: 700;
  color: #b3450f;
  line-height: 1.2;
  margin: 0;
}

.sell-end-timer {
  display: flex;
  gap: 10px;
  align-items: center;
}

.sell-end-t-box {
  background: #fff;
  border-radius: var(--r12);
  padding: 5px 10px;
  text-align: center;
  box-shadow: var(--s1);
  min-width: 50px;
}

.sell-end-t-box .tnn {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
  display: block;
}

.sell-end-t-box .tll {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--soft);
}

.nav-search {
  flex: 1;
  max-width: 280px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  padding: 0;
  transition: var(--tr)
}

.nav-search:focus-within {
  border-color: var(--rose);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 104, 122, .12)
}

.nav-search input {
  border: none;
  background: transparent;
  flex: 1;
  font-size: 13px;
  outline: none;
  color: var(--text)
}

.nav-search svg {
  width: 14px;
  height: 14px;
  stroke: var(--soft);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 2px
}

.nav-act {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  border-radius: var(--r8);
  font-size: 12px;
  font-weight: 500;
  color: var(--mid);
  transition: var(--tr);
  position: relative;
  cursor: pointer
}

.nav-act:hover {
  color: var(--rose);
  background: var(--rose-p)
}

.nav-act svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8
}

.cart-cnt {
  position: absolute;
  top: 3px;
  right: 5px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px
}

/* ─── OFFERS MARQUEE ─────────────────────── */
.offers-bar {
  background: var(--ink);
  padding: 12px 0;
  overflow: hidden
}

.offers-track {
  display: flex;
  gap: 60px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  width: max-content
}

.offer-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, .82);
  font-weight: 500
}

.offer-badge {
  background: var(--rose);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .8px;
  padding: 2px 8px;
  border-radius: 10px
}

.offer-sep {
  color: var(--gold);
  font-size: 9px
}

/* ─── HERO SLIDER ────────────────────────── */
.hero-slider {
  position: relative;
  overflow: hidden
}

.slide {
  display: none;
  min-height: 460px;
  position: relative;
  align-items: center
}

.slide.active {
  display: flex
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center
}

.slide-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(44, 36, 32, .65) 0%, rgba(44, 36, 32, .08) 75%, transparent 100%)
}

.slide-cnt {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 48px;
  width: 100%
}

.stag {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px
}

.slide-cnt h1 {
  font-family: var(--fh);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
  max-width: 480px
}

.slide-cnt h1 em {
  color: var(--gold);
  font-style: italic
}

.slide-cnt p {
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  margin-bottom: 26px;
  max-width: 380px
}

.slide-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btn-hero {
  padding: 13px 28px;
  border-radius: var(--r40);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--tr);
  cursor: pointer
}

.btn-h1 {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 6px 22px rgba(200, 104, 122, .4)
}

.btn-h1:hover {
  background: var(--rose-d);
  transform: translateY(-2px)
}

.btn-h2 {
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: #fff
}

.btn-h2:hover {
  background: rgba(255, 255, 255, .25)
}

.sl-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3
}

.sl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: var(--tr)
}

.sl-dot.active {
  background: #fff;
  width: 22px;
  border-radius: 4px
}

.sl-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  font-size: 20px;
  transition: var(--tr)
}

.sl-arr:hover {
  background: rgba(255, 255, 255, .35)
}

.sl-prev {
  left: 18px
}

.sl-next {
  right: 18px
}

/* ─── SUMMER SALE BANNER ─────────────────── */
.summer-banner {
  background: linear-gradient(120deg, #ffe8ec 0%, #fecfef 50%, #ffd6b3 100%);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}

.coupon-slide.active {
  opacity: 1 !important;
  z-index: 1 !important;
}

.summer-inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px
}

.summer-text h2 {
  font-family: serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 4px
}

.summer-text h2 span {
  color: var(--rose-d);
  font-family: 'Jost';
}

.summer-text p {
  font-size: 14px;
  color: var(--mid)
}

.summer-timer {
  display: flex;
  gap: 10px;
  align-items: center
}

.t-box {
  background: #fff;
  border-radius: var(--r12);
  padding: 10px 16px;
  text-align: center;
  box-shadow: var(--s1);
  min-width: 64px
}

.t-box .tn {
  font-family: var(--fh);
  font-size: 26px;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
  display: block
}

.t-box .tl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--soft)
}

.t-sep {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 700;
  color: var(--rose)
}

.summer-badge {
  background: var(--rose-d);
  color: #fff;
  border-radius: var(--r12);
  padding: 18px 24px;
  text-align: center;
  min-width: 120px
}

.summer-badge .pct {
  font-family: var(--fh);
  font-size: 38px;
  font-weight: 700;
  line-height: 1
}

.summer-badge p {
  font-size: 12px;
  font-weight: 500;
  opacity: .85
}

/* ─── TRUST BAR ─────────────────────────── */
.trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  margin-bottom: 0;
}

.list-main {
  margin-bottom: 20px;
}

.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose-p);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0
}

.trust-item h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1px
}

.trust-item p {
  font-size: 11px;
  color: var(--mid)
}

/* ─── CAT CIRCLES ────────────────────────── */
.cat-section {
  padding: 44px 0 32px
}

.cat-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  overflow: hidden
}

.cat-grid {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap
}

.cat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  transition: var(--tr);
  text-decoration: none
}

.cat-circle:hover {
  transform: translateY(-4px)
}

.cat-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  transition: border-color var(--tr), box-shadow var(--tr)
}

.cat-circle:hover .cat-img {
  border-color: var(--rose);
  box-shadow: 0 6px 18px rgba(200, 104, 122, .2)
}

.cat-nm {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid);
  text-align: center
}

.cat-circle:hover .cat-nm {
  color: var(--rose)
}

/* ─── SECTION HEAD ───────────────────────── */
.sec-wrap {
  max-width: 1280px;
  margin: 20px auto;
  padding: 0 24px
}

.sec-head {
  text-align: center;
  margin-bottom: 28px
}

.eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 6px
}

.sec-head h2 {
  font-family: var(--fh);
  font-size: 30px;
  font-weight: 700;
  color: var(--ink)
}

.sec-head h2 em {
  font-style: italic;
  color: var(--rose)
}

.sec-div {
  width: 56px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 2px
}

/* ─── PRODUCT GRID ───────────────────────── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.pcard {
  background: var(--white);
  border-radius: var(--r12);
  border: 1px solid var(--bsoft);
  overflow: hidden;
  transition: var(--tr);
  position: relative
}

.pcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--s2);
  border-color: var(--rose-l)
}

.card-img {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  /* aspect-ratio: 3/4 */
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.card-img .img2 {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .4s
}

.card-img .img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.pcard:hover .card-img img {
  transform: scale(1.06)
}

.pcard:hover .card-img .img2 {
  opacity: 1
}

.cbadge {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 2;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 3px 9px;
  border-radius: 10px;
  color: #fff
}

.cbadge.sale {
  background: var(--red)
}

.cbadge.special {
  background: linear-gradient(135deg, var(--gold), #9a6820)
}

.cactions {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--tr)
}

.pcard:hover .cactions {
  opacity: 1;
  transform: translateX(0)
}

.cact-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tr)
}

.cact-btn:hover {
  background: var(--rose);
  border-color: var(--rose)
}

.cact-btn:disabled {
  background: var(--bsoft);
  cursor: not-allowed;
  opacity: 0.7;
}

.cact-btn.added svg {
  fill: var(--rose);
  stroke: var(--rose);
}

.cact-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--mid);
  fill: none;
  stroke-width: 1.8
}

.cact-btn:hover svg {
  stroke: #fff
}

.qadd {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(44, 36, 32, .82);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 11px;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(100%);
  transition: var(--tr);
  cursor: pointer;
  border: none;
  width: 100%;
  font-family: var(--fb)
}

.qadd:disabled {
  background: var(--soft);
  cursor: not-allowed;
  opacity: 1;
}

.pcard:hover .qadd {
  opacity: 1;
  transform: translateY(0)
}

.qadd:hover {
  background: var(--rose)
}

.cbody {
  padding: 12px 13px 14px
}

.ccat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 3px
}

.cname {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.cname a {
  color: inherit
}

.cname a:hover {
  color: var(--rose)
}

.cstars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 7px
}

.stars {
  color: var(--gold);
  font-size: 11px
}

.rcnt {
  font-size: 11px;
  color: var(--soft)
}

.cprice {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap
}

.psale {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--rose-d)
}

.porig {
  font-size: 12px;
  color: var(--soft);
  text-decoration: line-through
}

.psave {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  background: #e8f5ee;
  padding: 2px 5px;
  border-radius: 8px
}

/* ─── CAROUSEL ───────────────────────────── */
.carousel {
  position: relative
}

.cr-inner {
  overflow: hidden
}

.cr-track {
  display: flex;
  transition: transform .42s cubic-bezier(.4, 0, .2, 1)
}

.cr-track .pcard {
  flex: 0 0 calc(25% - 14px);
  margin-right: 18px
}

.cr-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: var(--s1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
  color: var(--mid);
  transition: var(--tr)
}

.cr-btn:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose)
}

.cr-prev {
  left: -18px
}

.cr-next {
  right: -18px
}

.cr-dots {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-top: 18px
}

.cr-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--tr)
}

.cr-dot.active {
  background: var(--rose);
  width: 18px;
  border-radius: 3px
}

/* ─── VIEW ALL ───────────────────────────── */
.va-wrap {
  text-align: center;
  margin-top: 28px
}

.btn-va {
  align-items: center;
  gap: 7px;
  padding: 12px 28px;
  border-radius: var(--r40);
  border: 1.5px solid var(--rose);
  color: var(--rose);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: var(--tr);
  text-align: center;
}

.btn-va:hover {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 6px 20px rgba(200, 104, 122, .3)
}

/* ─── PROMO 2-col ────────────────────────── */
.promo-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.promo-card {
  border-radius: var(--r20);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  cursor: pointer
}

.promo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease
}

.promo-card:hover .promo-bg {
  transform: scale(1.04)
}

.promo-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(44, 36, 32, .65) 0%, rgba(44, 36, 32, .08) 100%)
}

.promo-cnt {
  position: relative;
  z-index: 2;
  padding: 32px
}

.promo-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px
}

.promo-cnt h3 {
  font-family: var(--fh);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2
}

.btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  transition: var(--tr)
}

.btn-promo:hover {
  background: rgba(255, 255, 255, .3)
}

/* ─── REVIEWS ────────────────────────────── */
.rev-section {
  background: var(--rose-p);
  padding: 52px 0
}

.rev-carousel .cr-track {
  display: flex !important;
  gap: 18px;
  margin-top: 28px;
  transition: transform 0.5s ease;
}

.rev-card {
  flex: 0 0 calc(33.333% - 12px);
  background: var(--white);
  border-radius: var(--r12);
  padding: 22px;
  border: 1px solid var(--bsoft);
  transition: var(--tr);
  box-sizing: border-box
}

@media(max-width:1025px) {
  .rev-card {
    flex: 0 0 calc(50% - 9px)
  }
}

@media(max-width:600px) {
  .rev-card {
    flex: 0 0 100%
  }
}

.rev-card:hover {
  box-shadow: var(--s1)
}

.rev-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px
}

.rev-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-d));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0
}

.rev-name {
  font-size: 13px;
  font-weight: 600
}

.rev-date {
  font-size: 11px;
  color: var(--soft)
}

.rev-stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 7px
}

.rev-txt {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.7;
  font-style: italic
}

.rev-prod {
  font-size: 10px;
  color: var(--soft);
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--bsoft)
}

/* ─── NEWSLETTER ─────────────────────────── */
.nl-section {
  background: linear-gradient(135deg, var(--ink) 0%, #3d2420 100%);
  padding: 56px 0;
  text-align: center
}

.nl-section h2 {
  font-family: var(--fh);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px
}

.nl-section h2 em {
  color: var(--gold);
  font-style: italic
}

.nl-section p {
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  margin-bottom: 24px
}

.nl-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto 12px;
  border-radius: var(--r40);
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .28)
}

.nl-form input {
  flex: 1;
  padding: 13px 20px;
  border: none;
  font-size: 13px;
  outline: none;
  background: rgba(255, 255, 255, .95)
}

.nl-form button {
  padding: 13px 24px;
  background: var(--rose);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap
}

.nl-form button:hover {
  background: var(--rose-d)
}

.nl-note {
  font-size: 11px;
  color: rgba(255, 255, 255, .4)
}

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: #1e1612;
  color: rgba(255, 255, 255, .68);
  padding: 60px 0 0
}

.ft-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px
}

.ft-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fh);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px
}

.ft-logo span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-d));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-style: italic;
  color: #fff
}

.ft-brand p {
  font-size: 12px;
  line-height: 1.8;
  max-width: 250px
}

.ft-social {
  display: flex;
  gap: 8px;
  margin-top: 16px
}

.ft-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--tr)
}

.ft-social a:hover {
  background: var(--rose);
  border-color: var(--rose)
}

.ft-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.ft-col ul li {
  margin-bottom: 9px
}

.ft-col ul li a {
  font-size: 12px;
  color: rgba(255, 255, 255, .58);
  transition: var(--tr)
}

.ft-col ul li a:hover {
  color: #fff;
  padding-left: 6px
}

.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px
}

/* ─── PRODUCT DETAIL PAGE ────────────────── */
.pd-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 56px
}

.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start
}

.pd-main-img {
  border-radius: var(--r20);
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 3/4;
  margin-bottom: 12px
}

.pd-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s
}

.pd-main-img img:hover {
  transform: scale(1.04)
}

.pd-thumbs {
  display: flex;
  gap: 9px;
  flex-wrap: wrap
}

.pd-thumb {
  width: 76px;
  height: 76px;
  border-radius: var(--r8);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--tr);
  background: var(--cream)
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.pd-thumb.active,
.pd-thumb:hover {
  border-color: var(--rose)
}

.pd-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 6px
}

.pd-info h1 {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px
}

.pd-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px
}

.pd-div {
  height: 1px;
  background: var(--border);
  margin: 18px 0
}

.pd-price .sp {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--rose-d)
}

.pd-price .or {
  font-size: 16px;
  color: var(--soft);
  margin: 0 7px
}

.pd-price .op {
  font-size: 16px;
  color: var(--soft);
  text-decoration: line-through
}

.pd-price .sv {
  display: inline-block;
  background: #e8f5ee;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
  margin-left: 7px
}

.pd-fin {
  font-size: 11px;
  color: var(--soft);
  margin-bottom: 16px
}

.opt-lbl {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px
}

.opt-row {
  margin-bottom: 16px
}

.size-btns {
  display: flex;
  gap: 7px;
  flex-wrap: wrap
}

.sz-btn {
  min-width: 42px;
  height: 42px;
  border-radius: var(--r8);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  color: var(--mid);
  cursor: pointer;
  transition: var(--tr);
  padding: 0 12px
}

.sz-btn:hover,
.sz-btn.active {
  border-color: var(--rose);
  color: var(--rose);
  background: var(--rose-p)
}

.color-swatches {
  display: flex;
  gap: 9px;
  flex-wrap: wrap
}

.cswatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #918c8c49;
  transition: var(--tr);
  background-repeat: no-repeat;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.cswatch.active,
.cswatch:hover {
  border-color: var(--ink);
  transform: scale(1.12)
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px
}

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  width: 100px;
}

.qty-ctrl button {
  width: 38px;
  height: 38px;
  font-size: 19px;
  color: var(--mid);
  transition: var(--tr)
}

.qty-ctrl button:hover {
  background: var(--rose-p);
  color: var(--rose)
}

.qty-ctrl input {
  width: 48px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  padding: 7px 0;
  outline: none
}

.stk-note {
  font-size: 12px;
  color: var(--red);
  font-weight: 600
}

.stk-note small {
  display: block;
  color: var(--soft);
  font-weight: 400;
  font-size: 11px
}

.pd-btns {
  display: flex;
  gap: 11px;
  margin-bottom: 20px
}

.btn-buy {
  flex: 1;
  padding: 14px;
  border-radius: var(--r40);
  background: linear-gradient(135deg, var(--rose), var(--rose-d)) !important;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  box-shadow: 0 6px 18px rgba(200, 104, 122, .35)
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(200, 104, 122, .45)
}

.btn-buynow {
  flex: 1.2;
  padding: 14px;
  border-radius: var(--r40);
  background: #8b2c73;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  box-shadow: 0 6px 18px rgba(44, 36, 32, .2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-buynow:hover {
  background: #70215c;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(44, 36, 32, .3);
}

.btn-bag {
  flex: 1;
  padding: 14px;
  border-radius: var(--r40);
  border: 2px solid var(--rose);
  color: var(--rose);
  background: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr)
}

.btn-bag:hover {
  background: var(--rose-p)
}

.dl-cards {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.dl-card {
  background: var(--cream);
  border-radius: var(--r8);
  padding: 11px 14px;
  display: flex;
  align-items: flex-start;
  gap: 11px
}

.dl-icon {
  font-size: 19px;
  flex-shrink: 0;
  margin-top: 1px
}

.dl-card h4 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 1px
}

.dl-card p {
  font-size: 11px;
  color: var(--mid)
}

.dl-card a {
  color: var(--rose);
  text-decoration: underline
}

/* ─── BREADCRUMB ─────────────────────────── */
.breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
  margin-bottom: 0;
}

.bc-inner {
  max-width: 1280px;
  margin: 10px auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--soft);
  flex-wrap: wrap
}

.bc-inner a {
  color: var(--soft);
  transition: var(--tr)
}

.bc-inner a:hover {
  color: var(--rose)
}

.bc-sep {
  color: var(--border)
}

.bc-cur {
  color: var(--text);
  font-weight: 500
}

/* ─── CART PAGE ──────────────────────────── */
.cart-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 56px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start
}

.cart-tbl {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--r12);
  overflow: hidden;
  border: 1px solid var(--border)
}

.cart-tbl thead th {
  background: var(--cream);
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--mid);
  text-align: left;
  border-bottom: 1px solid var(--border)
}

.cart-tbl tbody td {
  padding: 16px;
  border-bottom: 1px solid var(--bsoft);
  vertical-align: middle;
  font-size: 13px
}

.cart-tbl tbody tr:last-child td {
  border-bottom: none
}

.ci-img {
  width: 68px;
  height: 84px;
  border-radius: var(--r8);
  overflow: hidden;
  background: var(--cream)
}

.ci-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.order-sum {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r12);
  padding: 22px
}

.order-sum h3 {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border)
}

.sum-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--mid)
}

.sum-row.total {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px
}

.cpn-row {
  display: flex;
  gap: 7px;
  margin-bottom: 16px
}

.cpn-row input {
  flex: 1;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--r8);
  font-size: 13px;
  outline: none
}

.cpn-row input:focus {
  border-color: var(--rose)
}

.cpn-row button {
  padding: 9px 14px;
  border-radius: var(--r8);
  background: var(--rose-p);
  color: var(--rose);
  border: 1.5px solid var(--rose);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr)
}

.cpn-row button:hover {
  background: var(--rose);
  color: #fff
}

/* ─── CHECKOUT ───────────────────────────── */
.co-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 56px;
}

.co-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r12);
  padding: 22px;
  margin-bottom: 14px
}

.co-card h3 {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px
}

.form-row.full {
  grid-template-columns: 1fr
}

.fg label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 5px
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--r8);
  font-family: var(--fb);
  font-size: 13px;
  outline: none;
  transition: var(--tr)
}

.fg input:focus,
.fg select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200, 104, 122, .1)
}

.pay-opt {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--r8);
  cursor: pointer;
  margin-bottom: 9px;
  transition: var(--tr)
}

.pay-opt:hover,
.pay-opt.sel {
  border-color: var(--rose);
  background: var(--rose-p)
}

/* ─── ACCOUNT / LOGIN ────────────────────── */
.acc-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 28px
}

.acc-nav {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r12);
  overflow: hidden;
  height: fit-content
}

.acc-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-size: 13px;
  color: var(--mid);
  border-bottom: 1px solid var(--bsoft);
  transition: var(--tr);
  cursor: pointer
}

.acc-nav-item:last-child {
  border-bottom: none
}

.acc-nav-item:hover,
.acc-nav-item.active {
  color: var(--rose);
  background: var(--rose-p)
}

.acc-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r12);
  padding: 26px
}

/* ─── TOAST ──────────────────────────────── */
#toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 13px 20px;
  border-radius: var(--r8);
  box-shadow: var(--s3);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateY(70px);
  opacity: 0;
  transition: all .33s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
  max-width: 300px;
}

#toast.show {
  transform: translateY(0);
  opacity: 1
}

/* ─── ALERTS ─────────────────────────────── */
.alert {
  padding: 12px 16px;
  border-radius: var(--r8);
  margin-bottom: 16px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px
}

.alert-s {
  background: #e8f5ee;
  color: #2d6a4f;
  border-left: 4px solid #52b788
}

.alert-d {
  background: #fef0ed;
  color: var(--red);
  border-left: 4px solid var(--rose)
}

/* ─── HAMBURGER ──────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--r8);
  transition: var(--tr);
  background: none;
  border: none;
  margin-left: 8px
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--tr)
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* mob-nav system removed – using d-{page} drawers only */
.m-primary {
  background: var(--rose);
  color: #fff;
  border: none
}

.m-outline {
  border: 1.5px solid var(--rose);
  color: var(--rose);
  background: none
}



/* ─── HAMBURGER ─────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: var(--tr);
  margin-left: auto;
  flex-shrink: 0
}

.hamburger:hover {
  background: var(--rose-p)
}

.hamburger span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--tr);
  transform-origin: center
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* ─── MOBILE DRAWER ─────────────────────── */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(44, 36, 32, .45);
  opacity: 0;
  transition: opacity .28s
}

.mob-overlay.open {
  opacity: 1
}

.mob-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  bottom: 0;
  z-index: 501;
  width: min(300px, 82vw);
  background: var(--warm);
  box-shadow: 0 16px 56px rgba(44, 36, 32, .2);
  transition: left .32s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto
}

.mob-drawer.open {
  left: 0
}

.d-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0
}

.d-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink)
}

.d-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--rose-p);
  border: 1px solid var(--rose-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--rose);
  cursor: pointer;
  transition: var(--tr)
}

.d-close:hover {
  background: var(--rose);
  color: #fff
}

.d-nav {
  flex: 1;
  padding: 8px 0
}

.d-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--mid);
  border-bottom: 1px solid var(--bsoft);
  transition: var(--tr);
  cursor: pointer
}

.d-link:hover,
.d-link.active {
  color: var(--rose);
  background: var(--rose-p)
}

.d-sub {
  display: none;
  background: var(--cream)
}

.d-sub.open {
  display: block
}

.d-sub a {
  display: block;
  padding: 10px 18px 10px 30px;
  font-size: 12px;
  color: var(--mid);
  border-bottom: 1px solid var(--bsoft);
  transition: var(--tr)
}

.d-sub a:hover {
  color: var(--rose)
}

.d-foot {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  flex-shrink: 0
}

.d-foot button {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr)
}

.d-foot .d-btn-p {
  background: var(--rose);
  color: #fff;
  border: none
}

.d-foot .d-btn-p:hover {
  background: var(--rose-d)
}

.d-foot .d-btn-o {
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose)
}

.d-foot .d-btn-o:hover {
  background: var(--rose-p)
}

/* ─── MOBILE SEARCH ──────────────────────── */
.mob-search {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 9px 14px
}

.mob-search .nav-search {
  max-width: 100%;
  display: flex
}

/* ─── PROMO GRID ─────────────────────────── */
.promo-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 24px;
  max-width: 1280px;
  margin: 48px auto;
  padding: 0 24px;
}

.promo-grid>*:first-child {
  grid-row: span 2;
  min-height: 520px;
}

.promo-card {
  position: relative;
  border-radius: var(--r20);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  min-height: 248px;
  box-shadow: var(--s1);
  transition: var(--tr);
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s2);
}

.promo-bg {
  position: absolute;
  inset: 0;
  transition: transform .8s;
}

.promo-card:hover .promo-bg {
  transform: scale(1.08);
}

.promo-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(44, 36, 32, .85) 0%, rgba(44, 36, 32, .2) 60%, transparent 100%);
}

.promo-cnt {
  position: relative;
  z-index: 2;
  color: #fff;
}

.promo-tag {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.promo-cnt h3 {
  font-family: var(--fh);
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.btn-promo {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}

button.cr-btn.cr-prev.review-prev {
  top: 50% !important;
}

button.cr-btn.cr-next.review-next {
  top: 50% !important;
}

.list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

/* ─── RESPONSIVE — max 1025px ─────────────── */
@media(max-width:1025px) {

  /* nav */
  .nav-links {
    display: none !important
  }

  .nav-search {
    display: none !important
  }

  #hamburger-btn {
    display: flex !important;
    gap: 5px !important;
    flex-direction: column !important;
  }

  #hamburger-btn span {
    display: block !important;
    background: var(--text) !important;
    width: 24px !important;
    height: 2px !important;
  }

  .hide-mobile {
    display: none !important
  }

  .mob-search {
    display: block !important
  }

  .mob-overlay.open {
    display: block !important
  }

  /* layout */
  .prod-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .ft-grid {
    grid-template-columns: 1fr 1fr
  }

  .trust-inner {
    grid-template-columns: 1fr 1fr;
    gap: 14px
  }

  .cr-track .pcard {
    flex: 0 0 calc(33.333% - 12px)
  }

  .nav-inner {
    padding: 0 10px;
  }

  .summer-inner {
    max-width: 950px;
  }
}

/* Responsive Listing */
@media(max-width: 1000px) {
  .listing-layout {
    grid-template-columns: 220px 1fr !important;
    gap: 24px;
  }

  .summer-inner {
    max-width: 915px;
  }
}

/* ─── RESPONSIVE ─────────────────────────── */
@media(max-width: 1024px) {

  .nav-links,
  .nav-search {
    display: none
  }

  .hamburger {
    display: flex
  }

  .mob-search {
    display: block
  }

  .hdr-btn span {
    display: none
  }

  .header-inner {
    height: 56px;
    gap: 8px
  }

  .prod-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cr-track .pcard {
    flex: 0 0 calc(50% - 9px)
  }

  .promo-grid {
    grid-template-columns: 1fr;
    padding: 20px 16px;
    gap: 12px
  }

  .promo-card {
    min-height: 200px
  }

  .rev-grid {
    grid-template-columns: 1fr
  }

  .pd-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .pd-btns {
    flex-direction: column
  }

  .btn-buy,
  .btn-bag {
    width: 100%
  }

  .cart-page {
    grid-template-columns: 1fr;
    padding: 12px;
    gap: 12px
  }

  .co-page {
    grid-template-columns: 1fr;
    padding: 12px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .acc-wrap {
    grid-template-columns: 1fr;
    padding: 12px
  }

  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px
  }

  .trust-inner {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px
  }

  .summer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    max-width: 700px;
    /* min-width: unset; */
  }

  .summer-badge {
    width: 100%;
    border-radius: 12px
  }

  .summer-timer {
    justify-content: center
  }


  .slide {
    min-height: 320px
  }

  .slide-cnt {
    padding: 36px 14px 24px 60px;
  }

  .slide-cnt h1 {
    font-size: 30px;
    max-width: 100%
  }

  .sl-arr {
    width: 32px;
    height: 32px;
    font-size: 14px
  }

  .account-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
    margin-bottom: 40px;
  }

  .account-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    padding: 8px;
    gap: 8px;
    margin-bottom: 12px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .account-nav-item {
    margin-bottom: 0;
    padding: 8px 14px;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--border);
  }
}

/* ─── RESPONSIVE — max 768px ─────────────── */
@media(max-width:768px) {

  .listing-layout {
    grid-template-columns: 1fr !important;
  }

  .list-sidebar {
    display: none;
  }

  .list-main .prod-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .lh-left h1 {
    font-size: 24px;
  }

  .list-head {
    /* flex-direction: column; */
    align-items: center;
    gap: 16px;
  }

  /* category circles – horizontal scroll on mobile */
  .cat-section {
    padding: 28px 0 20px
  }

  .cat-inner {
    padding: 0;
    overflow: visible
  }

  .cat-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 16px 12px 16px;
    gap: 14px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .cat-grid::-webkit-scrollbar {
    display: none
  }

  .cat-circle {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 72px;
  }

  .cat-img {
    width: 68px !important;
    height: 68px !important;
    font-size: 26px
  }

  .cat-nm {
    font-size: 10px
  }

  /* listing page – hide sidebar, full-width grid */
  .listing-layout {
    grid-template-columns: 1fr !important;
    padding: 12px !important
  }

  .listing-layout aside {
    display: none
  }

  /* login page – single column */
  .login-grid {
    grid-template-columns: 1fr !important;
    padding: 0 12px !important;
    margin: 16px auto !important
  }

  /* cat circles – scrollable */

  /* hero */
  .slide {
    min-height: 340px
  }

  .slide-cnt {
    padding: 24px 14px 24px 60px;
  }

  .slide-cnt h1 {
    font-size: 32px
  }

  /* grids */
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  .cr-track .pcard {
    flex: 0 0 calc(50% - 9px)
  }

  /* layouts */
  .pd-grid {
    grid-template-columns: 1fr
  }

  .cart-page,
  .co-page {
    grid-template-columns: 1fr;
    padding: 12px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .acc-wrap {
    grid-template-columns: 1fr
  }

  .promo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 16px
  }

  .rev-grid {
    grid-template-columns: 1fr
  }

  /* summer banner */
  .summer-inner {
    flex-direction: column;
    gap: 16px;
    max-width: 550px;
  }


  .summer-text h2 {
    font-size: 22px
  }

  /* trust */
  .trust-inner {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 18px 16px
  }

  /* cat circles */


  /* footer */
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px
  }

  /* pd */
  .pd-btns {
    flex-direction: column
  }

  /* sections */
  .sec-wrap,
  .nl-section .sec-wrap {
    padding: 0 16px
  }

  .nav-inner {
    padding: 0 10px;
  }
}

@media(max-width:600px) {
  .header-inner {
    height: 52px
  }

  #vn-logo .logo-name {
    font-size: 18px
  }

  .logo-mark {
    width: 28px;
    height: 28px;
    font-size: 13px
  }

  #announcement-bar .ann-bar {
    font-size: 10px
  }

  .slide {
    min-height: 240px
  }

  .slide-cnt {
    padding: 24px 14px 24px 60px;
  }

  .slide-cnt h1 {
    font-size: 22px;
  }

  .slide-cnt p {
    display: none
  }

  .slide-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px
  }

  .btn-hero {
    padding: 9px 16px;
    font-size: 11px
  }

  .offer-item {
    font-size: 10px
  }

  .summer-text h2 {
    font-size: 18px
  }

  .t-box .tn {
    font-size: 18px
  }

  .t-box {
    min-width: 46px;
    padding: 7px 8px
  }

  .trust-inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 12px
  }

  .trust-icon {
    width: 34px;
    height: 34px;
    font-size: 15px
  }

  .trust-item h4 {
    font-size: 11px
  }

  .trust-item p {
    font-size: 9px
  }

  .sec-head h2 {
    font-size: 20px
  }

  .cr-track .pcard {
    flex: 0 0 calc(50% - 6px);
    margin-right: 10px
  }

  .cbody {
    padding: 7px 7px 9px
  }

  .cname {
    font-size: 11px
  }

  .psale {
    font-size: 12px
  }

  .porig {
    font-size: 10px
  }

  .nl-section h2 {
    font-size: 20px
  }

  .nl-form {
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden
  }

  .nl-form input,
  .nl-form button {
    border-radius: 0;
    padding: 11px 14px
  }

  .ft-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .ft-bottom {
    flex-direction: column;
    gap: 5px;
    text-align: center
  }

  .pd-info h1 {
    font-size: 20px
  }

  .cart-tbl thead th {
    font-size: 10px;
    padding: 8px 7px
  }

  .cart-tbl tbody td {
    padding: 10px 7px;
    font-size: 11px
  }

  .order-sum {
    padding: 16px 14px
  }

  .co-card h3 {
    font-size: 15px
  }

  .co-card {
    padding: 14px 12px
  }

  .summer-inner {
    max-width: 400px;
  }

  #toast {
    bottom: 10px;
    right: 8px;
    left: 8px;
    font-size: 12px
  }

  .list-head {
    flex-direction: row;
    align-items: center;
  }
}

@media(max-width:530px) {
  .list-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media(max-width:500px) {
  .summer-inner {
    max-width: 300px;
  }
}

/* ─── RESPONSIVE — max 480px ─────────────── */
@media(max-width:480px) {
  .nav-inner {
    padding: 0 10px;
    height: 56px;
    gap: 10px
  }

  .logo-name {
    font-size: 20px
  }

  .logo-mark {
    width: 28px;
    height: 28px;
    font-size: 14px
  }

  .slide {
    min-height: 260px
  }

  .slide-cnt {
    padding: 24px 14px 24px 60px;
  }

  .slide-cnt h1 {
    font-size: 24px;
    line-height: 1.2
  }

  .slide-cnt p {
    display: none
  }

  .slide-btns {
    flex-direction: column;
    gap: 8px
  }

  .btn-hero {
    padding: 10px 18px;
    font-size: 11px
  }

  .stag {
    font-size: 10px
  }

  .prod-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px
  }

  .cbody {
    padding: 9px
  }

  .cname {
    font-size: 11px
  }

  .psale {
    font-size: 12px
  }

  .cr-track .pcard {
    flex: 0 0 calc(50% - 9px)
  }

  .sec-head h2,
  .nl-section h2 {
    font-size: 22px
  }

  .ft-grid {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .ft-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center
  }

  .summer-inner {
    padding: 0 16px
  }

  .t-box {
    min-width: 52px;
    padding: 8px 10px
  }

  .tn {
    font-size: 22px
  }

  .summer-badge {
    width: 100%;
    text-align: center
  }

  .trust-inner {
    padding: 14px;
    gap: 10px
  }

  .trust-icon {
    width: 34px;
    height: 34px;
    font-size: 15px
  }

  .trust-item h4 {
    font-size: 11px
  }

  .trust-item p {
    font-size: 10px
  }

  .nl-form {
    flex-direction: column;
    border-radius: var(--r12)
  }

  .nl-form input {
    border-radius: var(--r12) var(--r12) 0 0;
    padding: 12px 16px
  }

  .nl-form button {
    border-radius: 0 0 var(--r12) var(--r12);
    padding: 12px
  }

  .pop-box {
    max-width: 96vw;
    border-radius: var(--r12)
  }

  .pop-top h2 {
    font-size: 24px
  }

  .cd-box .n {
    font-size: 20px
  }

  .cd-grid {
    gap: 6px
  }

  .coupon-row {
    flex-wrap: wrap;
    gap: 6px
  }

  #toast {
    bottom: 14px;
    right: 10px;
    left: 10px;
    font-size: 12px
  }

  .promo-card {
    min-height: 200px
  }

  .cat-img {
    width: 60px !important;
    height: 60px !important;
    font-size: 22px
  }

  .cat-nm {
    font-size: 9px
  }

  .cat-circle {
    min-width: 62px
  }
}

@media(max-width:380px) {
  .slide-cnt h1 {
    font-size: 18px
  }

  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px
  }

  .cname {
    font-size: 10px
  }

  .psale {
    font-size: 11px
  }

  .trust-inner {
    grid-template-columns: 1fr
  }

  .logo-name {
    font-size: 16px
  }
}


/*  LISTING PAGE - */
.listing-wrap {
  padding: 0;
  background: var(--white);
}

.home-cat-even {
  background-color: #fdf4f5;
}




.lh-left h1 {
  font-family: var(--fh);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  margin-top: 0;
}

.home-cat-section {
  padding: 60px 0 60px 0;
}

.lh-left p {
  font-size: 14px;
  color: var(--soft);
}

.lh-left span {
  font-size: 12px;
  color: var(--soft);
}

.pd-tab {
  padding: 3px 15px;
  background-color: #9d9596;
  border-radius: 20px;
  color: white;
  margin-bottom: 5px;
}

.pd-tab.active {
  background-color: #c8687a;
}

.sort-by {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-by span {
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
}

.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r40);
  padding: 6px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #7a6560;
  cursor: pointer;
  transition: var(--tr);
}

.mobile-filter-btn i {
  color: var(--rose);
}

.mobile-filter-btn:hover {
  border-color: var(--rose);
  background: var(--rose-p);
}

.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.filter-overlay.open {
  opacity: 1;
  visibility: visible;
}

.side-head-mob {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--bsoft);
  margin-bottom: 10px;
}

.side-head-mob h3 {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.side-close {
  background: var(--rose-p);
  color: var(--rose);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
}

.sort-by select {
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r40);
  font-size: 13px;
  color: var(--text);
  outline: none;
  background: #fff;
  cursor: pointer;
}

.listing-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/*  SIDEBAR  */
.list-sidebar {
  position: sticky;
  top: 100px;
}

.side-block {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bsoft);
}

.side-block:last-child {
  border-bottom: none;
}

.side-block h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 18px;
}

.side-scroll {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 10px;
}

.side-scroll::-webkit-scrollbar {
  width: 4px;
}

.side-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: var(--tr);
}

.check-row:hover .txt {
  color: var(--rose);
}

.check-row input {
  display: none;
}

.check-row .box {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  position: relative;
  transition: var(--tr);
  flex-shrink: 0;
}

.check-row input:checked+.box {
  background: var(--rose);
  border-color: var(--rose);
}

.check-row input:checked+.box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 11px;
}

.check-row .txt {
  font-size: 13px;
  color: var(--mid);
  font-weight: 500;
}

/* Price Slider */
.price-slider-area {
  padding: 5px 0;
}

.price-slider-area input[type=range] {
  width: 100%;
  accent-color: var(--rose);
  margin-bottom: 12px;
}

.price-vals {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--soft);
  font-weight: 600;
  margin-bottom: 14px;
}

.btn-apply-price {
  width: 100%;
  padding: 10px;
  border-radius: var(--r40);
  background: var(--rose-p);
  color: var(--rose);
  border: 1.5px solid var(--rose);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
}

.btn-apply-price:hover {
  background: var(--rose);
  color: #fff;
}

/* Size Grid */
.size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.sz-opt {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: var(--mid);
  cursor: pointer;
  transition: var(--tr);
}

.sz-opt:hover,
.sz-opt.active {
  border-color: var(--rose);
  color: var(--rose);
  background: var(--rose-p) !important;
}


/*  MAIN GRID REFINEMENT  */
@media (min-width: 1025px) {
  .list-main .prod-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
  }
}

/* Product Card Pastel BG rotation */
.prod-grid .pcard:nth-child(4n+1) .card-img {
  background: #fdf2f4 !important;
}

.prod-grid .pcard:nth-child(4n+2) .card-img {
  background: #f1f6ff !important;
}

.prod-grid .pcard:nth-child(4n+3) .card-img {
  background: #fef8eb !important;
}

.prod-grid .pcard:nth-child(4n+4) .card-img {
  background: #f2faf5 !important;
}

.badge-row {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
  min-width: 150px;
}

.b-save {
  background: var(--red);
  color: #fff;
  padding: 2px 8px;
  font-size: 10px;
  border-radius: 4px;
  top: 34px;
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.b-tag {
  background: var(--rose-d);
  color: #fff;
  padding: 2px 8px;
  font-size: 10px;
  border-radius: 4px;
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}



/* ─── ACCOUNT AREA ───────────────────────── */
.account-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  margin-top: 0;
  margin-bottom: 20px;
}

.account-nav {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r12);
  padding: 12px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  box-shadow: var(--s1);
  z-index: 10;
}

.account-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  border-radius: var(--r8);
  transition: var(--tr);
  margin-bottom: 2px;
  text-decoration: none !important;
}

.account-nav-item:hover,
.account-nav-item.active {
  background: var(--rose-p);
  color: var(--rose);
}

.account-nav-item.active {
  font-weight: 700;
  background: var(--rose-p);
}

.account-content {
  min-width: 0;
}

.co-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r20);
  box-shadow: var(--s2);
  overflow: hidden;
}

#error-not-found {
  min-height: 80vh;
}



/* ── ACCOUNT SUCCESS REDESIGN ── */
.account-success-wrap {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 0 0 40px 0;
  background: var(--warm);
  border-radius: var(--r20);
}

.success-lottie-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.success-text-wrap {
  flex: 1;
  padding-right: 40px;
}

.success-text-wrap h1 {
  font-family: var(--fh);
  font-size: 52px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}

.success-text-wrap p {
  font-family: var(--fb);
  font-size: 17px;
  color: var(--mid);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.6;
}

.btn-start-shopping {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  border-radius: 50px;
  background: linear-gradient(90deg, #d47a8d 0%, #8e6d62 100%);
  color: #fff;
  font-family: var(--fb);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  box-shadow: 0 10px 24px rgba(200, 104, 122, 0.25);
  transition: var(--tr);
  text-decoration: none;
}

.btn-start-shopping:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(200, 104, 122, 0.35);
  color: #fff;
}

@media (max-width: 992px) {
  .account-success-wrap {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .success-text-wrap {
    padding-right: 0;
  }

  .success-text-wrap h1 {
    font-size: 38px;
  }

  .success-text-wrap p {
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }
}

.empty-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ─── LIVE SEARCH ─────────────────────── */
.live-search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--r12);
  box-shadow: var(--s3);
  z-index: 1000;
  overflow: hidden;
  display: none;
  border: 1px solid var(--border);
  max-height: 650px;
  max-width: 100%;
  min-width: 300px;
  overflow-y: auto;
}

.live-search-results.open {
  display: block;
  animation: slideUp .3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ls-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--bsoft);
  transition: var(--tr);
  text-decoration: none;
}

.ls-item:last-of-type {
  border-bottom: none;
}

.ls-item:hover {
  background: var(--cream);
}

.ls-img {
  width: 44px;
  height: 44px;
  border-radius: var(--r8);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.ls-info {
  flex: 1;
  min-width: 0;
}

.ls-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.ls-desc {
  display: block;
  font-size: 11px;
  color: var(--soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ls-price {
  text-align: right;
  flex-shrink: 0;
}

.ls-price-val {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--rose);
}

.ls-price-old {
  display: block;
  font-size: 10px;
  color: var(--soft);
  text-decoration: line-through;
}

.ls-view-all {
  display: block;
  padding: 12px;
  text-align: center;
  background: var(--rose-p);
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-top: 1px solid var(--border);
  transition: var(--tr);
}

.ls-view-all:hover {
  background: var(--rose);
  color: #fff;
}

.ls-no-result {
  padding: 20px;
  text-align: center;
  color: var(--soft);
  font-size: 13px;
}

/*  RESPONSIVE OVERRIDES (Placed at end for specificity)  */
@media(max-width: 1024px) {
  .listing-layout {
    grid-template-columns: 1fr !important;
    gap: 24px;
    display: block !important;
  }

  .mobile-filter-btn {
    display: flex !important;
  }

  .list-sidebar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 320px !important;
    max-width: 85% !important;
    height: 100vh !important;
    background: #fff !important;
    z-index: 2000 !important;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1) !important;
    transform: translateX(-100%) !important;
    visibility: hidden !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important;
  }

  .list-sidebar.open {
    transform: translateX(0) !important;
    visibility: visible !important;
  }

  .side-head-mob {
    display: flex !important;
  }

  .side-block {
    padding: 0 20px 24px 20px !important;
  }

  .side-scroll {
    max-height: none !important;
    overflow-y: visible !important;
  }

  .list-main .prod-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }

  .lh-right {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
  }
}

@media(max-width: 576px) {
  .list-main .prod-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .list-sidebar {
    width: 280px !important;
  }

  .success-text-wrap h1 {
    font-size: 32px !important;
  }

  .pcard .h3 {
    font-size: 13px !important;
  }

  .badge-row .b-tag,
  .badge-row .b-save {
    font-size: 8px !important;
    padding: 1px 4px !important;
    max-width: 65px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

@media(max-width: 420px) {
  .list-main .prod-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .pcard {
    max-width: 320px;
    margin: 0 auto;
  }
}

/*  HOMEPAGE ENHANCEMENTS  */
.summer-banner {
  background: linear-gradient(120deg, #ffe8ec 0%, #fecfef 50%, #ffd6b3 100%);
  margin: 40px auto;
  border-radius: var(--r20);
  border: 1px solid var(--border);
  position: relative;
  min-height: 220px;
}

.coupon-track {
  display: grid;
  grid-template-areas: "stack";
  width: 100%;
}

.coupon-slide {
  grid-area: stack;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, visibility 1.2s;
  z-index: 0;
  padding: 40px;
}

.coupon-slide.active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 1 !important;
}

.summer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.summer-text h2 {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.summer-text h2 span {
  color: var(--rose);
  font-weight: 800;
  background: var(--rose-p);
  padding: 0 10px;
  border-radius: 8px;
}

.summer-timer {
  display: flex;
  gap: 15px;
  align-items: center;
}

.t-box {
  background: var(--white);
  padding: 12px;
  border-radius: 12px;
  min-width: 70px;
  text-align: center;
  box-shadow: var(--s1);
  border: 1px solid var(--border);
}

.tn {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
}

.tl {
  font-size: 11px;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.t-sep {
  font-size: 24px;
  font-weight: 700;
  color: var(--border);
}

@media(max-width: 991px) {
  .summer-inner {
    flex-direction: column;
    text-align: center;
  }

  .summer-banner {
    min-height: auto;
  }
}

/* Review Slider Fixes */
.rev-carousel .cr-track {
  display: flex;
  gap: 18px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.rev-card {
  flex: 0 0 400px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--s1);
}

@media(max-width: 768px) {
  .rev-card {
    flex: 0 0 100%;
  }
}

/* ─── MOBILE SEARCH OVERRIDES ─── */
.show-mobile-search {
  display: none !important;
}

/* Ensure the search bar inside the mobile dropdown isn't hidden by global hide rules */
.mob-search .nav-search {
  display: flex !important;
}

@media(max-width: 1025px) {
  .nav-actions .show-mobile-search {
    display: flex !important;
  }
  .mob-search {
    display: none !important;
  }
  .mob-search.open {
    display: block !important;
    animation: slideDownSearch 0.3s ease forwards;
    transform-origin: top;
  }
}

@keyframes slideDownSearch {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================================
   GLOBAL ACCOUNT RESPONSIVE OVERRIDES
   ======================================================== */
@media (max-width: 600px) {
  /* Flatten all hardcoded inline structural grids */
  .account-content div[style*="minmax(280px"],
  .account-content div[style*="minmax(300px"] {
    grid-template-columns: 1fr !important;
  }
  /* Constrain giant padding on mobile */
  .account-content .co-card {
    padding: 20px !important;
  }
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ─── SHIMMER SKELETON EFFECT ───────────────── */
@keyframes placeholderShimmer {
  0% { background-position: -800px 0; }
  100% { background-position: 800px 0; }
}

.loading-skeleton .card-img {
  min-height: 250px;
  background: #f6f7f8;
  background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 800px 100%;
  animation: placeholderShimmer 1.5s linear infinite forwards;
  position: relative;
  overflow: hidden;
}

.loading-skeleton .cname,
.loading-skeleton .cprice,
.loading-skeleton .ccat {
  color: transparent !important;
  background: #f6f7f8;
  background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 800px 100%;
  animation: placeholderShimmer 1.5s linear infinite forwards;
  border-radius: 4px;
}

.loading-skeleton .cname {
  min-height: 20px;
  display: block;
}
.loading-skeleton .cprice {
  min-height: 18px;
  display: block;
  width: 50%;
}

.loading-skeleton .cstars,
.loading-skeleton .cactions,
.loading-skeleton .qadd,
.loading-skeleton .badge-row {
  opacity: 0 !important;
  pointer-events: none !important;
}

.loading-skeleton img {
  opacity: 0 !important;
}
.pcard-main-img {
  transition: opacity 0.3s ease-in;
}

@media (max-width: 345px) {
    #vn-logo .logo-name {
        font-size: 17px;
    }
}
@media (max-width: 860px) {
    .ord-td-actions {
      display: flex;
      gap: 4px;
    }
}
