/* ============================================================
   AMARIA AESTHETICS — STORE.CSS
   Aesthetic Direction: Luxury Editorial / Warm Ivory & Rose Gold
   Fonts: Playfair Display (serif display) + Jost (geometric sans)
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  /* Palette */
  --ivory:        #FCF7FF;
  --ivory-warm:   #F3DDFF;
  --ivory-deep:   #F2EAE0;
  --blush:        #F2E0F1;
  --rose:         #E29CF9;
  --rose-mid:     #746BF4;
  --rose-deep:    #7958F0;
  --mocha:        #B568DF;
  --mocha-light:  #EFD1FF;
  --ink:          #46224B;
  --ink-mid:      #792588;
  --ink-soft:     #9747FF;
  --mist:         #F2E0F1;
  --mist-light:   #E6BAE3;
  --gold:         #B568DF;
  --gold-light:   #E8D4A8;
  --gold-pale:    #F5ECD8;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  /* Radius */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  24px;
  --r-xl:  40px;
  --r-pill: 999px;

  /* Shadows */
  --sh-xs:  0 1px 4px rgba(92,61,46,.06);
  --sh-sm:  0 2px 12px rgba(92,61,46,.09);
  --sh-md:  0 6px 28px rgba(92,61,46,.13);
  --sh-lg:  0 16px 56px rgba(92,61,46,.16);
  --sh-xl:  0 32px 80px rgba(92,61,46,.20);

  /* Easing */
  --ease:      cubic-bezier(.4, 0, .2, 1);
  --ease-back: cubic-bezier(.34, 1.56, .64, 1);
  --ease-out:  cubic-bezier(0, 0, .2, 1);

  /* Layout */
  --header-h: 72px;
  --max-w:    1320px;
  --gutter:   clamp(1.25rem, 4vw, 3rem);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* Custom cursor */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--rose);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .2s var(--ease), height .2s var(--ease), background .2s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--rose);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all .12s var(--ease);
  opacity: .5;
}
.cursor.hovering { width: 24px; height: 24px; background: var(--gold); mix-blend-mode: normal; }
.cursor-ring.hovering { width: 56px; height: 56px; opacity: .25; }

a, button { cursor: none; }
img, video { display: block; max-width: 100%; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; font-family: var(--font-body); font-weight: 500; }

p { max-width: 64ch; }

.eyebrow, .section-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body);
  font-size: .68rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose);
}
.section-eyebrow::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: currentColor; flex-shrink: 0;
}

/* ── LAYOUT HELPERS ─────────────────────────────────────────── */
.container {
  width: 100%; max-width: var(--max-w);
  margin-inline: auto; padding-inline: var(--gutter);
}
.section-pad { padding-block: clamp(4rem, 8vw, 8rem); }
.section-pad-sm { padding-block: clamp(2.5rem, 5vw, 5rem); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 900;
  background: var(--mocha-light);
  color: var(--ivory);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(229,216,207,.4);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-scrolled {
  background: var(--mocha-light);
  box-shadow: var(--sh-sm);
}

.header-inner {
  height: 100%; max-width: var(--max-w);
  margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; gap: 1.5rem;
}

/* Logo */
.site-logo {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none; flex-shrink: 0;
}
.site-logo img{
    width: 100px;
}

.logo-mark {
  width: 36px; height: 36px;
  background: var(--mocha); color: var(--ivory);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem; font-style: italic; font-weight: 500;
  flex-shrink: 0;
  transition: background .3s var(--ease);
  
}
.site-logo:hover .logo-mark { background: var(--rose-deep); }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 500; color: var(--mocha);
  letter-spacing: .03em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: .55rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--rose);
}

/* Nav links */
.main-nav {
  display: flex; align-items: center; gap: .25rem;
  margin-inline: auto;
}
.nav-link {
  position: relative;
  padding: .45rem .85rem;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 1px; background: var(--rose);
  transition: left .3s var(--ease), right .3s var(--ease);
}
.nav-link:hover { color: var(--rose-deep); }
.nav-link:hover::after { left: .85rem; right: .85rem; }
.nav-link.is-active { color: var(--rose-deep); font-weight: 500; }
.nav-link.is-active::after { left: .85rem; right: .85rem; }

/* Header action buttons */
.header-actions { display: flex; align-items: center; gap: .2rem; }
.hdr-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: none; background: transparent;
  border-radius: 50%; color: var(--ink-soft);
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease-back);
}
.hdr-btn:hover { background: var(--ivory-deep); color: var(--rose-deep); transform: scale(1.08); }

.cart-dot {
  position: absolute; top: 5px; right: 5px;
  min-width: 17px; height: 17px;
  background: var(--rose);
  border: 2px solid var(--ivory);
  border-radius: var(--r-pill);
  font-size: 9px; font-weight: 600; color: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  transform: scale(0);
  transition: transform .3s var(--ease-back);
}
.cart-dot.visible { transform: scale(1); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none;
  border-radius: var(--r-sm); cursor: none;
}
.ham-line {
  display: block; height: 1.5px; background: var(--ink);
  border-radius: 2px; transition: all .3s var(--ease);
}
.ham-line:first-child { width: 22px; }
.ham-line:nth-child(2) { width: 18px; }
.ham-line.ham-short { width: 14px; }
.hamburger.is-open .ham-line:first-child { transform: translateY(6.5px) rotate(45deg); width: 22px; }
.hamburger.is-open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .ham-line.ham-short { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }

/* Search drawer */
.search-drawer {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--ivory-warm);
  border-bottom: 1px solid var(--mist);
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease-out);
  box-shadow: var(--sh-md);
}
.search-drawer.is-open { max-height: 90px; }
.search-drawer-inner {
  max-width: var(--max-w); margin-inline: auto; padding: 1.25rem var(--gutter);
}
.search-form {
  display: flex; align-items: center; gap: 1rem;
  border-bottom: 1.5px solid var(--mist);
  padding-bottom: .75rem;
  transition: border-color .3s;
}
.search-form:focus-within { border-bottom-color: var(--rose); }
.search-icon { color: var(--rose); font-size: .9rem; flex-shrink: 0; }
.search-form input {
  flex: 1; border: none; background: transparent;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  outline: none;
}
.search-form input::placeholder { color: var(--mist); }
.search-submit {
  font-family: var(--font-body); font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--rose-deep); background: none; border: none;
  font-weight: 500;
}
.search-close {
  width: 30px; height: 30px; border-radius: 50%; border: none;
  background: var(--ivory-deep); color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(30,19,16,.5);
  backdrop-filter: blur(4px);
  z-index: 890;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.nav-overlay.is-open { opacity: 1; pointer-events: all; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 2rem;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  border-radius: var(--r-xs);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: none;
  transition: all .25s var(--ease);
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  transform: translateX(-100%);
  transition: transform .4s var(--ease);
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--mocha); color: var(--ivory);
  border-color: var(--mocha);
}
.btn-primary:hover { background: var(--rose-deep); border-color: var(--rose-deep); transform: translateY(-1px); box-shadow: var(--sh-md); }

.btn-rose {
  background: var(--rose); color: #fff;
  border-color: var(--rose);
}
.btn-rose:hover { background: var(--rose-mid); border-color: var(--rose-mid); transform: translateY(-1px); box-shadow: var(--sh-md); }

.btn-outline {
  background: transparent; color: var(--mocha);
  border-color: var(--mocha);
}
.btn-outline:hover { background: var(--mocha); color: var(--ivory); transform: translateY(-1px); }

.btn-outline-rose {
  background: transparent; color: var(--rose-deep);
  border-color: var(--blush);
}
.btn-outline-rose:hover { background: var(--blush); border-color: var(--blush); }

.btn-ghost {
  background: rgba(250,246,241,.8); color: var(--ink);
  border-color: rgba(229,216,207,.6); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--ivory-warm); transform: translateY(-1px); }

.btn-lg { padding: 1rem 2.5rem; font-size: .78rem; }
.btn-sm { padding: .55rem 1.25rem; font-size: .66rem; }
.btn-icon { padding: .8rem; aspect-ratio: 1; justify-content: center; }

/* Icon button */
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%; border: 1.5px solid var(--mist);
  background: var(--ivory-warm);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--ink-soft);
  transition: all .2s var(--ease);
  flex-shrink: 0;
}
.icon-btn:hover { border-color: var(--rose); color: var(--rose-deep); background: var(--blush); transform: scale(1.08); }

/* ── HERO SECTION ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--ivory);
}

.hero-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 4rem) var(--gutter) 6rem;
  padding-left: max(var(--gutter), calc((100vw - var(--max-w)) / 2 + var(--gutter)));
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .68rem; font-weight: 400;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeSlideUp .8s var(--ease) .2s forwards;
}
.hero-eyebrow-line {
  display: block; width: 32px; height: 1px; background: var(--rose);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 400; line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--ink); margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeSlideUp .9s var(--ease) .35s forwards;
}
.hero-heading em {
  font-style: italic; color: var(--rose-mid);
  display: block;
}
.hero-heading strong {
  font-weight: 400;
  position: relative; display: inline-block;
}
.hero-heading strong::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  animation: lineReveal 1s var(--ease) 1.2s forwards;
}
@keyframes lineReveal { to { transform: scaleX(1); } }

.hero-desc {
  font-size: .95rem; line-height: 1.75;
  color: var(--ink-soft); max-width: 400px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp .8s var(--ease) .5s forwards;
}

.hero-ctas {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp .8s var(--ease) .65s forwards;
}

.hero-trust {
  display: flex; align-items: center; gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem; border-top: 1px solid var(--mist);
  opacity: 0;
  animation: fadeSlideUp .8s var(--ease) .8s forwards;
}
.trust-item {
  display: flex; flex-direction: column; gap: .2rem;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500; color: var(--mocha);
}
.trust-label {
  font-size: .65rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--rose);
}

/* Hero right — visual */
.hero-right {
  position: relative; overflow: hidden;
}
.hero-visual {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-visual-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--blush) 0%, var(--gold-pale) 40%, var(--ivory-deep) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; color: var(--rose-mid);
}
.hero-visual-placeholder i { font-size: 5rem; opacity: .25; }
.hero-visual-placeholder p { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; opacity: .4; }

.hero-float-card {
  position: absolute; bottom: 2.5rem; left: -1.5rem;
  background: rgba(255,249,244,.95); backdrop-filter: blur(20px);
  border: 1px solid rgba(229,216,207,.6);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: .85rem;
  min-width: 220px;
  animation: floatCard .8s var(--ease) 1s both;
}
@keyframes floatCard { from{transform:translateX(-20px);opacity:0} to{transform:translateX(0);opacity:1} }
.float-icon {
  width: 40px; height: 40px;
  background: var(--blush); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-deep); font-size: .9rem;
}
.float-text { line-height: 1.25; }
.float-title { font-size: .78rem; font-weight: 500; color: var(--ink); }
.float-sub { font-size: .68rem; color: var(--ink-soft); }

.hero-badge {
  position: absolute; top: 3rem; right: 2rem;
  width: 88px; height: 88px;
  background: var(--mocha); color: var(--gold-light);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 0;
  font-family: var(--font-display); font-size: .7rem;
  font-style: italic; line-height: 1.2;
  animation: rotateBadge 15s linear infinite;
  box-shadow: var(--sh-md);
}
@keyframes rotateBadge { to { transform: rotate(360deg); } }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: var(--rose); font-size: .6rem;
  letter-spacing: .18em; text-transform: uppercase; z-index: 3;
  animation: fadeSlideUp .8s var(--ease) 1.4s both, bobScroll 2.5s ease-in-out 2.2s infinite;
}
.hero-scroll i { font-size: .85rem; }
@keyframes bobScroll { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }

/* ── MARQUEE TICKER ──────────────────────────────────────────── */
.ticker {
  overflow: hidden;
  background: var(--mocha);
  padding: .65rem 0;
}
.ticker-track {
  display: flex;
  animation: tickerScroll 28s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: .75rem;
  padding-right: 3.5rem;
  font-size: .65rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-light); white-space: nowrap;
}
.ticker-dot { color: var(--gold); font-size: .5rem; }
@keyframes tickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── FEATURED CATEGORIES ─────────────────────────────────────── */
.categories-section { background: var(--ivory); }

.categories-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}
.cat-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 3/4;
  background: var(--ivory-deep);
  cursor: none;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); }
.cat-card:hover .cat-img { transform: scale(1.06); }
.cat-card:hover .cat-overlay { opacity: 1; }

.cat-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.cat-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .75rem;
  background: linear-gradient(160deg, var(--blush), var(--gold-pale));
  color: var(--rose-mid);
}
.cat-placeholder i { font-size: 2.2rem; opacity: .45; }

.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,19,16,.6) 0%, transparent 60%);
  opacity: .7; transition: opacity .4s var(--ease);
}
.cat-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem;
}
.cat-label {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 400; font-style: italic;
  color: #fff; display: block; margin-bottom: .25rem;
}
.cat-count {
  font-size: .65rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* ── PRODUCT CARDS ───────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--ivory-warm);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}
.product-card:hover .pc-img { transform: scale(1.05); }
.product-card:hover .pc-actions { opacity: 1; transform: translateY(0); }

.pc-img-wrap {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
  background: var(--ivory-deep);
}
.pc-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.pc-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem;
  background: linear-gradient(145deg, var(--blush) 0%, var(--gold-pale) 100%);
  color: var(--rose-mid);
}
.pc-placeholder i { font-size: 2.5rem; opacity: .3; }

.pc-badges {
  position: absolute; top: .85rem; left: .85rem;
  display: flex; flex-direction: column; gap: .35rem;
}
.pc-badge {
  display: inline-block; padding: .22rem .7rem;
  border-radius: var(--r-pill);
  font-size: .58rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
}
.pc-badge-new  { background: var(--mocha); color: var(--ivory); }
.pc-badge-sale { background: var(--rose); color: #fff; }
.pc-badge-hot  { background: var(--gold); color: var(--mocha); }

.pc-wishlist {
  position: absolute; top: .85rem; right: .85rem;
  width: 34px; height: 34px;
  background: rgba(250,249,244,.85); backdrop-filter: blur(8px);
  border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: var(--ink-soft);
  transition: all .25s var(--ease-back);
}
.pc-wishlist:hover { background: #fff; color: var(--rose); transform: scale(1.15); }
.pc-wishlist.is-wishlisted { color: var(--rose); background: var(--blush); }

.pc-actions {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.pc-add-btn {
  width: 100%; padding: .65rem 1rem;
  background: rgba(250,246,241,.94); backdrop-filter: blur(12px);
  border: 1.5px solid rgba(229,216,207,.7); border-radius: var(--r-xs);
  font-family: var(--font-body);
  font-size: .68rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--mocha);
  transition: all .25s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.pc-add-btn:hover { background: var(--mocha); color: var(--ivory); border-color: var(--mocha); }

.pc-body { padding: 1.1rem; }
.pc-body a{text-decoration: none;}
.pc-category {
  font-size: .62rem; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--rose); margin-bottom: .3rem;
}
.pc-name {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 400; color: var(--ink);
  line-height: 1.3; margin-bottom: .65rem;
  transition: color .2s;
}
.product-card:hover .pc-name { color: var(--rose-deep); }
.pc-footer { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; }
.pc-price-current {
  font-size: .95rem; font-weight: 500; color: var(--mocha);
}
.pc-price-old {
  font-size: .8rem; color: var(--mist);
  text-decoration: line-through;
}
.pc-stars { color: var(--gold); font-size: .65rem; letter-spacing: 1px; }

/* ── HOMEPAGE — FEATURE STRIP ────────────────────────────────── */
.feature-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist);
  background: var(--ivory-warm);
}
.feature-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--mist);
  transition: background .3s var(--ease);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--gold-pale); }
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blush); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--rose-deep);
}
.feature-text strong {
  display: block; font-family: var(--font-body);
  font-size: .78rem; font-weight: 500; color: var(--ink); margin-bottom: .1rem;
}
.feature-text span { font-size: .7rem; color: var(--ink-soft); }

/* ── HOMEPAGE — BRAND STORY ──────────────────────────────────── */
.story-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.story-visual {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, var(--blush) 0%, var(--gold-pale) 100%);
}
.story-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.story-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--ivory) 100%);
}
.story-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem max(3rem, var(--gutter));
}
.story-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic; font-weight: 300;
  color: var(--mocha); line-height: 1.35;
  margin-block: 1.75rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}
.story-body {
  font-size: .9rem; line-height: 1.8;
  color: var(--ink-soft); margin-bottom: 2rem;
}

/* ── HOMEPAGE — TESTIMONIALS ─────────────────────────────────── */
.testimonials-section { background: var(--ivory-deep); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--ivory-warm);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  border: 1px solid var(--mist-light);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.testi-card::before {
  content: '\201C';
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem; color: var(--gold-pale);
  line-height: 1;
}
.testi-stars { color: var(--gold); font-size: .75rem; letter-spacing: 2px; margin-bottom: .85rem; }
.testi-text {
  font-size: .875rem; line-height: 1.75;
  color: var(--ink-soft); margin-bottom: 1.25rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .95rem;
  color: var(--rose-deep); font-weight: 500;
}
.testi-name { font-size: .8rem; font-weight: 500; color: var(--ink); }
.testi-verified { font-size: .65rem; color: var(--rose); letter-spacing: .05em; }

/* ── HOMEPAGE — INSTAGRAM STRIP ──────────────────────────────── */
.insta-strip {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.insta-cell {
  aspect-ratio: 1; overflow: hidden; position: relative;
  background: var(--ivory-deep); cursor: none;
}
.insta-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.insta-cell:hover img { transform: scale(1.08); }
.insta-cell-overlay {
  position: absolute; inset: 0;
  background: rgba(92,61,46,.4); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  opacity: 0; transition: opacity .3s var(--ease);
}
.insta-cell:hover .insta-cell-overlay { opacity: 1; }

/* ── NEWSLETTER SECTION ──────────────────────────────────────── */
.footer-newsletter {
  background: var(--ink);
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.newsletter-inner {
  max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.newsletter-copy { flex: 1; min-width: 260px; }
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--ivory);
  margin-block: .5rem .75rem;
}
.newsletter-copy p { font-size: .85rem; color: rgba(250,246,241,.55); }

.newsletter-form { flex: 1; min-width: 280px; max-width: 480px; }
.nl-field {
  display: flex; gap: 0;
  border: 1px solid rgba(229,216,207,.2);
  border-radius: var(--r-xs); overflow: hidden;
  background: rgba(255,255,255,.05);
}
.nl-field input {
  flex: 1; padding: .85rem 1.25rem;
  background: transparent; border: none;
  font-family: var(--font-body); font-size: .85rem;
  color: var(--ivory); outline: none;
}
.nl-field input::placeholder { color: rgba(250,246,241,.3); }
.nl-field button {
  padding: .85rem 1.5rem;
  background: var(--rose); color: #fff; border: none;
  font-family: var(--font-body);
  font-size: .7rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  display: flex; align-items: center; gap: .5rem;
  transition: background .2s var(--ease);
  white-space: nowrap;
}
.nl-field button:hover { background: var(--rose-mid); }
.nl-note { font-size: .68rem; color: rgba(250,246,241,.3); margin-top: .65rem; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--ink); }
.footer-logo { display: flex; align-items: center; gap: .65rem; margin-bottom: 1.25rem; }
.footer-logo .logo-mark { background: var(--rose-deep); }
.footer-logo .logo-name { color: var(--ivory); }
.footer-logo .logo-sub { color: var(--gold); }

.footer-main {
  max-width: var(--max-w); margin-inline: auto; padding: 4rem var(--gutter) 3rem;
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-about {
  font-size: .82rem; line-height: 1.75;
  color: rgba(250,246,241,.45); max-width: 280px; margin-top: .5rem;
}
.footer-socials { display: flex; gap: .6rem; margin-top: 1.5rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: rgba(250,246,241,.55);
  transition: all .25s var(--ease);
  text-decoration: none;
}
.social-link:hover { background: var(--rose); border-color: var(--rose); color: #fff; transform: translateY(-2px); }

.footer-col-title {
  font-family: var(--font-body);
  font-size: .62rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.footer-links-col ul li { margin-bottom: .45rem; }
.footer-links-col a {
  font-size: .8rem; color: rgba(250,246,241,.45);
  text-decoration: none;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.footer-links-col a:hover { color: var(--blush); padding-left: 4px; }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,.06);
  max-width: var(--max-w); margin-inline: auto;
  padding: 1.25rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
  font-size: .72rem; color: rgba(250,246,241,.3);
}
.footer-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-badge {
  display: flex; align-items: center; gap: .4rem;
  font-size: .65rem; letter-spacing: .06em;
  color: rgba(250,246,241,.3);
}
.footer-badge i { color: var(--gold); }

/* ── TOAST NOTIFICATIONS ─────────────────────────────────────── */
.toast-stack {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 9999; display: flex; flex-direction: column; gap: .6rem;
  pointer-events: none;
}
.toast-item {
  display: flex; align-items: center; gap: .85rem;
  padding: .9rem 1.25rem;
  background: var(--ink); color: var(--ivory);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xl);
  font-size: .82rem; max-width: 320px; min-width: 240px;
  transform: translateX(110%);
  transition: transform .4s var(--ease-back), opacity .4s var(--ease);
  pointer-events: all;
  border-left: 3px solid var(--rose);
}
.toast-item.is-visible { transform: translateX(0); }
.toast-item.is-success { border-left-color: #4ADE80; }
.toast-item.is-error   { border-left-color: #F87171; }
.toast-item.is-info    { border-left-color: var(--gold); }
.toast-icon { font-size: 1rem; flex-shrink: 0; }
.toast-item.is-success .toast-icon { color: #4ADE80; }
.toast-item.is-error   .toast-icon { color: #F87171; }
.toast-item.is-info    .toast-icon { color: var(--gold); }
.toast-msg { flex: 1; line-height: 1.4; }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + 3.5rem) var(--gutter) 3.5rem;
  background: linear-gradient(135deg, var(--blush) 0%, var(--ivory) 60%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -50%; left: 20%; right: -20%;
  height: 200%; background: radial-gradient(ellipse at center, var(--gold-pale) 0%, transparent 60%);
  pointer-events: none; opacity: .6;
}
.page-hero h1 { position: relative; z-index: 1; }
.page-hero p { margin: .75rem auto 0; color: var(--ink-soft); position: relative; z-index: 1; }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .7rem; color: rgba(107,76,59,.55);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--rose); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--mist); font-size: .6rem; }

/* ── SECTION HEADER ──────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-block: .65rem .75rem; }
.section-header p { font-size: .9rem; color: var(--ink-soft); margin-inline: auto; }

/* ── FORMS ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; margin-bottom: .45rem;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft);
}
.form-control {
  width: 100%; padding: .75rem 1.1rem;
  background: var(--ivory-warm); border: 1.5px solid var(--mist);
  border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: .88rem; color: var(--ink);
  outline: none; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  appearance: none;
}
.form-control:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(196,130,106,.1); }
.form-control::placeholder { color: rgba(107,76,59,.35); }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23B06A52' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  background-size: 10px; padding-right: 2.5rem;
}

/* ── ALERTS ──────────────────────────────────────────────────── */
.alert {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .9rem 1.25rem; border-radius: var(--r-sm);
  font-size: .85rem; margin-bottom: 1rem;
}
.alert-success { background: #F0FDF4; color: #15803D; border: 1px solid #BBF7D0; }
.alert-error   { background: #FFF1F2; color: #9F1239; border: 1px solid #FECDD3; }
.alert-info    { background: var(--gold-pale); color: var(--mocha); border: 1px solid var(--gold-light); }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding-top: calc(var(--header-h) + 5rem); padding-bottom: 4rem; text-align: center; }
  .hero-desc { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-right { height: 60vw; }
  .hero-float-card { left: 1rem; bottom: 1rem; }
  .story-section { grid-template-columns: 1fr; }
  .story-visual { min-height: 55vw; }
  .story-visual-overlay { background: linear-gradient(to bottom, transparent 60%, var(--ivory) 100%); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand-col { grid-column: 1 / -1; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-item { border-bottom: 1px solid var(--mist); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .insta-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 62px; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  a, button { cursor: pointer; }

  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ivory-warm);
    border-bottom: 1px solid var(--mist);
    padding: .5rem 0 1rem; margin: 0;
    box-shadow: var(--sh-lg);
    transform: translateY(-10px);
    opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
    z-index: 895;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link {
    padding: .9rem var(--gutter); border-radius: 0;
    font-size: .8rem; border-bottom: 1px solid var(--mist-light);
  }
  .nav-link::after { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .categories-scroll { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .insta-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-main { padding: 2.5rem var(--gutter); grid-template-columns: 1fr 1fr; }
  .newsletter-inner { flex-direction: column; gap: 1.75rem; }
  .newsletter-form { width: 100%; max-width: 100%; }
  .feature-strip { grid-template-columns: 1fr 1fr; }
  .hero-badge { display: none; }
  .categories-scroll { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .categories-scroll { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; text-align: center; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-item { border-right: none; }
  .insta-strip { grid-template-columns: repeat(3, 1fr); }
  .hero-trust { flex-wrap: wrap; gap: 1.25rem; }
}

/* ── SPLIT LAYOUT ── */
.auth-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
 
/* ── LEFT PANEL ── */
.auth-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--mocha) 0%, var(--rose-deep) 55%, #7a2c3e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-panel::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.06) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.06) 0%, transparent 55%);
}
.auth-panel-inner {
  position: relative; z-index: 2;
  text-align: center;
  padding: 3rem 2.5rem;
  color: #fff;
}
.auth-panel-logo {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 2.5rem;
  backdrop-filter: blur(4px);
}
.auth-panel-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-style: italic;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255,255,255,.95);
  margin: 0 0 1rem;
  border: none; padding: 0;
}
.auth-panel-sub {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin: 0;
}
.petal {
  position: absolute;
  border-radius: 50% 0 50% 0;
  opacity: .1;
  background: #fff;
  animation: floatPetal 8s ease-in-out infinite;
}
.petal-1 { width:80px;  height:80px;  top:10%; left:8%;  animation-delay:0s;   animation-duration:7s; }
.petal-2 { width:50px;  height:50px;  top:65%; left:75%; animation-delay:2s;   animation-duration:9s; }
.petal-3 { width:100px; height:100px; top:75%; left:15%; animation-delay:4s;   animation-duration:11s;}
.petal-4 { width:40px;  height:40px;  top:25%; left:70%; animation-delay:1.5s; animation-duration:6s; }
@keyframes floatPetal {
  0%,100% { transform: translateY(0)     rotate(0deg); }
  50%      { transform: translateY(-22px) rotate(18deg); }
}
 
/* ── RIGHT FORM SIDE ── */
.auth-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory-warm, #faf8f5);
  padding: 2rem 1.5rem;
}
.auth-form-wrap {
  width: 100%;
  max-width: 440px;
}
 
/* Back */
.auth-back {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft, #888); text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color .2s, gap .2s;
}
.auth-back:hover { color: var(--rose, #c05); gap: .65rem; }
 
/* Heading */
.auth-heading { margin-bottom: 2rem; }
.auth-eyebrow {
  display: block; font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--rose, #c05);
  margin-bottom: .5rem; font-weight: 600;
}
.auth-heading h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin: 0 0 .5rem; line-height: 1.1;
}
.auth-heading p { font-size: .88rem; color: var(--ink-soft, #888); margin: 0; }
.auth-heading a { color: var(--rose, #c05); font-weight: 500; text-decoration: none; }
.auth-heading a:hover { text-decoration: underline; }
 
/* Alerts */
.auth-alert {
  display: flex; align-items: center; gap: .65rem;
  padding: .85rem 1rem; border-radius: var(--r-sm, 8px);
  font-size: .84rem; margin-bottom: 1.5rem; font-weight: 500;
}
.auth-alert-error   { background:#fff0f2; color:#b5192e; border:1px solid #ffc8d0; }
.auth-alert-success { background:#f0fdf4; color:#166534; border:1px solid #bbf7d0; }
 
/* Fields */
.auth-field { margin-bottom: 1.25rem; }
.auth-field label {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .75rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink, #1a1a1a);
  margin-bottom: .5rem;
}
.auth-forgot {
  font-size: .75rem; font-weight: 400; letter-spacing: 0;
  text-transform: none; color: var(--rose, #c05); text-decoration: none;
}
.auth-forgot:hover { text-decoration: underline; }
 
.auth-input-wrap { position: relative; }
.auth-input-icon {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--ink-soft, #aaa); font-size: .85rem; pointer-events: none;
}
.auth-input-wrap input {
  width: 100%; padding: .85rem 3rem .85rem 2.75rem;
  border: 1.5px solid var(--mist, #e8e0d8);
  border-radius: var(--r-sm, 8px);
  font-size: .9rem; background: #fff; color: var(--ink, #1a1a1a);
  transition: border-color .2s, box-shadow .2s;
  outline: none; box-sizing: border-box;
}
.auth-input-wrap input:focus {
  border-color: var(--rose, #c05);
  box-shadow: 0 0 0 3px rgba(180,60,80,.1);
}
.auth-eye {
  position: absolute; right: .9rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: var(--ink-soft, #aaa); font-size: .85rem;
  padding: .2rem .3rem; transition: color .2s; line-height: 1;
}
.auth-eye:hover { color: var(--rose, #c05); }
 
/* Checkbox */
.auth-check-label {
  display: flex; align-items: center; gap: .65rem;
  font-size: .83rem; color: var(--ink-soft, #888);
  cursor: pointer; margin-bottom: 1.75rem; user-select: none;
}
.auth-check-label input[type="checkbox"] { position:absolute; opacity:0; width:0; height:0; }
.auth-check-box {
  width: 18px; height: 18px;
  border: 1.5px solid var(--mist, #e8e0d8);
  border-radius: 4px; background: #fff; flex-shrink: 0;
  transition: background .2s, border-color .2s;
  display: flex; align-items: center; justify-content: center;
}
.auth-check-label input:checked + .auth-check-box {
  background: var(--rose, #c05); border-color: var(--rose, #c05);
}
.auth-check-label input:checked + .auth-check-box::after {
  content: ''; display: block;
  width: 5px; height: 9px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg) translate(-1px,-1px);
}
 
/* Submit */
.auth-submit {
  width: 100%; padding: .95rem 1.5rem;
  background: linear-gradient(135deg, var(--mocha,#4a2c2a), var(--rose-deep,#8b2635));
  color: #fff; border: none; border-radius: var(--r-sm, 8px);
  font-size: .92rem; font-weight: 600; letter-spacing: .06em;
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; gap: .65rem;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(100,30,40,.28);
}
.auth-submit:hover  { opacity:.92; transform:translateY(-1px); box-shadow:0 6px 24px rgba(100,30,40,.36); }
.auth-submit:active { transform:translateY(0); }
 
/* Divider */
.auth-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.75rem 0 1.25rem;
  font-size: .75rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-soft, #aaa);
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--mist, #e8e0d8);
}
 
/* Social */
.auth-socials { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.auth-social-btn {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .75rem 1rem;
  border: 1.5px solid var(--mist, #e8e0d8);
  border-radius: var(--r-sm, 8px);
  background: #fff; font-size: .84rem; font-weight: 500;
  color: var(--ink, #1a1a1a); cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.auth-social-btn:hover {
  border-color: #ccc;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  transform: translateY(-1px);
}
 
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .auth-page { grid-template-columns: 1fr; min-height: auto; }
  .auth-panel { display: none; }
  .auth-form-side { min-height: 100vh; padding: 2.5rem 1.25rem; }
}

/* ── PAGINATION SYSTEM CSS (Amaria Aesthetics Palette Fix) ── */
.pagination-wrap {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.pagination-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ivory-warm);
  padding: 0.5rem;
  border-radius: 50px;
  border: 1px solid var(--mist);
  box-shadow: 0 4px 12px rgba(92, 61, 46, 0.04); /* Subtly tinted with --mocha shadow */
}
.page-numbers-group {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-radius: 50px;
  background: transparent;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border: none;
}
.page-btn:hover:not(.disabled):not(.active) {
  background: var(--ivory-deep);
  color: var(--rose-mid);
}
.page-btn.active {
  background: var(--rose);
  color: var(--ivory) !important;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(196, 130, 106, 0.25); /* Glow using your signature --rose */
}
.page-btn.disabled {
  color: var(--mist);
  cursor: not-allowed;
  pointer-events: none;
}
.page-arrow {
  padding: 0 1.25rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  gap: 0.35rem;
  color: var(--ink-soft);
}
.page-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

@media(max-width:768px){
  .container > div[style*="grid-template-columns:240px"] { grid-template-columns: 1fr!important }
  #shopSidebar { display: none }
  #shopSidebar.is-open { display: block }
  
  .page-arrow {
    padding: 0 0.75rem;
  }
  .page-arrow span, text {
    display: none;
  }
}

/* Tab container & navigation layout */
.product-tabs-wrapper {
  margin-top: 4rem; 
  border-top: 1px solid var(--mist); 
  padding-top: 3rem;
}
.tabs-nav-bar {
  display: flex; 
  gap: 2.5rem; 
  border-bottom: 1px solid var(--mist); 
  margin-bottom: 2.5rem;
}
.tab-trigger {
  background: none;
  border: none;
  padding: 0 0 1rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  position: relative;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.tab-trigger:hover, .tab-trigger.active {
  color: var(--mocha);
}
/* Premium active underline indicator */
.tab-trigger.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--rose);
}

/* Visibility toggling for clean panels */
.tab-panel {
  display: none;
  font-size: .92rem;
  line-height: 1.8;
  color: var(--ink-soft);
  animation: fadeInTab 0.4s ease forwards;
}
.tab-panel.active {
  display: block;
}

/* Elegant fallbacks styles */
.empty-tab-state {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--ivory-deep);
  border-radius: var(--r-md);
  max-width: 600px;
  margin: 0 auto;
}
.empty-tab-state i {
  font-size: 2rem;
  color: var(--rose-mid);
  opacity: 0.4;
  margin-bottom: 1rem;
}
.empty-tab-state p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
}

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media(max-width:768px){
  .tabs-nav-bar {
    gap: 1.25rem;
  }
  .tab-trigger {
    font-size: 0.85rem;
  }
}
