/* ============================================================
   CURVYA — Main Stylesheet
   Palette: Blush #F4C5C5 | Mauve #8B4B6B | Cream #FDF6F0 |
            Dusty Pink #E8A5B5 | Charcoal #2D2D2D | Gold #C9956A
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Core brand palette ── */
  --blush:      #F4C5C5;
  --mauve:      #8B4B6B;
  --mauve-dark: #6B3555;
  --cream:      #FDF6F0;
  --dusty:      #E8A5B5;
  --charcoal:   #2D2D2D;
  --gold:       #C9956A;
  --light-pink: #FBE8EF;
  --mid-pink:   #F2D0DB;
  --text:       #3A2A2A;
  --text-light: #8A7070;

  /* ── Aliases so symbol-grid / accordion / care-instructions module resolves correctly ── */
  --white:      #FFFFFF;
  --ink:        var(--charcoal);
  --ink-soft:   var(--text-light);
  --petal:      var(--light-pink);
  --blush-mid:  var(--mid-pink);
  --blush-deep: var(--dusty);
  --blush-pale: var(--cream);

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-script:  'Dancing Script', cursive;
  --ff-body:    'Lato', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  32px;
  --shadow:     0 4px 24px rgba(139,75,107,0.10);
  --shadow-md:  0 8px 40px rgba(139,75,107,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── Curvya Scrollbar ──────────────────────────────────────── */

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--mauve) var(--light-pink);
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--light-pink);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blush) 0%, var(--mauve) 100%);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--mauve-dark);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===================== NAVBAR ===================== */

@media (max-width: 900px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(253,246,240,0.97);
    flex-direction: column; align-items: center; gap: 0;
    padding: 16px 0;
    margin-left: 0;
    margin-right: 0;
    transform: translateY(-120%); opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.3s;
    border-bottom: 1px solid rgba(244,197,197,0.3);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* This is the fix — push cart (and everything after it) to the right */
  .nav-cart {
    margin-left: auto;
  }
}

.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; /* remove justify-content: space-between */
  padding: 0 5%;
  height: 68px;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244,197,197,0.35);
  transition: box-shadow 0.3s;
}

.nav-links {
  display: flex; gap: 36px;
  margin-left: auto; /* pushes links + cart + user to the right */
  margin-right: 24px; /* gap between links and cart button */
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-logo {
  width: 125px;
  display: flex; align-items: center; gap: 6px;
}

.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1.5px; background: var(--mauve);
  transition: right 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--mauve); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--mauve); border-radius: 2px; transition: 0.3s;
}
.nav-cart {
  margin-right: 20px;
  position: relative; /* add this */
  display: flex;       /* add this */
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #e0d6d6;
  border-radius: 8px;
  background: none;
  cursor: pointer;
  color: var(--text-light);
  flex-shrink: 0;
}

.nav-cart-badge {
  position: absolute; /* add this */
  top: -6px;          /* add this */
  right: -6px;        /* add this */
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  background: #c84b6e;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
  padding: 0 4px;
}

.nav-cart:hover { background: #faf6f6; }

.nav-auth-btn {
  margin-right: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 14px;
  border: 1px solid #e0d6d6;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-auth-btn:hover { background: #faf6f6; }

.nav-auth-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d4537e;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

   .nav-auth-btn {
      display:flex; align-items:center; gap:7px; height:36px; padding:0 14px;
      border:1px solid #e0d6d6; border-radius:8px; font-size:13.5px;
      font-weight:500; cursor:pointer; background:none; font-family:var(--ff-body);
    }
    .nav-auth-btn:hover { background:#faf6f6; }
    .nav-avatar {
      width:22px; height:22px; border-radius:50%;
      background:var(--mauve); color:#fff; font-size:10px; font-weight:700;
      display:flex; align-items:center; justify-content:center; flex-shrink:0;
      overflow:hidden;
    }
    .nav-avatar img { width:100%; height:100%; object-fit:cover; }

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-block;
  padding: 13px 32px;
  background: var(--mauve);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(139,75,107,0.25);
}
.btn-primary:hover {
  background: var(--mauve-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139,75,107,0.35);
}

.btn-ghost {
  display: inline-block;
  padding: 12px 32px;
  background: transparent;
  color: var(--mauve);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--mauve);
  transition: background 0.25s, color 0.25s;
}
.btn-ghost:hover { background: var(--mauve); color: #fff; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  padding: 100px 5% 60px;
  display: flex; align-items: center; gap: 60px;
  background: linear-gradient(135deg, #FDF6F0 0%, #FBE8EF 55%, #F2D0DB 100%);
  position: relative; overflow: hidden;
}

/* Floating petals */
.hero-petals { position: absolute; inset: 0; pointer-events: none; }
.petal {
  position: absolute;
  border-radius: 60% 40% 60% 40%;
  opacity: 0.18;
  animation: floatPetal 12s ease-in-out infinite;
}
.p1 { width:80px; height:50px; background:var(--mauve); top:12%; left:8%; animation-delay:0s; }
.p2 { width:50px; height:32px; background:var(--dusty); top:20%; right:20%; animation-delay:2s; }
.p3 { width:65px; height:40px; background:var(--gold); top:55%; left:5%; animation-delay:4s; }
.p4 { width:90px; height:55px; background:var(--blush); top:70%; right:8%; animation-delay:1s; }
.p5 { width:45px; height:28px; background:var(--mauve); bottom:20%; left:40%; animation-delay:3s; }
.p6 { width:70px; height:45px; background:var(--dusty); top:35%; right:40%; animation-delay:5s; }

@keyframes floatPetal {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(8deg); }
}

.hero-content {
  flex: 1;
  max-width: 560px;
  animation: fadeSlideUp 0.9s ease both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.hero-title em {
  color: var(--mauve);
  font-style: italic;
}

.hero-script {
  font-family: var(--ff-script);
  font-size: 1.5rem;
  color: var(--mauve);
  margin-bottom: 18px;
  animation: fadeSlideUp 0.9s ease 0.2s both;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.9s ease 0.3s both;
}

.hero-cta-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeSlideUp 0.9s ease 0.4s both;
}

.hero-visual {
  flex: 1;
  position: relative;
  max-width: 500px;
  animation: fadeSlideUp 0.9s ease 0.5s both; 
}

.hero-badge {
  position: absolute; top: -20px; right: -10px; z-index: 5;
  width: 50px; height: 50px;
  border-radius: 50%;
  /* background: var(--mauve); */
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  /* animation: rotateSlow 18s linear infinite; */
}
.badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-card-stack {
  display: flex; flex-direction: column; gap: 16px;
}
.hero-badge {
  transition: transform 0.3s, box-shadow 0.3s;
}
.hcard {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(244,197,197,0.5);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.hcard:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.h1wrapper:hover .hero-badge {
    transform: translateX(6px);
}
.hcard2 { margin-left: 18px; }
.hcard3 { margin-left: 36px; }
.hcard4 { margin-left: 54px; }
.hcard-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.hcard-name {
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600;
  color: var(--mauve); margin-bottom: 4px;
}
.hcard-desc {
  font-size: 0.82rem; color: var(--text-light); margin-bottom: 10px;
}

.swatch-row { display: flex; gap: 6px; }



.sw {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  transition: transform 0.2s;
}
.sw:hover { transform: scale(1.3); }

/* ===================== WHY STRIP ===================== */
.why-wrapper {
  background: var(--mauve);
  overflow: hidden;
}

.why-strip {
  color: var(--cream);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  justify-content: center;
  align-items: center;
  padding: 18px 5%;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
}
.why-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.3);
}

.why-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  display: flex; justify-content: center; align-items: center;
}
.why-inner-icon {
  margin-top: 2px;
  width: 20px; height: 20px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .why-strip {
    display: flex;
    width: max-content;
    padding: 18px 0;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
  }
  .why-item {
    flex-shrink: 0;
    border-right: none;
    padding: 0 24px;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
}.why-wrapper {
  background: var(--mauve);
  overflow: hidden;
}

.why-strip {
  color: var(--cream);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  justify-content: center;
  align-items: center;
  padding: 18px 5%;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
}
.why-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.3);
}

.why-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  display: flex; justify-content: center; align-items: center;
}
.why-inner-icon {
  margin-top: 2px;
  width: 20px; height: 20px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .why-strip {
    display: flex;
    width: max-content;
    padding: 18px 0;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
  }
  .why-item {
    flex-shrink: 0;
    border-right: none;
    padding: 0 24px;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
}

/* ===================== SECTION COMMONS ===================== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-family: var(--ff-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600; color: var(--charcoal); margin-bottom: 12px;
}
.section-sub {
  font-size: 0.95rem; color: var(--text-light); max-width: 500px; margin: 0 auto;
  line-height: 1.7;
}
.section-cta { text-align: center; margin-top: 44px; }

/* ===================== COLLECTIONS PREVIEW ===================== */
.collections-preview {
  padding: 80px 5%;
  background: var(--cream);
}

.coll-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 16px;
  min-height: 420px;
}

.coll-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: block;
    box-shadow: var(--shadow);
    transform: translateY(0) scale(1);
    transition: transform .3s ease, box-shadow .3s ease;
    will-change: transform;
}

.coll-card:hover{
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-md);
}

.coll-overlay {
  position: absolute; inset: 0;
  transition: opacity 0.1s;
  opacity: 0.65;
}

.coll-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.coll-everyday .coll-overlay { background: linear-gradient(180deg, transparent 30%, rgb(0, 0, 0, 1) 100%); }

.coll-active .coll-overlay { background: linear-gradient(180deg, transparent 30%, rgb(0, 0, 0, 1) 100%); }

.coll-style .coll-overlay { background: linear-gradient(180deg, transparent 30%, rgb(0, 0, 0, 1) 100%); }

.coll-easywear .coll-overlay { background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 1) 100%); }

.coll-more .coll-overlay { background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 1) 100%); }

.coll-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  color: #fff;
}
.coll-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  opacity: 0.75; margin-bottom: 6px;
}
.coll-name {
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600;
  line-height: 1.2; margin-bottom: 4px;
}
.coll-pieces {
  font-size: 0.78rem; opacity: 0.8; margin-bottom: 10px;
}
.coll-link {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  opacity: 0; transform: translateY(6px);
  display: inline-block; transition: opacity 0.3s, transform 0.3s;
}
.coll-card:hover .coll-link { opacity: 1; transform: translateY(0); }

/* ===================== FEATURED PRODUCTS ===================== */
.featured {
  padding: 80px 5%;
  background: var(--light-pink);
}

.product-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.prod-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.prod-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-md); }

.prod-img {
    position: relative;   /* <-- Missing */
    height: 220px;
    overflow: hidden;
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 85%; /* Try 60-75% */
}


.pi-ease     { background: linear-gradient(145deg, #F4C5C5 0%, #E8A5A0 100%); }
.pi-grace    { background: linear-gradient(145deg, #D4B8C7 0%, #8B4B6B 100%); }
.pi-active   { background: linear-gradient(145deg, #8BA3B8 0%, #2D3A4A 100%); }
.pi-softlift { background: linear-gradient(145deg, #C4A882 0%, #8B5A3C 100%); }

.prod-badge {
  z-index: 2; position: absolute; top: 12px; left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.9);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mauve);
}

.prod-info { padding: 18px 20px 20px; }
.prod-collection {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.prod-name {
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600;
  color: var(--mauve); margin-bottom: 4px;
}
.prod-tagline {
  font-size: 0.82rem; color: var(--text-light); margin-bottom: 10px;
}
.prod-cta {
  display: inline-block; margin-top: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mauve);
  border-bottom: 1.5px solid var(--mauve);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.prod-cta:hover { color: var(--mauve-dark); border-color: var(--mauve-dark); }

/* ===================== QUOTE BAND ===================== */
.quote-band {
  background: linear-gradient(135deg, var(--mauve) 0%, var(--mauve-dark) 100%);
  padding: 60px 5%;
  text-align: center;
}
.quote-inner { max-width: 700px; margin: 0 auto; }
.quote-script {
  font-family: var(--ff-script);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 12px;
  opacity: 0.95;
}
.quote-attr {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blush);
}

/* ===================== FEATURES GRID ===================== */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 72px 5%;
  background: var(--cream);
}
.feat-item {
  text-align: center;
  padding: 32px 28px;
  border-right: 1px solid rgba(244,197,197,0.5);
}
.feat-item:last-child { border-right: none; }
.feat-icon {
  text-align: center; display: flex; align-items: center; justify-content: center;
}
.feat-inner-icon {
  width: 50px;
  height: 50px; 
  margin-bottom: 14px; 
}

.feat-item h4 {
  font-family: var(--ff-display); font-size: 1rem; font-weight: 600;
  color: var(--mauve); margin-bottom: 8px;
}
.feat-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
}
.footer-top {
  padding: 64px 5% 40px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 20px;
}
.footer-logo {
  margin-bottom: 5px;
  width: 150px;
}
.footer-tagline {
  font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.5);
}
.footer-links-col h5 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--blush); margin-bottom: 16px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--blush); }

.footer-bottom {
  padding: 20px 5%;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-script {
  font-family: var(--ff-script); font-size: 1.1rem;
  color: var(--blush) !important; opacity: 0.8;
}
.diff-font { font-family: var(--ff-display) !important; color: #fff !important; }
.diff-font-nc { font-family: var(--ff-display) !important; }
/* ===================== SHOP PAGE ===================== */
.shop-hero {
  padding: 120px 5% 56px;
  background: linear-gradient(135deg, #FBE8EF 0%, #F2D0DB 100%);
  text-align: center;
}
.shop-hero h1 {
  font-family: var(--ff-display); font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600; color: var(--charcoal); margin-bottom: 12px;
}
.shop-hero p { font-size: 1rem; color: var(--text-light); max-width: 480px; margin: 0 auto; }

.shop-filters {
  padding: 28px 0 0 5%;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: var(--cream);
}
.filter-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-light); margin-right: 4px;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(244,197,197,0.6);
  background: transparent;
  font-family: var(--ff-body); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer; transition: 0.25s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--mauve); border-color: var(--mauve); color: #fff;
}

.shop-section {
  padding: 30px 5% 72px;
}
.shop-section-title {
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600;
  color: var(--mauve); margin-bottom: 6px;
  display: flex; align-items: center; gap: 12px;
}
.shop-section-title::after {
  content: ''; flex: 1; height: 1px; background: rgba(244,197,197,0.5);
}
.shop-section-sub {
  font-size: 0.85rem; color: var(--text-light); margin-bottom: 32px;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.shop-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.shop-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-md); }

.shop-card-info { padding: 16px 18px 20px; }
.shop-card-coll {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 3px;
}
.shop-card-name {
  font-family: var(--ff-display); font-size: 1.25rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 4px;
}
.shop-card-desc {
  font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px;
  line-height: 1.5;
}
.shop-card-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.shop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
    display: block;
    transition: transform .35s ease;
}

/* Colour gradient backgrounds for shop cards */
.bg-ease       { background: linear-gradient(150deg, #F4C5C5 0%, #E8A5A0 100%); }
.bg-everyday   { background: linear-gradient(150deg, #B8C5A8 0%, #7A9068 100%); }
.bg-essential  { background: linear-gradient(150deg, #D4B8C7 0%, #B090A0 100%); }
.bg-support    { background: linear-gradient(150deg, #C4A882 0%, #8B5A3C 100%); }
.bg-grace      { background: linear-gradient(150deg, #D0B0C0 0%, #8B4B6B 100%); }
.bg-luxe       { background: linear-gradient(150deg, #C8C0D8 0%, #8888AA 100%); }
.bg-active     { background: linear-gradient(150deg, #8BA3B8 0%, #2D3A4A 100%); }
.bg-move       { background: linear-gradient(150deg, #666 0%, #222 100%); }
.bg-softlift   { background: linear-gradient(150deg, #8B4B6B 0%, #5A2040 100%); }
.bg-cocktail   { background: linear-gradient(150deg, #2D2D2D 0%, #000 100%); }
.bg-shapewear  { background: linear-gradient(150deg, #2D2D2D 0%, #1A1A1A 100%); }
.bg-nightwear  { background: linear-gradient(150deg, #8888AA 0%, #555577 100%); }
.bg-activewear { background: linear-gradient(150deg, #8BA3B8 0%, #4A6A80 100%); }

/* ===================== ABOUT PAGE ===================== */
.about-hero {
  padding: 120px 5% 64px;
  display: flex; align-items: center; gap: 64px;
}
.about-hero-text { flex: 1; }
.about-hero-text h1 {
  font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; color: var(--charcoal); margin-bottom: 16px; line-height: 1.2;
}
.about-hero-text h1 em { color: var(--mauve); font-style: italic; }
.about-hero-text p {
  font-size: 1rem; color: var(--text-light); line-height: 1.8; max-width: 440px;
}
.about-hero-visual {
  flex: 0 0 340px;
  height: 380px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--blush) 0%, var(--mauve) 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-hero-quote {
  font-family: var(--ff-script); font-size: 2rem;
  color: #fff; text-align: center; padding: 30px; line-height: 1.5;
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  padding: 72px 5%;
}
.about-block {
  padding: 48px 40px;
  border: 1px solid rgba(244,197,197,0.3);
}

.about-block-inner-icon {
  width: 48px; height: 48px;
}
.about-block-inner-icon-small {
  width: 36px; height: 36px;
}
.about-block:nth-child(1) { background: var(--light-pink); }
.about-block:nth-child(2) { background: #fff; }
.about-block-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.about-block-icon { font-size: 2.5rem; margin-bottom: 16px; }
.about-block h3 {
  font-family: var(--ff-display); font-size: 1.6rem; font-weight: 600;
  color: var(--mauve); margin-bottom: 14px;
}
.about-block p { font-size: 0.92rem; color: var(--text-light); line-height: 1.8; }

.about-values {
  padding: 72px 5%;
  background: linear-gradient(135deg, var(--mauve) 0%, var(--mauve-dark) 100%);
  text-align: center;
}
.about-values .section-title { color: #fff; }
.about-values .section-eyebrow { color: var(--blush); }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px;
}
.val-card {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 32px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  color: #fff; text-align: center;
  transition: background 0.3s;
}
.val-card:hover { background: rgba(255,255,255,0.18); }
.val-icon { display:flex; justify-content: center; text-align: center; font-size: 2rem; margin-bottom: 12px; }
.val-card h4 { font-family: var(--ff-display); font-size: 1rem; margin-bottom: 8px; }
.val-card p { font-size: 0.82rem; opacity: 0.8; line-height: 1.6; }

/* ===================== MOBILE MENU ===================== */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(253,246,240,0.97);
    flex-direction: column; align-items: center; gap: 0;
    padding: 16px 0;
    transform: translateY(-120%); opacity: 0;
    transition: transform 0.35s ease, opacity 0.3s;
    border-bottom: 1px solid rgba(244,197,197,0.3);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 14px 0; font-size: 0.9rem; }
}

@media (max-width: 860px) {
  .hero { flex-direction: column; padding: 100px 5% 48px; text-align: center; }
  .hero-cta-row { justify-content: center; }
  .hero-visual { max-width: 100%; }
  .hcard2, .hcard3, .hcard4 { margin-left: 0; }
  .swatch-row1 { justify-content: center; }
  .coll-grid { grid-template-columns: 1fr 1fr; min-height: auto; }
  .coll-card { min-height: 220px; }
  .product-row { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feat-item { border-right: none; border-bottom: 1px solid rgba(244,197,197,0.4); }
  .feat-item:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .why-divider { display: none; }
  .about-hero { flex-direction: column; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .coll-grid { grid-template-columns: 1fr; }
  .product-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
 /* ===================== CONTACT CLASSES ===================== */
 
    /* ── hero ──────────────────────────────────────────────────── */
    .contact-hero {
      padding: 120px 5% 64px;
      background: linear-gradient(135deg, #FDF6F0 0%, #FBE8EF 60%, #F2D0DB 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .contact-hero .hero-petals { position: absolute; inset: 0; pointer-events: none; }

    .contact-hero-eyebrow {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
    }
    .contact-hero h1 {
      font-family: var(--ff-display);
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 600; color: var(--charcoal);
      margin-bottom: 14px; line-height: 1.2;
    }
    .contact-hero h1 em { color: var(--mauve); font-style: italic; }
    .contact-hero p {
      font-size: 1rem; color: var(--text-light);
      max-width: 480px; margin: 0 auto; line-height: 1.7;
    }

    /* ── main two-col layout ───────────────────────────────────── */
    .contact-body {
      display: grid;
      gap: 0;
    }

    /* ── LEFT: info column ─────────────────────────────────────── */
    .contact-info {
      padding: 64px 40px 64px 5%;
      display: flex; flex-direction: column; gap: 40px;
    }

    .contact-info-heading {
      font-family: var(--ff-display);
      font-size: 1.6rem; font-weight: 600;
      color: var(--mauve); margin-bottom: 8px;
    }
    .contact-info-sub {
      font-size: 0.9rem; color: var(--text-light); line-height: 1.7;
    }

    .contact-detail-list {
      display: flex; flex-direction: column; gap: 24px;
    }
    .contact-detail {
      display: flex; align-items: flex-start; gap: 16px;
    }
    .contact-detail-icon {
      width: 40px; height: 40px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }
    .contact-detail-text strong {
      display: block;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 3px;
    }
    .contact-detail-text span {
      font-size: 0.9rem; color: var(--text); line-height: 1.5;
    }
    .contact-detail-text a {
      font-size: 0.9rem; color: var(--mauve);
      text-decoration: none; transition: color 0.2s;
    }
    .contact-detail-text a:hover { color: var(--mauve-dark); }

    .contact-social-label {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--text-light); margin-bottom: 14px;
    }
    .contact-socials {
      display: flex; gap: 12px;
    }
    .social-pill {
      display: flex; align-items: center; gap: 8px;
      padding: 9px 18px;
      border-radius: 99px;
      background: #fff;
      border: 1.5px solid rgba(244,197,197,0.5);
      font-size: 0.8rem; font-weight: 700;
      color: var(--mauve);
      text-decoration: none;
      transition: background 0.22s, border-color 0.22s, transform 0.2s;
      box-shadow: 0 2px 10px rgba(139,75,107,0.07);
    }
    .social-pill:hover {
      background: var(--mauve); color: #fff;
      border-color: var(--mauve); transform: translateY(-2px);
    }
    .social-pill span { font-size: 1rem; }

    /* quote inside info */
    .contact-quote {
      border-left: 3px solid var(--blush);
      padding-left: 18px;
    }
    .contact-quote p {
      font-family: var(--ff-script);
      font-size: 1.3rem; color: var(--mauve); line-height: 1.5;
    }
    .contact-quote small {
      font-size: 0.75rem; color: var(--text-light);
      letter-spacing: 0.1em; text-transform: uppercase;
    }

    /* ── RIGHT: form column ────────────────────────────────────── */
    .contact-form-wrap {
      padding: 64px 5% 64px 48px;
      background: var(--cream);
    }

    .contact-form-title {
      font-family: var(--ff-display);
      font-size: 1.5rem; font-weight: 600;
      color: var(--charcoal); margin-bottom: 6px;
    }
    .contact-form-sub {
      font-size: 0.88rem; color: var(--text-light);
      margin-bottom: 36px; line-height: 1.6;
    }

    .form-row {
      display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
      margin-bottom: 18px;
    }
    .form-group {
      display: flex; flex-direction: column; gap: 7px;
      margin-bottom: 18px;
    }
    .form-group.half { margin-bottom: 0; } /* inside .form-row */

    .form-label {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--text-light);
    }
    .form-inputt,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid rgba(244,197,197,0.55);
      border-radius: var(--radius-sm);
      background: #fff;
      font-family: var(--ff-body);
      font-size: 0.9rem;
      color: var(--text);
      outline: none;
      transition: border-color 0.22s, box-shadow 0.22s;
      box-shadow: 0 1px 6px rgba(139,75,107,0.04);
    }
    .form-inputt:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: var(--mauve);
      box-shadow: 0 0 0 3px rgba(139,75,107,0.1);
    }
    .form-inputt::placeholder,
    .form-textarea::placeholder { color: #c0a8a8; }

    .form-select { appearance: none; cursor: pointer; }
    .form-select-wrap { position: relative; }
    .form-select-wrap::after {
      content: '›';
      position: absolute; right: 14px; top: 50%; transform: translateY(-50%) rotate(90deg);
      color: var(--mauve); pointer-events: none; font-size: 1.1rem;
    }

    .form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

    /* topic chips */
    .topic-chips {
      display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px;
    }
    .topic-chip {
      padding: 7px 16px;
      border-radius: 99px;
      border: 1.5px solid rgba(244,197,197,0.6);
      background: transparent;
      font-family: var(--ff-body); font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.05em;
      color: var(--text-light);
      cursor: pointer; transition: 0.2s;
    }
    .topic-chip:hover,
    .topic-chip.active {
      background: var(--mauve); border-color: var(--mauve); color: #fff;
    }

    .form-submit {
      display: flex; align-items: center; gap: 16px; margin-top: 8px;
    }
    .form-note {
      font-size: 0.78rem; color: var(--text-light); line-height: 1.5;
    }

    /* success state */
    .form-success {
      display: none;
      text-align: center;
      padding: 48px 24px;
      background: #fff;
      border-radius: var(--radius-md);
      border: 1px solid rgba(244,197,197,0.4);
      box-shadow: var(--shadow);
    }
    .form-success.show { display: block; }
    .form-success-icon { font-size: 3rem; margin-bottom: 16px; }
    .form-success h3 {
      font-family: var(--ff-display); font-size: 1.5rem;
      color: var(--mauve); margin-bottom: 8px;
    }
    .form-success p { font-size: 0.9rem; color: var(--text-light); }

    /* ── FAQ strip ─────────────────────────────────────────────── */
    .faq-section {
      padding-left: 10%;
      padding-right: 10%;
      padding-bottom: 5%;
      padding-top: 5%;
      background: var(--cream);
    }
    .faq-grid {
  display: flex;
  gap: 16px; /* use whatever gap value your current grid has */
  align-items: flex-start;
}

.faq-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px; /* use whatever row-gap your current grid has */
}

    .faq-item {
      background: #fff;
      border-radius: var(--radius-md);
      border: 1px solid rgba(244,197,197,0.35);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .faq-q {
      width: 100%; text-align: left;
      padding: 20px 24px;
      background: none; border: none; cursor: pointer;
      font-family: var(--ff-body); font-size: 0.92rem; font-weight: 700;
      color: var(--charcoal);
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px;
      transition: color 0.2s;
    }
    .faq-q:hover { color: var(--mauve); }
    .faq-q .faq-icon {
      font-size: 1.2rem; color: var(--mauve); flex-shrink: 0;
      transition: transform 0.3s;
    }
    .faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.35s ease, padding 0.3s;
      font-size: 0.87rem; color: var(--text-light); line-height: 1.7;
      padding: 0 24px;
    }
    .faq-item.open .faq-a {
      max-height: 200px;
      padding: 0 24px 20px;
    }
    
    @media (max-width: 640px) {
      .faq-grid {
        flex-direction: column;
      }
      .faq-col {
        width: 100%;
      }
    }
    /* ── responsive ─────────────────────────────────────────────── */
    @media (max-width: 860px) {
      .contact-body { grid-template-columns: 1fr; }
      .contact-info { padding: 48px 5%; }
      .contact-form-wrap { padding: 48px 5%; }
      .form-row { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      .contact-socials { flex-wrap: wrap; }
    }
    @media (max-width: 520px) {
      .contact-hero { padding: 110px 5% 48px; }
      .form-submit { flex-direction: column; align-items: flex-start; }
    }

    /* ===================== SIZE GUIDE ===================== */
     .info-hero {
      padding: 120px 5% 60px;
      background: linear-gradient(135deg, #FDF6F0 0%, #FBE8EF 60%, #F2D0DB 100%);
      text-align: center;
      position: relative; overflow: hidden;
    }
    .info-hero .hero-petals { position: absolute; inset: 0; pointer-events: none; }
    .info-eyebrow {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
    }
    .info-hero h1 {
      font-family: var(--ff-display);
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 600; color: var(--charcoal); margin-bottom: 14px;
    }
    .info-hero h1 em { color: var(--mauve); font-style: italic; }
    .info-hero p {
      font-size: 1rem; color: var(--text-light);
      max-width: 500px; margin: 0 auto; line-height: 1.7;
    }

    /* page body */
    .info-body { max-width: 900px; margin: 0 auto; padding: 64px 5% 80px; }

    /* section blocks */
    .info-block { margin-bottom: 56px; }
    .info-block-title {
      font-family: var(--ff-display);
      font-size: 1.4rem; font-weight: 600; color: var(--mauve);
      margin-bottom: 6px;
      display: flex; align-items: center; gap: 12px;
    }
    .info-block-title::after {
      content: ''; flex: 1; height: 1px; background: rgba(244,197,197,0.5);
    }
    .info-block-sub {
      font-size: 0.88rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.6;
    }

    /* how to measure steps */
    .measure-steps {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
      margin-bottom: 40px;
    }
    .measure-step {
      background: #fff; border-radius: var(--radius-md);
      border: 1px solid rgba(244,197,197,0.35);
      padding: 24px 20px;
      box-shadow: var(--shadow);
      text-align: center;
    }
    .measure-step-num {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--mauve); color: #fff;
      font-size: 0.85rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 12px;
    }
    .measure-step-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 8px;   /* centers the container */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .measure-step-icon img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }
    
    .measure-step h4 {
      font-family: var(--ff-display); font-size: 0.95rem; font-weight: 600;
      color: var(--charcoal); margin-bottom: 6px;
    }
    .measure-step p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

    /* tip box */
    .tip-box {
      background: var(--light-pink);
      border-left: 4px solid var(--mauve);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: 16px 20px;
      margin-bottom: 32px;
      font-size: 0.88rem; color: var(--text); line-height: 1.6;
    }
    .tip-box strong { color: var(--mauve); }

    /* size tables */
    .size-tabs {
      display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap;
    }
    .size-tab {
      padding: 8px 20px; border-radius: 99px;
      border: 1.5px solid rgba(244,197,197,0.6);
      background: transparent;
      font-family: var(--ff-body); font-size: 0.8rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--text-light); cursor: pointer; transition: 0.2s;
    }
    .size-tab.active { background: var(--mauve); border-color: var(--mauve); color: #fff; }

    .size-table-wrap { overflow-x: auto; }
    .size-table {
      width: 100%; border-collapse: collapse;
      font-size: 0.88rem;
      display: none;
    }
    .size-table.active { display: table; }
    .size-table thead tr {
      background: var(--mauve); color: #fff;
    }
    .size-table th {
      padding: 12px 16px; text-align: left;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
    }
    .size-table td {
      padding: 12px 16px;
      border-bottom: 1px solid rgba(244,197,197,0.3);
      color: var(--text);
    }
    .size-table tbody tr:nth-child(even) { background: #fff; }
    .size-table tbody tr:nth-child(odd)  { background: var(--cream); }
    .size-table tbody tr:hover { background: var(--light-pink); }
    .size-table td:first-child {
      font-weight: 700; color: var(--mauve);
    }

    /* fit finder */
    .fit-finder {
      background: #fff; border-radius: var(--radius-md);
      border: 1px solid rgba(244,197,197,0.4);
      box-shadow: var(--shadow); padding: 32px;
    }
    .fit-finder h3 {
      font-family: var(--ff-display); font-size: 1.15rem;
      color: var(--mauve); margin-bottom: 20px;
    }
    .fit-finder-row {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px;
    }
    .fit-input-group { display: flex; flex-direction: column; gap: 7px; }
    .fit-label {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--text-light);
    }
    .fit-input {
      padding: 12px 14px; border: 1.5px solid rgba(244,197,197,0.55);
      border-radius: var(--radius-sm); font-family: var(--ff-body);
      font-size: 0.9rem; color: var(--text); outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .fit-input:focus {
      border-color: var(--mauve);
      box-shadow: 0 0 0 3px rgba(139,75,107,0.1);
    }
    .fit-result {
      display: none; margin-top: 16px;
      padding: 18px 20px;
      background: var(--light-pink);
      border-radius: var(--radius-sm);
      border-left: 4px solid var(--mauve);
    }
    .fit-result.show { display: block; }
    .fit-result strong { color: var(--mauve); font-size: 1.1rem; }
    .fit-result p { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }

    /* responsive */
    @media (max-width: 640px) {
      .measure-steps { grid-template-columns: 1fr; }
      .fit-finder-row { grid-template-columns: 1fr; }
    }

    /* ===================== CARE INSTRUCTIONS ===================== */

    .info-hero {
      padding: 120px 5% 60px;
      background: linear-gradient(135deg, #FDF6F0 0%, #FBE8EF 60%, #F2D0DB 100%);
      text-align: center;
      position: relative; overflow: hidden;
    }
    .info-hero .hero-petals { position: absolute; inset: 0; pointer-events: none; }
    .info-eyebrow {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
    }
    .info-hero h1 {
      font-family: var(--ff-display);
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 600; color: var(--charcoal); margin-bottom: 14px;
    }
    .info-hero h1 em { color: var(--mauve); font-style: italic; }
    .info-hero p {
      font-size: 1rem; color: var(--text-light);
      max-width: 500px; margin: 0 auto; line-height: 1.7;
    }

    .info-body { max-width: 900px; margin: 0 auto; padding: 64px 5% 80px; }

    .info-block { margin-bottom: 56px; }
    .info-block-title {
      font-family: var(--ff-display);
      font-size: 1.4rem; font-weight: 600; color: var(--mauve);
      margin-bottom: 6px;
      display: flex; align-items: center; gap: 12px;
    }
    .info-block-title::after {
      content: ''; flex: 1; height: 1px; background: rgba(244,197,197,0.5);
    }
    .info-block-sub {
      font-size: 0.88rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.6;
    }

    /* symbol legend */
    .symbol-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
      margin-bottom: 40px;
    }
    .symbol-card {
      background: #fff; border-radius: var(--radius-md);
      border: 1px solid rgba(244,197,197,0.35);
      box-shadow: var(--shadow);
      padding: 20px 16px; text-align: center;
    }
    .symbol-icon { font-size: 2rem; margin-bottom: 8px; }
    .symbol-card h4 {
      font-family: var(--ff-display); font-size: 0.88rem;
      font-weight: 600; color: var(--mauve); margin-bottom: 4px;
    }
    .symbol-card p { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }

    /* collection care cards */
    .care-cards {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    }
    .care-card {
      background: #fff; border-radius: var(--radius-md);
      border: 1px solid rgba(244,197,197,0.35);
      box-shadow: var(--shadow); overflow: hidden;
    }
    .care-card-head {
      padding: 18px 22px;
      background: var(--mauve);
      display: flex; align-items: center; gap: 12px;
    }
    .care-card-head-icon { font-size: 1.4rem; }
    .care-card-head h3 {
      font-family: var(--ff-display); font-size: 1rem;
      font-weight: 600; color: #fff;
    }
    .care-card-head p {
      font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 2px;
    }
    .care-card-body { padding: 20px 22px; }
    .care-row {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(244,197,197,0.2);
      font-size: 0.85rem;
    }
    .care-row:last-child { border-bottom: none; padding-bottom: 0; }
    .care-row-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
    .care-row-label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 2px;
    }
    .care-row span { color: var(--text); }

    /* do / don't */
    .do-dont {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    }
    .do-box, .dont-box {
      border-radius: var(--radius-md); padding: 24px 22px;
      box-shadow: var(--shadow);
    }
    .do-box { background: #f0faf4; border: 1px solid #b2dfcb; }
    .dont-box { background: #fff5f7; border: 1px solid #f2b8c6; }
    .do-box h4 { color: #2a7a50; font-family: var(--ff-display); margin-bottom: 14px; }
    .dont-box h4 { color: #c05070; font-family: var(--ff-display); margin-bottom: 14px; }
    .do-dont-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .do-dont-list li {
      font-size: 0.85rem; color: var(--text); line-height: 1.5;
      display: flex; align-items: flex-start; gap: 10px;
    }
    .do-dont-list li span { flex-shrink: 0; font-size: 1rem; }

    /* tip box */
    .tip-box {
      background: var(--light-pink);
      border-left: 4px solid var(--mauve);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: 16px 20px;
      margin-bottom: 32px;
      font-size: 0.88rem; color: var(--text); line-height: 1.6;
    }
    .tip-box strong { color: var(--mauve); }

    /* storage tips */
    .storage-tips {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    }
    .storage-tip {
      background: var(--light-pink); border-radius: var(--radius-md);
      padding: 22px 18px; text-align: center;
      border: 1px solid rgba(244,197,197,0.4);
    }
    .storage-tip-icon { font-size: 1.8rem; margin-bottom: 10px; }
    .storage-tip h4 {
      font-family: var(--ff-display); font-size: 0.92rem;
      color: var(--mauve); margin-bottom: 6px;
    }
    .storage-tip p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

    @media (max-width: 640px) {
      .symbol-grid { grid-template-columns: 1fr 1fr; }
      .care-cards { grid-template-columns: 1fr; }
      .do-dont { grid-template-columns: 1fr; }
      .storage-tips { grid-template-columns: 1fr; }
    }

    /* ===================== RETURN POLICY ===================== */

    .info-hero {
      padding: 120px 5% 60px;
      background: linear-gradient(135deg, #FDF6F0 0%, #FBE8EF 60%, #F2D0DB 100%);
      text-align: center;
      position: relative; overflow: hidden;
    }
    .info-hero .hero-petals { position: absolute; inset: 0; pointer-events: none; }
    .info-eyebrow {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
    }
    .info-hero h1 {
      font-family: var(--ff-display);
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 600; color: var(--charcoal); margin-bottom: 14px;
    }
    .info-hero h1 em { color: var(--mauve); font-style: italic; }
    .info-hero p {
      font-size: 1rem; color: var(--text-light);
      max-width: 500px; margin: 0 auto; line-height: 1.7;
    }

    .info-body { max-width: 860px; margin: 0 auto; padding: 64px 5% 80px; }

    .info-block { margin-bottom: 52px; }
    .info-block-title {
      font-family: var(--ff-display);
      font-size: 1.4rem; font-weight: 600; color: var(--mauve);
      margin-bottom: 6px;
      display: flex; align-items: center; gap: 12px;
    }
    .info-block-title::after {
      content: ''; flex: 1; height: 1px; background: rgba(244,197,197,0.5);
    }
    .info-block-sub {
      font-size: 0.88rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.6;
    }

    /* policy summary strip */
    .policy-strip {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
      margin-bottom: 48px;
    }
    .policy-highlight {
      background: #fff; border-radius: var(--radius-md);
      border: 1px solid rgba(244,197,197,0.35);
      box-shadow: var(--shadow);
      padding: 24px 20px; text-align: center;
    }
    .policy-highlight-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 10px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .policy-highlight-icon img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    .policy-highlight h4 {
      font-family: var(--ff-display); font-size: 1rem;
      color: var(--mauve); margin-bottom: 6px;
    }
    .policy-highlight p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }

    /* process steps */
    .process-steps {
      display: flex; flex-direction: column; gap: 0;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute; left: 20px; top: 24px; bottom: 24px;
      width: 2px; background: rgba(244,197,197,0.5);
    }
    .process-step {
      display: flex; gap: 20px; align-items: flex-start;
      padding: 20px 0;
      position: relative;
    }
    .process-num {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--mauve); color: #fff;
      font-size: 0.88rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; position: relative; z-index: 1;
    }
    .process-content { flex: 1; padding-top: 8px; }
    .process-content h4 {
      font-family: var(--ff-display); font-size: 1rem;
      color: var(--charcoal); margin-bottom: 4px;
    }
    .process-content p { font-size: 0.86rem; color: var(--text-light); line-height: 1.6; }
    .process-content a { color: var(--mauve); font-weight: 700; }

    /* eligibility table */
    .eligibility-table {
      width: 100%; border-collapse: collapse; font-size: 0.88rem;
      margin-bottom: 8px;
    }
    .eligibility-table thead tr { background: var(--mauve); color: #fff; }
    .eligibility-table th {
      padding: 12px 16px; text-align: left;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    }
    .eligibility-table td {
      padding: 12px 16px;
      border-bottom: 1px solid rgba(244,197,197,0.3);
      vertical-align: top;
    }
    .eligibility-table tbody tr:nth-child(even) { background: #fff; }
    .eligibility-table tbody tr:nth-child(odd)  { background: var(--cream); }
    .eligible   { color: #2a7a50; font-weight: 700; }
    .ineligible { color: #c05070; font-weight: 700; }

    /* tip box */
    .tip-box {
      background: var(--light-pink);
      border-left: 4px solid var(--mauve);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: 16px 20px; margin-bottom: 32px;
      font-size: 0.88rem; color: var(--text); line-height: 1.6;
    }
    .tip-box strong { color: var(--mauve); }

    /* warning box */
    .warn-box {
      background: #fff8f0;
      border-left: 4px solid var(--gold);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: 16px 20px; margin-bottom: 24px;
      font-size: 0.88rem; color: var(--text); line-height: 1.6;
    }

    /* refund timeline */
    .refund-timeline {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
    }
    .refund-step {
      background: var(--light-pink); border-radius: var(--radius-md);
      padding: 18px 14px; text-align: center;
      border: 1px solid rgba(244,197,197,0.4);
      position: relative;
    }
    .refund-step::after {
      content: '→';
      position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
      color: var(--mauve); font-size: 1rem; font-weight: 700;
    }
    .refund-step:last-child::after { display: none; }
    .refund-step-icon {
      width: 50px;
      height: 50px;
      margin: 0 auto 8px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .refund-step-icon img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }
    
    .refund-step h4 { font-size: 0.8rem; font-weight: 700; color: var(--mauve); margin-bottom: 4px; }
    .refund-step p { font-size: 0.72rem; color: var(--text-light); }

    /* contact CTA block */
    .contact-cta-block {
      background: var(--mauve);
      border-radius: var(--radius-md);
      padding: 36px 32px;
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
      box-shadow: var(--shadow-md);
    }
    .contact-cta-block h3 {
      font-family: var(--ff-display); font-size: 1.3rem;
      color: #fff; margin-bottom: 6px;
    }
    .contact-cta-block p { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
    .btn-white {
      display: inline-block; padding: 13px 28px;
      background: #fff; color: var(--mauve);
      font-family: var(--ff-body); font-size: 0.85rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      border-radius: 99px; white-space: nowrap;
      transition: background 0.2s, transform 0.2s;
      flex-shrink: 0;
    }
    .btn-white:hover { background: var(--cream); transform: translateY(-2px); }

    @media (max-width: 700px) {
      .policy-strip { grid-template-columns: 1fr; }
      .refund-timeline { grid-template-columns: 1fr 1fr; }
      .refund-step::after { display: none; }
      .contact-cta-block { flex-direction: column; text-align: center; }
    }
    @media (max-width: 420px) {
      .refund-timeline { grid-template-columns: 1fr; }
    }
    
    /* ===================== PRODUCT ===================== */
    
     /* ── breadcrumb ──────────────────────────────────────────── */
    .breadcrumb {
      padding: 86px 5% 0;
      background: var(--cream);
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      color: var(--text-light);
      display: flex; align-items: center; gap: 8px;
    }
    .breadcrumb a { color: var(--text-light); transition: color .2s; }
    .breadcrumb a:hover { color: var(--mauve); }
    .breadcrumb .sep { opacity: .4; }
    .breadcrumb .current { color: var(--mauve); font-weight: 700; }

    /* ── product layout ──────────────────────────────────────── */
    .product-page {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      min-height: 80vh;
      background: var(--cream);
    }

    /* ── LEFT: image panel ───────────────────────────────────── */
    /*  No coloured bg — just cream so it blends with the page   */
    .pp-image-panel {
      position: sticky;
      top: 68px;
      height: calc(100vh - 68px);
      background: var(--cream);
      display: flex;
      align-items: stretch;
      gap: 0;
      padding: 32px 24px 32px 5%;
      overflow: hidden;
    }

    /* thumbnail strip */
    .pp-thumbs {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-right: 16px;
      overflow-y: auto;
      scrollbar-width: none;
      padding: 4px 0;
      flex-shrink: 0;
    }
    .pp-thumbs::-webkit-scrollbar { display: none; }

    .pp-thumb {
      width: 64px;
      height: 80px;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      transition: border-color 0.22s, transform 0.2s, box-shadow 0.2s;
      flex-shrink: 0;
      background: var(--mid-pink);
      box-shadow: 0 2px 8px rgba(139,75,107,0.08);
    }
    .pp-thumb img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 25%;
      display: block;
    }
    .pp-thumb.active {
      border-color: var(--mauve);
      box-shadow: 0 4px 14px rgba(139,75,107,0.22);
    }

    /* main image */
    .pp-main-img-wrap {
      max-width: 600px; height: 750px;
      flex: 1;
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 6px 32px rgba(139,75,107,0.12);
    }
    .pp-main-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 20%;
      display: block;
      transition: transform 0.5s ease, opacity 0.25s ease;
    }
    .pp-main-img-wrap img.switching {
      opacity: 1;
      transform: scale(1.02);
    }
  
    /* badge */
    .pp-badge {
      position: absolute; top: 16px; left: 16px; z-index: 3;
      padding: 5px 14px;
      border-radius: 99px;
      background: rgba(255,255,255,0.92);
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--mauve);
      backdrop-filter: blur(6px);
    }

    /* arrow nav on main image */
    .pp-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 4;
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.85);
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--mauve);
      box-shadow: 0 2px 10px rgba(0,0,0,0.12);
      transition: background 0.2s, transform 0.2s;
      backdrop-filter: blur(4px);
      opacity: 0;
    }
    .pp-main-img-wrap:hover .pp-arrow { opacity: 1; }
    .pp-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
    .pp-arrow-prev { left: 12px; }
    .pp-arrow-next { right: 12px; }

    /* image counter dot */
    .pp-img-dots {
      position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
      display: flex; gap: 6px; z-index: 4;
    }
    .pp-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(255,255,255,0.5);
      transition: background 0.2s, transform 0.2s;
      cursor: pointer;
    }
    .pp-dot.active { background: #fff; transform: scale(1.3); }

    /* ── RIGHT: info panel ───────────────────────────────────── */
    .pp-info-panel {
      padding: 100px 5% 80px 40px;
      display: flex; flex-direction: column;
      background: var(--cream);
    }

    .pp-collection-label {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
    }
    .pp-name {
      font-family: var(--ff-display);
      font-size: clamp(2rem, 3.2vw, 2.8rem);
      font-weight: 600; line-height: 1.15;
      color: var(--charcoal); margin-bottom: 8px;
    }
    .pp-tagline {
      font-family: var(--ff-script);
      font-size: 1.25rem; color: var(--mauve);
      margin-bottom: 20px;
    }
    .pp-price {
      font-family: var(--ff-display);
      font-size: 2rem; font-weight: 700;
      color: var(--mauve); margin-bottom: 18px;
    }
    .pp-desc {
      font-size: 0.93rem; line-height: 1.8;
      color: var(--text-light);
      max-width: 460px; margin-bottom: 28px;
      border-left: 3px solid var(--blush);
      padding-left: 16px;
    }

    /* selectors */
    .pp-section-label {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--text-light); margin-bottom: 12px;
    }
    .pp-colors { display: flex; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
    .color-btn {
      width: 34px; height: 34px; border-radius: 50%;
      border: 3px solid transparent;
      box-shadow: 0 1px 6px rgba(0,0,0,0.14);
      cursor: pointer;
      transition: transform 0.2s, border-color 0.2s;
    }
    .color-btn:hover { transform: scale(1.18); }
    .color-btn.active { border-color: var(--mauve); transform: scale(1.18); }
    .color-name-display {
      font-size: 0.82rem; color: var(--mauve); font-weight: 700;
      margin-bottom: 20px; min-height: 18px;
    }
    .pp-sizes { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
    .size-btn {
      min-width: 48px; padding: 9px 14px;
      border: 1.5px solid rgba(244,197,197,0.6);
      border-radius: var(--radius-sm);
      background: transparent;
      font-family: var(--ff-body); font-size: 0.82rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--text-light); cursor: pointer; transition: 0.2s;
    }
    .size-btn:hover, .size-btn.active {
      background: var(--mauve); border-color: var(--mauve); color: #fff;
    }

    /* CTAs */
    .pp-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
    .btn-primary.btn-lg { padding: 15px 36px; font-size: 0.88rem; }
    .btn-ghost.btn-lg   { padding: 14px 36px; font-size: 0.88rem; }

    /* features */
    .pp-divider { height: 1px; background: rgba(244,197,197,0.4); margin: 0 0 28px; }
    .pp-features {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
.pp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pp-feat {
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(244,197,197,0.35);
  box-shadow: 0 2px 10px rgba(139,75,107,0.06);
  padding: 14px 16px;
  display: flex;
  align-items: center;
}

.pp-feat-icon-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.pp-feat-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.pp-feat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pp-feat-text {
  display: flex;
  flex-direction: column;
}

.pp-feat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.pp-feat-value {
  font-size: 0.82rem;
  color: var(--text);
}
    /* ── related ─────────────────────────────────────────────── */
    .related-section { padding: 72px 10%; background: var(--light-pink); }
    .related-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; margin-top: 40px;
    }

    /* ── 404 ─────────────────────────────────────────────────── */
    .not-found {
      min-height: 70vh; display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 120px 5% 60px; text-align: center;
    }
    .not-found h2 { font-family: var(--ff-display); font-size: 2rem; color: var(--mauve); margin-bottom: 12px; }
    .not-found p { color: var(--text-light); margin-bottom: 28px; }

    /* ── toast ───────────────────────────────────────────────── */
    .toast {
      position: fixed; bottom: 32px; left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: var(--mauve); color: #fff;
      padding: 12px 28px; border-radius: 99px;
      font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em;
      box-shadow: var(--shadow-md);
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s, transform 0.3s;
      z-index: 9999; white-space: nowrap;
    }
    .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

    /* ── responsive ──────────────────────────────────────────── */
    @media (max-width: 860px) {
      .product-page { grid-template-columns: 1fr; }
      .pp-image-panel {
        position: relative; top: 0;
        height: auto; min-height: 70vw;
        padding: 85px 5% 16px;
      }
      .pp-thumbs { flex-direction: row; flex-shrink: 0; margin-right: 0; margin-bottom: 0; overflow-x: auto; }
      .pp-thumb { width: 54px; height: 68px; }
      .pp-image-panel { flex-direction: column; }
      .pp-thumbs { flex-direction: row; order: 2; margin-top: 10px; }
      .pp-main-img-wrap { order: 1; height: 62vw; }
      .pp-info-panel { padding: 32px 5% 60px; }
      .pp-features { grid-template-columns: 1fr 1fr; }
      .related-grid { grid-template-columns: 1fr 1fr; }
    }    
    @media (max-width: 520px) {
      .pp-main-img-wrap { height: 80vw; }
      .pp-features { grid-template-columns: 1fr; }
      .related-grid { grid-template-columns: 1fr; }
      .pp-cta-row { flex-direction: column; }
    }

    /* ── Account ───────────────────────────────────── */

    .skeleton-wrap {
      padding: 106px 5% 80px;
      display: flex; flex-direction: column; align-items: center;
      gap: 16px; min-height: 100vh; justify-content: center;
    }
    .skeleton-script {
      font-family: var(--ff-script); font-size: 2rem; color: var(--mauve); opacity: 0.7;
    }
    .skeleton-sub { font-size: 0.88rem; color: var(--text-light); }
    .skeleton-dots { display: flex; gap: 8px; margin-top: 8px; }
    .skeleton-dot {
      width: 8px; height: 8px; border-radius: 50%; background: var(--mauve);
      animation: dotPulse 1.2s ease-in-out infinite;
    }
    .skeleton-dot:nth-child(2) { animation-delay: 0.2s; }
    .skeleton-dot:nth-child(3) { animation-delay: 0.4s; }
    @keyframes dotPulse {
      0%,80%,100% { transform: scale(0.6); opacity: 0.4; }
      40%          { transform: scale(1);   opacity: 1; }
    }

    /* ── ERROR STATE ── */
    .error-wrap {
      display: none;
      padding: 106px 5% 80px; min-height: 100vh;
      flex-direction: column; align-items: center; justify-content: center;
      text-align: center; gap: 16px;
    }
    .error-icon { font-size: 3rem; }
    .error-wrap h2 { font-family: var(--ff-display); font-size: 1.6rem; color: var(--mauve); }
    .error-wrap p { font-size: 0.9rem; color: var(--text-light); max-width: 340px; line-height: 1.7; }

    /* ── PAGE (hidden until data loads) ── */
    #page { display: none; }

    /* ── PAGE HERO ── */
    .account-hero {
      padding: 106px 5% 0;
      background: linear-gradient(135deg, #FDF6F0 0%, #FBE8EF 60%, #F2D0DB 100%);
      position: relative; overflow: hidden;
    }
    .hero-petals { position:absolute; inset:0; pointer-events:none; }
    .petal { position:absolute; border-radius:60% 40% 60% 40%; opacity:0.15; animation:floatPetal 12s ease-in-out infinite; }
    .p1 { width:70px; height:44px; background:var(--mauve); top:10%; left:6%; animation-delay:0s; }
    .p2 { width:44px; height:28px; background:var(--dusty); top:18%; right:18%; animation-delay:2s; }
    .p3 { width:58px; height:36px; background:var(--gold); top:55%; left:4%; animation-delay:4s; }
    .p4 { width:80px; height:50px; background:var(--blush); top:65%; right:7%; animation-delay:1s; }
    @keyframes floatPetal {
      0%,100% { transform:translateY(0) rotate(0deg); }
      50%      { transform:translateY(-16px) rotate(8deg); }
    }
    .hero-inner {
      position:relative; z-index:1; max-width:1100px; margin:0 auto;
      padding:48px 0 0; display:flex; align-items:flex-end;
      justify-content:space-between; gap:32px;
      animation:fadeSlideUp 0.8s ease both;
    }
    @keyframes fadeSlideUp {
      from { opacity:0; transform:translateY(22px); }
      to   { opacity:1; transform:translateY(0); }
    }
    .hero-eyebrow { font-size:0.72rem; font-weight:700; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
    .hero-title { font-family:var(--ff-display); font-size:clamp(2rem,4vw,3rem); font-weight:600; line-height:1.15; color:var(--charcoal); }
    .hero-title em { color:var(--mauve); font-style:italic; }
    .hero-script { font-family:var(--ff-script); font-size:1.2rem; color:var(--mauve); margin-top:8px; }
    .hero-avatar-card {
      background:rgba(255,255,255,0.85); backdrop-filter:blur(10px);
      border:1px solid rgba(244,197,197,0.5); border-radius:var(--radius-md) var(--radius-md) 0 0;
      padding:28px 32px; display:flex; align-items:center; gap:20px;
      box-shadow:var(--shadow-md); min-width:340px;
    }
    .avatar-circle {
      width:68px; height:68px; border-radius:50%; flex-shrink:0;
      background:linear-gradient(135deg,var(--blush),var(--mauve));
      display:flex; align-items:center; justify-content:center;
      font-family:var(--ff-display); font-size:1.5rem; font-weight:600;
      color:#fff; box-shadow:0 4px 18px rgba(139,75,107,0.3);
      overflow:hidden;
    }
    .avatar-circle img { width:100%; height:100%; object-fit:cover; border-radius:50%; }
    .avatar-info h3 { font-family:var(--ff-display); font-size:1.1rem; color:var(--charcoal); }
    .avatar-info p { font-size:0.82rem; color:var(--text-light); margin-top:2px; }
    .plan-pill {
      display:inline-block; margin-top:8px; padding:3px 12px; border-radius:99px;
      background:rgba(139,75,107,0.1); font-size:0.68rem; font-weight:700;
      letter-spacing:0.12em; text-transform:uppercase; color:var(--mauve);
      border:1px solid rgba(139,75,107,0.25);
    }
    .verified-badge {
      display:inline-flex; align-items:center; gap:4px;
      font-size:0.68rem; font-weight:700; color:#2a7a50;
      margin-left:6px;
    }

    /* ── BODY LAYOUT ── */
    .account-body {
      max-width:1100px; margin:0 auto; padding:40px 5% 80px;
      display:grid; grid-template-columns:220px 1fr; gap:32px; align-items:start;
    }

    /* ── SIDEBAR ── */
    .sidebar { position:sticky; top:84px; display:flex; flex-direction:column; gap:4px; }
    .sidebar-label { font-size:0.65rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:var(--text-light); padding:0 14px; margin-bottom:8px; margin-top:8px; }
    .sidebar-link {
      display:flex; align-items:center; gap:10px; padding:11px 14px;
      border-radius:var(--radius-sm); font-size:0.86rem; font-weight:700;
      color:var(--text-light); cursor:pointer; transition:background 0.2s, color 0.2s;
      border:none; background:none; font-family:var(--ff-body); text-align:left; width:100%;
    }
    .sidebar-link:hover, .sidebar-link.active { background:var(--light-pink); color:var(--mauve); }
    .sidebar-divider { height:1px; background:rgba(244,197,197,0.4); margin:8px 0; }
    .sidebar-logout {
      display:flex; align-items:center; gap:10px; padding:11px 14px;
      border-radius:var(--radius-sm); font-size:0.86rem; font-weight:700;
      color:#c05070; cursor:pointer; transition:background 0.2s;
      border:none; background:none; font-family:var(--ff-body); text-align:left; width:100%;
    }
    .sidebar-logout:hover { background:#fff5f7; }

    /* ── SECTION CARD ── */
    .main-content { display:flex; flex-direction:column; gap:24px; }
    .section-card { background:#fff; border-radius:var(--radius-md); border:1px solid rgba(244,197,197,0.35); box-shadow:var(--shadow); overflow:hidden; }
    .card-head { padding:22px 28px 16px; border-bottom:1px solid rgba(244,197,197,0.3); display:flex; align-items:center; justify-content:space-between; }
    .card-head-eyebrow { font-size:0.65rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:3px; }
    .card-head h2 { font-family:var(--ff-display); font-size:1.2rem; font-weight:600; color:var(--mauve); }

    /* ── ROWS ── */
    .detail-row {
      display:flex; align-items:center; padding:16px 28px;
      border-bottom:1px solid rgba(244,197,197,0.2); transition:background 0.15s;
    }
    .detail-row:last-child { border-bottom:none; }
    .detail-row:hover { background:#fdf9fb; }
    .detail-label { font-size:0.72rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--text-light); min-width:160px; flex-shrink:0; }
    .detail-value { font-size:0.9rem; color:var(--text); flex:1; display:flex; align-items:center; gap:6px; }
    .detail-value.mono { font-family:monospace; font-size:0.82rem; color:var(--mauve); }
    .google-badge { font-size:0.68rem; font-weight:700; padding:2px 8px; border-radius:99px; background:#e8f0fe; color:#4285f4; letter-spacing:0.06em; }

    .edit-pill {
      padding:5px 14px; border-radius:99px;
      border:1.5px solid rgba(244,197,197,0.6); background:transparent;
      font-family:var(--ff-body); font-size:0.72rem; font-weight:700;
      letter-spacing:0.06em; text-transform:uppercase; color:var(--text-light);
      cursor:pointer; transition:0.2s; white-space:nowrap;
    }
    .edit-pill:hover { background:var(--mauve); border-color:var(--mauve); color:#fff; }

    /* security rows */
    .security-row {
      display:flex; align-items:center; gap:16px; padding:18px 28px;
      border-bottom:1px solid rgba(244,197,197,0.2); transition:background 0.15s;
    }
    .security-row:last-child { border-bottom:none; }
    .security-row:hover { background:#fdf9fb; }
    .sec-icon-wrap { width:40px; height:40px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; }
    .sec-ok   { background:rgba(42,122,80,0.1); }
    .sec-warn { background:rgba(192,80,112,0.1); }
    .sec-text { flex:1; }
    .sec-text h4 { font-size:0.9rem; font-weight:700; color:var(--text); }
    .sec-text p { font-size:0.78rem; color:var(--text-light); margin-top:2px; }
    .sec-status-ok   { font-size:0.7rem; font-weight:700; color:#2a7a50; letter-spacing:0.1em; text-transform:uppercase; white-space:nowrap; }
    .sec-status-warn { font-size:0.7rem; font-weight:700; color:#c05070; letter-spacing:0.1em; text-transform:uppercase; white-space:nowrap; }

    /* pref rows */
    .pref-row {
      display:flex; align-items:center; padding:16px 28px;
      border-bottom:1px solid rgba(244,197,197,0.2); transition:background 0.15s;
    }
    .pref-row:last-child { border-bottom:none; }
    .pref-row:hover { background:#fdf9fb; }
    .pref-label { flex:1; }
    .pref-label h4 { font-size:0.88rem; font-weight:700; color:var(--text); }
    .pref-label p { font-size:0.76rem; color:var(--text-light); margin-top:2px; }
    .toggle-wrap { position:relative; flex-shrink:0; }
    .toggle-input { position:absolute; opacity:0; width:0; height:0; }
    .toggle-slider { display:block; width:44px; height:24px; background:rgba(244,197,197,0.6); border-radius:99px; cursor:pointer; transition:background 0.3s; position:relative; }
    .toggle-slider::after { content:''; position:absolute; width:18px; height:18px; border-radius:50%; background:#fff; top:3px; left:3px; transition:transform 0.3s; box-shadow:0 1px 4px rgba(0,0,0,0.15); }
    .toggle-input:checked + .toggle-slider { background:var(--mauve); }
    .toggle-input:checked + .toggle-slider::after { transform:translateX(20px); }

    /* danger */
    .danger-card { background:#fff5f7; border-radius:var(--radius-md); border:1px solid rgba(192,80,112,0.2); box-shadow:var(--shadow); overflow:hidden; }
    .danger-head { padding:20px 28px 14px; border-bottom:1px solid rgba(192,80,112,0.15); }
    .danger-eyebrow { font-size:0.65rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:#c05070; margin-bottom:3px; }
    .danger-head h2 { font-family:var(--ff-display); font-size:1.1rem; color:#c05070; }
    .danger-row { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:20px 28px; }
    .danger-row h4 { font-size:0.9rem; font-weight:700; color:var(--text); }
    .danger-row p { font-size:0.78rem; color:var(--text-light); margin-top:3px; }
    .btn-danger { padding:10px 22px; border-radius:var(--radius-lg); border:1.5px solid rgba(192,80,112,0.4); background:transparent; font-family:var(--ff-body); font-size:0.78rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:#c05070; cursor:pointer; transition:0.2s; white-space:nowrap; }
    .btn-danger:hover { background:#c05070; color:#fff; }

    /* buttons */
    .btn-primary { display:inline-block; padding:12px 28px; background:var(--mauve); color:#fff; font-family:var(--ff-body); font-size:0.82rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; border-radius:var(--radius-lg); border:none; cursor:pointer; transition:background 0.25s, transform 0.2s, box-shadow 0.25s; box-shadow:0 4px 18px rgba(139,75,107,0.25); }
    .btn-primary:hover { background:var(--mauve-dark); transform:translateY(-2px); box-shadow:0 8px 28px rgba(139,75,107,0.35); }
    .btn-ghost { display:inline-block; padding:11px 28px; background:transparent; color:var(--mauve); font-family:var(--ff-body); font-size:0.82rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; border-radius:var(--radius-lg); border:1.5px solid var(--mauve); cursor:pointer; transition:background 0.25s, color 0.25s; }
    .btn-ghost:hover { background:var(--mauve); color:#fff; }

    /* modal */
    .overlay { position:fixed; inset:0; background:rgba(58,42,42,0.5); backdrop-filter:blur(6px); display:flex; align-items:center; justify-content:center; z-index:2000; opacity:0; pointer-events:none; transition:opacity 0.25s; }
    .overlay.show { opacity:1; pointer-events:all; }
    .modal { background:var(--cream); border:1px solid rgba(244,197,197,0.5); border-radius:var(--radius-md); padding:40px 36px; max-width:400px; width:90%; text-align:center; box-shadow:var(--shadow-md); transform:translateY(16px); transition:transform 0.25s; }
    .overlay.show .modal { transform:translateY(0); }
    .modal-script { font-family:var(--ff-script); font-size:2rem; color:var(--mauve); margin-bottom:4px; }
    .modal h3 { font-family:var(--ff-display); font-size:1.3rem; color:var(--charcoal); margin-bottom:8px; }
    .modal p { font-size:0.88rem; color:var(--text-light); line-height:1.7; }
    .modal-actions { display:flex; gap:12px; margin-top:28px; }
    .modal-actions .btn-ghost, .modal-actions .btn-primary { flex:1; }

    /* edit modal */
    .edit-modal-input {
      width:100%; padding:13px 16px; margin-top:20px;
      border:1.5px solid rgba(244,197,197,0.55); border-radius:var(--radius-sm);
      font-family:var(--ff-body); font-size:0.95rem; color:var(--text); outline:none;
      transition:border-color 0.22s, box-shadow 0.22s;
      background:#fff;
    }
    .edit-modal-input:focus { border-color:var(--mauve); box-shadow:0 0 0 3px rgba(139,75,107,0.1); }

    /* toast */
    .toast { position:fixed; bottom:32px; left:50%; transform:translateX(-50%) translateY(20px); background:var(--mauve); color:#fff; padding:12px 28px; border-radius:99px; font-size:0.84rem; font-weight:700; letter-spacing:0.06em; box-shadow:var(--shadow-md); opacity:0; pointer-events:none; transition:opacity 0.3s, transform 0.3s; z-index:9999; white-space:nowrap; }
    .toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

    /* tabs */
    .tab-panel { display:none; flex-direction:column; gap:24px; }
    .tab-panel.active { display:flex; }

    /* responsive */
    @media (max-width:860px) {
      .account-body { grid-template-columns:1fr; }
      .sidebar { position:relative; top:0; flex-direction:row; flex-wrap:wrap; gap:6px; }
      .sidebar-label, .sidebar-divider { display:none; }
      .sidebar-link, .sidebar-logout { width:auto; padding:9px 16px; font-size:0.8rem; }
      .hero-avatar-card { min-width:auto; }
      .hero-inner { flex-direction:column; align-items:flex-start; }
    }
    @media (max-width:600px) {
      .detail-row { flex-direction:column; align-items:flex-start; gap:8px; }
      .detail-label { min-width:auto; }
      .modal-actions { flex-direction:column; }
    }

/* ── LOGIN PAGE ── */
.navbar {
  display: flex; align-items: center; justify-content: space-between;
}
    /* ── PAGE LAYOUT ── */
    .auth-page {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    /* ── LEFT PANEL: branding ── */
    .auth-brand {
      background: linear-gradient(155deg, var(--mauve) 0%, var(--mauve-dark) 100%);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 100px 48px 48px;
      position: relative; overflow: hidden;
    }
    .auth-brand-petals { position: absolute; inset: 0; pointer-events: none; }
    .auth-petal {
      position: absolute;
      border-radius: 60% 40% 60% 40%;
      opacity: 0.12;
      animation: floatPetal 12s ease-in-out infinite;
    }
    .ap1 { width:110px; height:70px; background:var(--blush); top:8%; left:6%; animation-delay:0s; }
    .ap2 { width:70px;  height:44px; background:var(--dusty); top:22%; right:10%; animation-delay:2s; }
    .ap3 { width:80px;  height:50px; background:var(--gold);  top:55%; left:8%;  animation-delay:4s; }
    .ap4 { width:55px;  height:35px; background:var(--blush); bottom:18%; right:12%; animation-delay:1s; }
    .ap5 { width:90px;  height:58px; background:var(--dusty); top:38%; right:6%;  animation-delay:3s; }
    @keyframes floatPetal {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50%       { transform: translateY(-18px) rotate(8deg); }
    }

    .auth-brand-inner { position: relative; z-index: 2; text-align: center; max-width: 360px; }
    .auth-brand-logo {
      font-family: var(--ff-display);
      font-size: 2.4rem; font-weight: 700;
      letter-spacing: 0.14em; color: #fff;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      margin-bottom: 14px;
    }
    .auth-brand-script {
      font-family: var(--ff-script);
      font-size: 1.4rem; color: var(--blush);
      margin-bottom: 28px; opacity: 0.9;
    }
    .auth-brand-tagline {
      font-size: 1rem; color: rgba(255,255,255,0.7);
      line-height: 1.75; margin-bottom: 40px;
    }
    .auth-brand-features { display: flex; flex-direction: column; gap: 16px; text-align: left; }
    .auth-feat {
      display: flex; align-items: center; gap: 14px;
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: var(--radius-sm);
      padding: 14px 18px;
      backdrop-filter: blur(6px);
    }
    .auth-feat-icon { font-size: 1.3rem; flex-shrink: 0; }
    .auth-feat-text { font-size: 0.88rem; color: rgba(255,255,255,0.85); line-height: 1.4; }
    .auth-feat-text strong { color: #fff; display: block; margin-bottom: 2px; }

    /* ── RIGHT PANEL: form ── */
    .auth-form-panel {
      background: var(--cream);
      display: flex; align-items: center; justify-content: center;
      padding: 100px 48px 48px;
      overflow-y: auto;
    }
    .auth-form-inner { width: 100%; max-width: 420px; }

    /* ── TAB SWITCHER ── */
    .auth-tabs {
      display: flex;
      background: var(--light-pink);
      border-radius: var(--radius-lg);
      padding: 4px; margin-bottom: 32px;
    }
    .auth-tab {
      flex: 1; padding: 10px;
      border: none; background: transparent; cursor: pointer;
      font-family: var(--ff-body); font-size: 0.82rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--text-light); border-radius: var(--radius-lg);
      transition: background 0.25s, color 0.25s, box-shadow 0.25s;
    }
    .auth-tab.active {
      background: var(--mauve); color: #fff;
      box-shadow: 0 3px 12px rgba(139,75,107,0.3);
    }

    /* ── FORM HEADING ── */
    .auth-heading {
      font-family: var(--ff-display);
      font-size: 1.85rem; font-weight: 600;
      color: var(--charcoal); margin-bottom: 6px;
    }
    .auth-heading em { color: var(--mauve); font-style: italic; }
    .auth-subheading {
      font-size: 0.9rem; color: var(--text-light);
      margin-bottom: 28px; line-height: 1.6;
    }

    /* ── GOOGLE BUTTON ── */
    .btn-google {
      width: 100%; padding: 13px 20px;
      display: flex; align-items: center; justify-content: center; gap: 12px;
      background: #fff; border: 1.5px solid rgba(244,197,197,0.7);
      border-radius: var(--radius-lg);
      font-family: var(--ff-body); font-size: 0.88rem; font-weight: 700;
      color: var(--text); cursor: pointer;
      box-shadow: var(--shadow); transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
      margin-bottom: 22px;
    }
    .btn-google:hover {
      border-color: var(--mauve);
      box-shadow: var(--shadow-md);
      transform: translateY(-1px);
    }
    .google-icon { width: 20px; height: 20px; flex-shrink: 0; }

    /* ── DIVIDER ── */
    .auth-divider {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 22px;
    }
    .auth-divider::before,
    .auth-divider::after {
      content: ''; flex: 1; height: 1px;
      background: rgba(244,197,197,0.5);
    }
    .auth-divider span {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--text-light);
    }

    /* ── FORM FIELDS ── */
    .form-group {
      display: flex; flex-direction: column; gap: 7px;
      margin-bottom: 16px;
    }
    .form-label {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--text-light);
    }
    .form-input-wrap { position: relative; }
    .form-input {
      width: 100%; padding: 13px 16px 13px 44px;
      border: 1.5px solid rgba(244,197,197,0.55);
      border-radius: var(--radius-sm);
      background: #fff;
      font-family: var(--ff-body); font-size: 0.9rem; color: var(--text);
      outline: none;
      transition: border-color 0.22s, box-shadow 0.22s;
      box-shadow: 0 1px 6px rgba(139,75,107,0.04);
    }
    .form-input:focus {
      border-color: var(--mauve);
      box-shadow: 0 0 0 3px rgba(139,75,107,0.1);
    }
    .form-input.error { border-color: #c05070; box-shadow: 0 0 0 3px rgba(192,80,112,0.1); }
    .form-input::placeholder { color: #c0a8a8; }
    .form-icon {
      position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
      font-size: 1rem; pointer-events: none; opacity: 0.5;
    }
    .form-toggle-pw {
      position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
      background: none; border: none; cursor: pointer;
      font-size: 0.85rem; color: var(--text-light);
      transition: color 0.2s; padding: 0;
    }
    .form-toggle-pw:hover { color: var(--mauve); }

    .field-error {
      font-size: 0.75rem; color: #c05070; margin-top: 4px; display: none;
    }
    .field-error.show { display: block; }

    /* ── NAME ROW ── */
    .name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

    /* ── PASSWORD STRENGTH ── */
    .pw-strength { margin-top: 8px; }
    .pw-strength-bar {
      height: 4px; border-radius: 2px;
      background: rgba(244,197,197,0.3); overflow: hidden; margin-bottom: 4px;
    }
    .pw-strength-fill {
      height: 100%; border-radius: 2px;
      width: 0%; transition: width 0.35s, background 0.35s;
    }
    .pw-strength-label {
      font-size: 0.7rem; color: var(--text-light);
    }

    /* ── CHECKBOX ── */
    .form-check {
      display: flex; align-items: flex-start; gap: 10px;
      margin-bottom: 20px; cursor: pointer;
    }
    .form-check input[type="checkbox"] {
      appearance: none; -webkit-appearance: none;
      width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
      border: 1.5px solid rgba(244,197,197,0.7);
      border-radius: 4px; background: #fff; cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      position: relative;
    }
    .form-check input[type="checkbox"]:checked {
      background: var(--mauve); border-color: var(--mauve);
    }
    .form-check input[type="checkbox"]:checked::after {
      content: '✓'; position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 0.7rem; font-weight: 900;
    }
    .form-check-label {
      font-size: 0.82rem; color: var(--text-light); line-height: 1.5;
    }
    .form-check-label a { color: var(--mauve); font-weight: 700; }

    /* ── FORGOT PASSWORD ── */
    .forgot-row {
      display: flex; justify-content: flex-end;
      margin-top: -8px; margin-bottom: 20px;
    }
    .forgot-link {
      font-size: 0.78rem; color: var(--mauve); font-weight: 700;
      transition: opacity 0.2s;
    }
    .forgot-link:hover { opacity: 0.7; }

    /* ── SUBMIT BUTTON ── */
    .btn-primaryy {
      display: inline-block; width: 100%;
      padding: 14px 32px;
      background: var(--mauve); color: #fff;
      font-family: var(--ff-body); font-size: 0.88rem;
      font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      border: none; border-radius: var(--radius-lg); cursor: pointer;
      transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
      box-shadow: 0 4px 18px rgba(139,75,107,0.25);
      position: relative; overflow: hidden;
    }
    .btn-primaryy:hover {
      background: var(--mauve-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(139,75,107,0.35);
    }
    .btn-primaryy:disabled {
      opacity: 0.65; cursor: not-allowed; transform: none;
    }
    .btn-spinner {
      display: none; width: 18px; height: 18px;
      border: 2.5px solid rgba(255,255,255,0.35);
      border-top-color: #fff;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
      margin: 0 auto;
    }
    .btn-primaryy.loading .btn-text { display: none; }
    .btn-primaryy.loading .btn-spinner { display: block; }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ── SWITCH LINK ── */
    .auth-switch {
      text-align: center; margin-top: 22px;
      font-size: 0.85rem; color: var(--text-light);
    }
    .auth-switch button {
      background: none; border: none; cursor: pointer;
      color: var(--mauve); font-weight: 700; font-family: var(--ff-body);
      font-size: inherit; padding: 0;
    }
    .auth-switch button:hover { text-decoration: underline; }

    /* ── PANELS (login / register) ── */
    .auth-panel { display: none; }
    .auth-panel.active { display: block; }

    /* ── TOAST ── */
    .toast {
      position: fixed; bottom: 32px; left: 50%;
      transform: translateX(-50%) translateY(20px);
      padding: 12px 28px; border-radius: 99px;
      font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em;
      box-shadow: var(--shadow-md);
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s, transform 0.3s;
      z-index: 9999; white-space: nowrap;
    }
    .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
    .toast.success { background: var(--mauve); color: #fff; }
    .toast.error   { background: #c05070; color: #fff; }

    /* ── TERMS MODAL ── */
    .modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 5000;
      background: rgba(0,0,0,0.45); backdrop-filter: blur(4px);
      align-items: center; justify-content: center; padding: 20px;
    }
    .modal-overlay.show { display: flex; }
    .modal-box {
      background: var(--cream); border-radius: var(--radius-md);
      padding: 36px 32px; max-width: 500px; width: 100%;
      box-shadow: var(--shadow-md); position: relative;
    }
    .modal-close {
      position: absolute; top: 14px; right: 16px;
      background: none; border: none; font-size: 1.4rem;
      cursor: pointer; color: var(--text-light);
    }
    .modal-title {
      font-family: var(--ff-display); font-size: 1.3rem;
      color: var(--mauve); margin-bottom: 14px;
    }
    .modal-body {
      font-size: 0.85rem; color: var(--text-light);
      line-height: 1.75; max-height: 300px; overflow-y: auto;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      .auth-page { grid-template-columns: 1fr; }
      .auth-brand { display: none; }
      .auth-form-panel { padding: 100px 5% 48px; }
    }
    @media (max-width: 480px) {
      .auth-form-inner { max-width: 100%; }
      .name-row { grid-template-columns: 1fr; }
    }

        /* ── Hero ── */
    .ci-hero {
      background: linear-gradient(135deg, #FDF6F0 0%, #FBE8EF 55%, #F2D0DB 100%);
      padding: 100px 24px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .ci-hero::before,
    .ci-hero::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      background: var(--blush);
      opacity: .18;
    }
    .ci-hero::before { width: 420px; height: 420px; top: -160px; left: -120px; }
    .ci-hero::after  { width: 300px; height: 300px; bottom: -100px; right: -80px; }

    .ci-eyebrow {
      font-family: 'Dancing Script', cursive;
      font-size: 1.15rem;
      color: var(--mauve);
      letter-spacing: .03em;
      margin-bottom: 14px;
    }
    .ci-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 6vw, 4rem);
      font-weight: 600;
      color: var(--ink);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .ci-hero h1 em { font-style: italic; color: var(--mauve); }
    .ci-hero p {
      font-family: 'Lato', sans-serif;
      font-size: 1.05rem;
      color: var(--ink-soft);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ── Page body ── */
    .ci-body {
      max-width: 780px;
      margin: 0 auto;
      padding: 64px 24px 100px;
    }

    /* ── Section headings ── */
    .ci-section { margin-bottom: 56px; }
    .ci-section-label {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
    }
    .ci-section-label h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.55rem;
      font-weight: 600;
      color: var(--ink);
    }
    .ci-section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--blush);
    }

    /* ── Symbol grid ── */
    .symbol-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 14px;
    }
    .symbol-card {
      background: var(--white);
      border: 1px solid var(--blush-mid);
      border-radius: var(--radius-md);
      padding: 24px 16px 20px;
      text-align: center;
      transition: box-shadow .2s, transform .2s;
    }
    .symbol-card:hover {
      box-shadow: 0 6px 24px rgba(158,111,122,.1);
      transform: translateY(-2px);
    }
    .symbol-card .s-icon {
      width: 48px; height: 48px;
      background: var(--petal);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px;
      color: var(--mauve);
    }
    .symbol-card .s-icon svg { width: 22px; height: 22px; }
    .symbol-card h4 {
      font-family: 'Lato', sans-serif;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--ink);
      margin-bottom: 6px;
    }
    .symbol-card p {
      font-family: 'Lato', sans-serif;
      font-size: .82rem;
      color: var(--ink-soft);
      line-height: 1.55;
    }

    /* ── Accordion ── */
    .accordion { display: flex; flex-direction: column; gap: 10px; }

    .acc-item {
      border: 1px solid var(--blush-mid);
      border-radius: var(--radius-md);
      background: var(--white);
      overflow: hidden;
      transition: box-shadow .25s;
    }
    .acc-item.open {
      box-shadow: 0 4px 28px rgba(158,111,122,.09);
    }

    .acc-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px 24px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
    }
    .acc-trigger-icon {
      width: 40px; height: 40px;
      background: var(--petal);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--mauve);
      flex-shrink: 0;
      transition: background .2s;
    }
    .acc-item.open .acc-trigger-icon { background: var(--blush); }
    .acc-trigger-icon svg { width: 18px; height: 18px; }

    .acc-trigger-text { flex: 1; }
    .acc-trigger-text strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 1.08rem;
      font-weight: 600;
      color: var(--ink);
    }
    .acc-trigger-text span {
      font-family: 'Lato', sans-serif;
      font-size: .8rem;
      color: var(--mauve);
    }

    .acc-chevron {
      width: 20px; height: 20px;
      color: var(--blush-deep);
      transition: transform .3s;
      flex-shrink: 0;
    }
    .acc-item.open .acc-chevron { transform: rotate(180deg); }

    .acc-body {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows .3s ease;
    }
    .acc-item.open .acc-body { grid-template-rows: 1fr; }
    .acc-inner {
      overflow: hidden;
      padding: 0 24px;
    }
    .acc-item.open .acc-inner { padding: 0 24px 22px; }

    .acc-rows { display: flex; flex-direction: column; gap: 0; }
    .acc-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 13px 0;
      border-bottom: 1px solid var(--blush-mid);
    }
    .acc-row:last-child { border-bottom: none; }
    .acc-row-icon {
      width: 30px; height: 30px;
      background: var(--petal);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--mauve);
      flex-shrink: 0;
      margin-top: 1px;
    }
    .acc-row-icon svg { width: 14px; height: 14px; }
    .acc-row-label {
      font-family: 'Lato', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--mauve);
      display: block;
      margin-bottom: 2px;
    }
    .acc-row-val {
      font-family: 'Lato', sans-serif;
      font-size: .88rem;
      color: var(--ink-soft);
      line-height: 1.5;
    }

    /* ── Do / Don't ── */
    .dd-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    @media (max-width: 560px) { .dd-grid { grid-template-columns: 1fr; } }

    .dd-card {
      border-radius: var(--radius-md);
      padding: 28px 24px;
      border: 1px solid var(--blush-mid);
    }
    .dd-card.dos  { background: #F7FBF7; border-color: #C8E6C9; }
    .dd-card.donts { background: #FDF6F6; border-color: var(--blush); }

    .dd-card h4 {
      font-family: 'Lato', sans-serif;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .dd-card.dos h4  { color: #4a8a50; }
    .dd-card.donts h4 { color: var(--mauve-dark); }

    .dd-card h4 .hbadge {
      width: 20px; height: 20px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .dd-card.dos h4 .hbadge  { background: #C8E6C9; color: #4a8a50; }
    .dd-card.donts h4 .hbadge { background: var(--blush); color: var(--mauve-dark); }
    .dd-card h4 .hbadge svg { width: 11px; height: 11px; }

    .dd-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .dd-list li {
      display: flex; align-items: flex-start; gap: 10px;
      font-family: 'Lato', sans-serif;
      font-size: .87rem;
      color: var(--ink-soft);
      line-height: 1.5;
    }
    .dd-list li .dot {
      width: 6px; height: 6px; border-radius: 50%;
      flex-shrink: 0; margin-top: 6px;
    }
    .dd-card.dos  .dot { background: #7cb87f; }
    .dd-card.donts .dot { background: var(--blush-deep); }

    /* ── Storage ── */
    .storage-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    @media (max-width: 560px) { .storage-grid { grid-template-columns: 1fr; } }

    .storage-card {
      background: var(--white);
      border: 1px solid var(--blush-mid);
      border-radius: var(--radius-md);
      padding: 28px 20px 24px;
      text-align: center;
      transition: box-shadow .2s, transform .2s;
    }
    .storage-card:hover {
      box-shadow: 0 6px 24px rgba(158,111,122,.1);
      transform: translateY(-2px);
    }
    .storage-card .s-icon {
      width: 52px; height: 52px;
      background: var(--petal);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      color: var(--mauve);
    }
    .storage-card .s-icon svg { width: 24px; height: 24px; }
    .storage-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--ink);
      margin-bottom: 8px;
    }
    .storage-card p {
      font-family: 'Lato', sans-serif;
      font-size: .83rem;
      color: var(--ink-soft);
      line-height: 1.6;
    }

    /* ── Tip strip ── */
    .ci-tip {
      margin-top: 48px;
      background: var(--blush-mid);
      border-radius: var(--radius-md);
      padding: 24px 28px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .ci-tip .ti-icon {
      width: 42px; height: 42px;
      background: var(--white);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--mauve);
      flex-shrink: 0;
    }
    .ci-tip .ti-icon svg { width: 18px; height: 18px; }
    .ci-tip p {
      font-family: 'Lato', sans-serif;
      font-size: .9rem;
      color: var(--ink-soft);
      line-height: 1.55;
    }
    .ci-tip a { color: var(--mauve-dark); font-weight: 700; text-decoration: none; }
    .ci-tip a:hover { text-decoration: underline; }

    /* ── Quote band (keep existing style from site) ── */

    
.color-btn.out-of-stock,
.size-btn.out-of-stock {
  opacity: .35;
  cursor: not-allowed;
  position: relative;
}

.size-btn.out-of-stock::after {
  content: '';
  position: absolute;
  left: 10%; right: 10%; top: 50%;
  border-top: 1.5px solid currentColor;
  transform: rotate(-8deg);
}

.cart-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 16px;
}
.cart-spinner {
  width: 26px; height: 26px; border-radius: 50%;
  border: 3px solid #f0e0e2;
  border-top-color: #b85c5c;
  animation: cart-spin 0.7s linear infinite;
}
.cart-loading span {
  font-size: 14px;
  color: #888;
}
@keyframes cart-spin { to { transform: rotate(360deg); } }

.pp-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 120px 16px;
  text-align: center;
}
.pp-spinner {
  width: 28px; height: 28px; border-radius: 50%;
  border: 3px solid #f0e0e2;
  border-top-color: #b85c5c;
  animation: pp-spin 0.7s linear infinite;
}
.pp-loading span {
  font-size: 14px;
  color: #888;
}
@keyframes pp-spin { to { transform: rotate(360deg); } }

.shop-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 80px 5%;
  text-align: center;
}
.shop-spinner {
  width: 28px; height: 28px; border-radius: 50%;
  border: 3px solid #f0e0e2;
  border-top-color: #b85c5c;
  animation: shop-spin 0.7s linear infinite;
}
.shop-loading span {
  font-size: 1rem;
  color: var(--text-light);
}
@keyframes shop-spin { to { transform: rotate(360deg); } }

.orders-loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 48px 16px;
  text-align: center;
}
.orders-spinner {
  width: 26px; height: 26px; border-radius: 50%;
  border: 3px solid #f0e0e2;
  border-top-color: #b85c5c;
  animation: orders-spin 0.7s linear infinite;
}
.orders-loading-inner span {
  font-size: 0.85rem;
  color: var(--text-light);
}
@keyframes orders-spin { to { transform: rotate(360deg); } }

 .order-action-btn{border:none;border-radius:999px;padding:7px 16px;font-size:.82rem;font-weight:600;cursor:pointer}
  .order-action-cancel{background:#fde2e2;color:#b3261e}
  .order-action-cancel:hover{background:#f9caca}
  .order-action-return{background:#e3f0ff;color:#0b5fb3}
  .order-action-return:hover{background:#cfe6ff}
  .refund-method-toggle{display:flex;gap:8px;margin:12px 0}
  .refund-method-btn{flex:1;border:1px solid var(--border,#eee);background:#fff;border-radius:10px;padding:10px;font-size:.85rem;font-weight:600;cursor:pointer;color:#666}
  .refund-method-btn.active{border-color:#c9956a;background:#fbf3ec;color:#9a5f2c}
  .edit-modal-label{display:block;font-size:.8rem;color:#888;margin:10px 0 4px}
  #cancelError, #cpError{color:#b3261e;font-size:.82rem;min-height:1.1em;margin-top:8px}
  .return-modal-body{padding:6px 0 4px;color:#555;font-size:.92rem;line-height:1.6}
  .return-modal-body a{color:#9a5f2c;font-weight:700;text-decoration:none}

  .btn-google {
  width: 100%;
  padding: 13px 20px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--cream);
  border: 1.5px solid rgba(244,197,197,0.7);
  border-radius: var(--radius-lg);           /* matches btn-primary pill shape */
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  background: #fff;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s, background 0.2s;
  margin-bottom: 22px;
}
.btn-google:hover {
  border-color: var(--mauve);
}

.google-icon { width: 18px; height: 18px; flex-shrink: 0; }