/* =============================================================================
   Nana Kids Commerce v1 — Boutique stylesheet
   Loaded AFTER parent (hostinger-ai-theme) via functions.php enqueue.
   All values map to theme.json palette: --wp--preset--color--nana-* if you prefer.
   ========================================================================== */

:root {
  --nana-ink:   #1f1d1b;
  --nana-cream: #fff8ed;
  --nana-body:  #3a3530;
  --nana-muted: #6a605a;
  --nana-sand:  #e7d5b9;
  --nana-sage:  #9ab09a;
  --nana-rose:  #d8a89a;
  --nana-line:  #e6dfd2;
  --nana-radius: 14px;
  --nana-shadow-sm: 0 1px 2px rgba(31,29,27,.04), 0 1px 6px rgba(31,29,27,.05);
  --nana-shadow-md: 0 8px 28px rgba(31,29,27,.08);
  --nana-container: 1280px;
  --nana-header-h: 76px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--nana-cream);
  color: var(--nana-body);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--nana-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== Container ===== */
.nana-home { background: var(--nana-cream); }

.nana-section,
.nana-header__inner,
.nana-hero__inner,
.nana-discovery__inner,
.nana-footer__inner {
  max-width: var(--nana-container);
  margin: 0 auto;
  padding: 0 24px;
}

.nana-section {
  padding: 88px 24px;
  max-width: var(--nana-container);
  margin: 0 auto;
}
.nana-section--alt {
  background: #f9f1e1; /* subtle warm */
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.nana-section--alt > * { max-width: var(--nana-container); margin-left: auto; margin-right: auto; padding: 0 24px; }

.nana-section__header {
  margin-bottom: 36px;
  text-align: left;
}
.nana-section__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  color: var(--nana-ink);
  margin: 0 0 8px;
  line-height: 1.15;
}
.nana-section__lede {
  font-size: 16px;
  color: var(--nana-muted);
  margin: 0;
  max-width: 56ch;
}

/* ===== Eyebrow (uppercase tag) ===== */
.nana-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--nana-muted);
  margin: 0 0 12px;
}

/* ===== Buttons ===== */
.nana-btn {
  display: inline-block;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .08s ease;
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
}
.nana-btn--primary {
  background: var(--nana-ink);
  color: var(--nana-cream);
}
.nana-btn--primary:hover { background: #3a3530; text-decoration: none; }
.nana-btn--primary:active { transform: translateY(1px); }
.nana-btn--ghost {
  background: transparent;
  color: var(--nana-ink);
  border-color: transparent;
}
.nana-btn--ghost:hover { text-decoration: underline; }

/* ============================================================
   HEADER (sticky)
   ============================================================ */
.nana-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 237, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--nana-line);
}
.nana-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nana-header-h);
  gap: 24px;
}
.nana-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, serif;
  font-size: 20px;
  color: var(--nana-ink);
  font-weight: 600;
}
.nana-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--nana-ink);
  color: var(--nana-cream);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}
.nana-logo:hover { text-decoration: none; }

.nana-nav { flex: 1; }
.nana-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.nana-nav__item > a {
  font-size: 14px;
  font-weight: 500;
  color: var(--nana-ink);
  padding: 6px 0;
}
.nana-nav__item > a:hover { text-decoration: underline; }

.nana-header__actions { display: flex; gap: 6px; align-items: center; }
.nana-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  color: var(--nana-ink);
  cursor: pointer;
  transition: background .15s ease;
}
.nana-icon-btn:hover { background: rgba(31,29,27,.06); text-decoration: none; }

/* Mega menu */
.nana-nav__item--has-mega { position: relative; }
.nana-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  background: var(--nana-cream);
  border: 1px solid var(--nana-line);
  border-radius: var(--nana-radius);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 32px;
  min-width: 460px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  box-shadow: var(--nana-shadow-md);
}
.nana-nav__item--has-mega:hover .nana-mega,
.nana-nav__item--has-mega:focus-within .nana-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nana-mega h4 {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nana-muted);
  font-weight: 700;
}
.nana-mega ul { list-style: none; padding: 0; margin: 0; }
.nana-mega li { margin-bottom: 6px; }
.nana-mega a {
  font-size: 14px;
  color: var(--nana-ink);
}

/* ============================================================
   HERO
   ============================================================ */
.nana-hero {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, var(--nana-cream) 0%, #f9f1e1 100%);
  position: relative;
  overflow: hidden;
}
.nana-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.nana-hero__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  color: var(--nana-ink);
  margin: 0 0 18px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.nana-hero__title em {
  font-style: italic;
  color: var(--nana-rose);
  font-weight: 500;
}
.nana-hero__lede {
  font-size: 17px;
  color: var(--nana-body);
  margin: 0 0 32px;
  max-width: 48ch;
  line-height: 1.55;
}
.nana-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.nana-hero__art {
  position: relative;
  height: 420px;
  display: none;
}
.nana-hero__shape {
  position: absolute;
  border-radius: 22px;
  box-shadow: var(--nana-shadow-md);
}
.nana-hero__shape--1 {
  inset: 0 30% 25% 0;
  background: linear-gradient(135deg, var(--nana-sand), var(--nana-rose));
}
.nana-hero__shape--2 {
  inset: 18% 0 0 30%;
  background: linear-gradient(135deg, var(--nana-sage), var(--nana-cream));
  border-radius: 50%;
  opacity: 0.9;
}
.nana-hero__shape--3 {
  inset: 50% 8% 0 50%;
  background: linear-gradient(135deg, var(--nana-cream), var(--nana-sand));
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

@media (min-width: 960px) {
  .nana-hero__art { display: block; }
}

/* ============================================================
   DISCOVERY BAR
   ============================================================ */
.nana-discovery {
  background: var(--nana-cream);
  border-bottom: 1px solid var(--nana-line);
  padding: 18px 0;
  position: sticky;
  top: var(--nana-header-h);
  z-index: 40;
}
.nana-discovery__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.nana-discovery__inner::-webkit-scrollbar { display: none; }
.nana-discovery__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--nana-muted);
  margin-right: 4px;
  flex-shrink: 0;
}
.nana-chip {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--nana-ink);
  background: #f3e8d2;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease;
  text-decoration: none;
  flex-shrink: 0;
}
.nana-chip:hover {
  background: var(--nana-cream);
  border-color: var(--nana-ink);
  text-decoration: none;
}

/* ============================================================
   TILE GRIDS (age + category)
   ============================================================ */
.nana-tile-grid {
  display: grid;
  gap: 20px;
}
.nana-tile-grid--4 { grid-template-columns: repeat(4, 1fr); }
.nana-tile-grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 960px) {
  .nana-tile-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .nana-tile-grid--3 { grid-template-columns: 1fr; }
}

.nana-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--nana-cream);
  border-radius: var(--nana-radius);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.nana-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--nana-shadow-md);
  text-decoration: none;
}
.nana-tile__art {
  aspect-ratio: 4 / 3;
  width: 100%;
  background: var(--nana-sand);
}
.nana-tile__art[data-tone="cream"] { background: linear-gradient(135deg, #f3e8d2, #e7d5b9); }
.nana-tile__art[data-tone="sand"]  { background: linear-gradient(135deg, #e7d5b9, #d8a89a); }
.nana-tile__art[data-tone="sage"]  { background: linear-gradient(135deg, #c8d4c8, #9ab09a); }
.nana-tile__art[data-tone="rose"]  { background: linear-gradient(135deg, #e8c9c0, #d8a89a); }

.nana-tile__meta {
  padding: 18px 20px 22px;
}
.nana-tile__kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nana-muted);
  margin-bottom: 4px;
}
.nana-tile__title {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: var(--nana-ink);
}

.nana-tile--cat .nana-tile__art { aspect-ratio: 5 / 4; }
.nana-tile--cat .nana-tile__title { padding: 18px 20px 22px; font-size: 18px; }

/* ============================================================
   GIFT FINDER
   ============================================================ */
.nana-giftcard {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--nana-cream);
  border: 1px solid var(--nana-line);
  border-radius: var(--nana-radius);
  overflow: hidden;
  box-shadow: var(--nana-shadow-sm);
}
.nana-giftcard__art {
  min-height: 280px;
  background: linear-gradient(135deg, #e8c9c0, #d8a89a);
}
.nana-giftcard__art[data-tone="rose"] { background: linear-gradient(135deg, #f1d4ca, #d8a89a); }
.nana-giftcard__body { padding: 36px 40px; align-self: center; }
.nana-giftcard__title {
  font-family: Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--nana-ink);
  line-height: 1.2;
}
.nana-giftcard__lede { color: var(--nana-muted); margin: 0 0 22px; max-width: 50ch; }

@media (max-width: 768px) {
  .nana-giftcard { grid-template-columns: 1fr; }
  .nana-giftcard__art { min-height: 180px; }
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.nana-grid-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .nana-grid-products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .nana-grid-products { grid-template-columns: 1fr; } }

.nana-card {
  background: var(--nana-cream);
  border-radius: var(--nana-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.nana-card:hover { transform: translateY(-3px); box-shadow: var(--nana-shadow-md); }

.nana-card__media {
  aspect-ratio: 1 / 1;
  position: relative;
  background: var(--nana-sand);
}
.nana-card__media[data-tone="cream"] { background: linear-gradient(135deg, #f3e8d2, #e7d5b9); }
.nana-card__media[data-tone="sand"]  { background: linear-gradient(135deg, #e7d5b9, #d8a89a); }
.nana-card__media[data-tone="sage"]  { background: linear-gradient(135deg, #c8d4c8, #9ab09a); }
.nana-card__media[data-tone="rose"]  { background: linear-gradient(135deg, #e8c9c0, #d8a89a); }

.nana-card__quick {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--nana-cream);
  color: var(--nana-ink);
  border: 0;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, background .15s ease;
}
.nana-card:hover .nana-card__quick {
  opacity: 1;
  transform: translateY(0);
}
.nana-card__quick:hover { background: var(--nana-ink); color: var(--nana-cream); }

.nana-card__body { padding: 18px 16px 20px; }
.nana-card__age {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nana-muted);
  margin: 0 0 4px;
}
.nana-card__title {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--nana-ink);
}
.nana-card__swatches {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.nana-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--nana-line);
  background: var(--nana-cream);
  cursor: pointer;
  padding: 0;
  transition: transform .12s ease, border-color .12s ease;
}
.nana-swatch:hover { transform: scale(1.15); border-color: var(--nana-ink); }
.nana-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nana-card__price { font-size: 16px; font-weight: 600; color: var(--nana-ink); }
.nana-card__buy {
  background: transparent;
  border: 1px solid var(--nana-ink);
  color: var(--nana-ink);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.nana-card__buy:hover { background: var(--nana-ink); color: var(--nana-cream); }

/* ============================================================
   LOOKBOOK
   ============================================================ */
.nana-lookbook {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .nana-lookbook { grid-template-columns: repeat(2, 1fr); } }

.nana-lookbook__item {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--nana-radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: var(--nana-ink);
}
.nana-lookbook__item[data-tone="cream"] { background: linear-gradient(160deg, #f3e8d2, #e7d5b9); }
.nana-lookbook__item[data-tone="sand"]  { background: linear-gradient(160deg, #e7d5b9, #d8a89a); }
.nana-lookbook__item[data-tone="sage"]  { background: linear-gradient(160deg, #c8d4c8, #9ab09a); }
.nana-lookbook__item[data-tone="rose"]  { background: linear-gradient(160deg, #e8c9c0, #d8a89a); }
.nana-lookbook__cap {
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  background: rgba(255,248,237,0.85);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ============================================================
   FAQ
   ============================================================ */
.nana-faq { max-width: 760px; }
.nana-faq__item {
  border-top: 1px solid var(--nana-line);
  padding: 18px 0;
}
.nana-faq__item:last-child { border-bottom: 1px solid var(--nana-line); }
.nana-faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--nana-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nana-faq__item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--nana-muted);
  transition: transform .15s ease;
}
.nana-faq__item[open] summary::after { transform: rotate(45deg); }
.nana-faq__item p {
  margin: 12px 0 0;
  color: var(--nana-body);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */
.nana-footer {
  background: var(--nana-ink);
  color: var(--nana-cream);
  padding: 64px 0 24px;
  margin-top: 64px;
}
.nana-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .nana-footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
.nana-footer__col h4 {
  font-family: Georgia, serif;
  font-size: 14px;
  margin: 0 0 14px;
  color: var(--nana-cream);
  letter-spacing: 0.04em;
}
.nana-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nana-footer__col li { margin-bottom: 8px; font-size: 14px; }
.nana-footer__col a {
  color: rgba(255,248,237,0.78);
  font-size: 14px;
}
.nana-footer__col a:hover { color: var(--nana-cream); }
.nana-footer__col .nana-logo__mark { background: var(--nana-cream); color: var(--nana-ink); }
.nana-footer__col p { margin: 12px 0 0; font-size: 14px; color: rgba(255,248,237,0.7); max-width: 30ch; }
.nana-footer__legal {
  max-width: var(--nana-container);
  margin: 40px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255,248,237,0.15);
  color: rgba(255,248,237,0.55);
  font-size: 12px;
}

/* ============================================================
   QUICK VIEW MODAL (UI only, no Woo)
   ============================================================ */
.nana-qv {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(31,29,27,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nana-qv[hidden] { display: none; }
.nana-qv__panel {
  position: relative;
  background: var(--nana-cream);
  border-radius: var(--nana-radius);
  padding: 28px;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--nana-shadow-md);
}
.nana-qv__close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: 0;
  font-size: 22px;
  color: var(--nana-muted);
  cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
}
.nana-qv__close:hover { background: rgba(31,29,27,0.06); color: var(--nana-ink); }
.nana-qv h3 { font-family: Georgia, serif; margin: 0 0 10px; color: var(--nana-ink); }
.nana-qv__body { color: var(--nana-muted); margin: 0 0 18px; }

/* ============================================================
   FALLBACK (when index.php renders)
   ============================================================ */
.nana-fallback { padding: 80px 24px; text-align: center; color: var(--nana-muted); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ============================================================
   COMMERCE: mini cart drawer, wishlist, toast, filter chips
   ============================================================ */

/* CART BADGE */
.nana-icon-btn { position: relative; }
.nana-cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--nana-ink, #1f1d1b);
  color: var(--nana-cream, #fff8ed);
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  font-family: 'Fraunces', Georgia, serif;
  pointer-events: none;
}
.nana-cart-badge[hidden] { display: none; }

/* WISHLIST BUTTON */
.nana-wishlist {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 248, 237, 0.95);
  border: 1px solid rgba(31, 29, 27, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  z-index: 2;
  font-size: 16px;
  color: var(--nana-ink, #1f1d1b);
  padding: 0;
}
.nana-wishlist:hover { transform: scale(1.08); background: #fff8ed; }
.nana-wishlist.is-active { background: var(--nana-rose, #d8a89a); color: #fff; }
.nana-card__media { position: relative; }

/* FILTER BAR */
.nana-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  padding: 18px 24px;
  background: var(--nana-cream, #fff8ed);
  border: 1px solid rgba(31, 29, 27, 0.06);
  border-radius: 18px;
  margin: 0 0 32px;
  font-family: 'Inter', -apple-system, sans-serif;
}
.nana-filterbar__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nana-muted, #6e6251);
  margin-right: 4px;
}
.nana-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff8ed;
  border: 1px solid rgba(31, 29, 27, 0.12);
  color: var(--nana-ink, #1f1d1b);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
  font-weight: 500;
}
.nana-chip:hover { border-color: var(--nana-ink, #1f1d1b); }
.nana-chip.is-active {
  background: var(--nana-ink, #1f1d1b);
  color: var(--nana-cream, #fff8ed);
  border-color: var(--nana-ink, #1f1d1b);
}
.nana-chip__count {
  font-size: 11px;
  opacity: 0.6;
  margin-left: 2px;
}
.nana-filterbar__result {
  margin-left: auto;
  font-size: 13px;
  color: var(--nana-muted, #6e6251);
}
.nana-filterbar__clear {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--nana-muted, #6e6251);
  cursor: pointer;
  text-decoration: underline;
  padding: 4px 6px;
  font-family: inherit;
}
.nana-filterbar__clear:hover { color: var(--nana-ink, #1f1d1b); }

/* NO RESULTS */
.nana-no-results {
  padding: 60px 24px;
  text-align: center;
  color: var(--nana-muted, #6e6251);
  font-family: 'Inter', sans-serif;
}
.nana-no-results[hidden] { display: none; }

/* MINI CART DRAWER */
.nana-cart-drawer {
  position: fixed;
  inset: 0;
  background: rgba(31, 29, 27, 0.45);
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
}
.nana-cart-drawer[hidden] { display: none; }
.nana-cart-drawer__panel {
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: var(--nana-cream, #fff8ed);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(31, 29, 27, 0.18);
  animation: nana-slide-in 0.25s ease-out;
}
@keyframes nana-slide-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.nana-cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(31, 29, 27, 0.08);
}
.nana-cart-drawer__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: var(--nana-ink, #1f1d1b);
}
.nana-cart-drawer__close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--nana-ink, #1f1d1b);
  padding: 4px 10px;
  line-height: 1;
}
.nana-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.nana-cart-drawer__foot {
  border-top: 1px solid rgba(31, 29, 27, 0.08);
  padding: 20px 24px;
  background: rgba(255, 248, 237, 0.6);
}
.nana-cart-empty {
  text-align: center;
  padding: 60px 16px;
  color: var(--nana-muted, #6e6251);
  font-family: 'Inter', sans-serif;
}
.nana-cart-empty[hidden] { display: none; }
.nana-cart-empty h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  margin: 12px 0 6px;
  color: var(--nana-ink, #1f1d1b);
}

/* CART ITEM */
.nana-cart-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.nana-cart-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  padding: 12px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(31, 29, 27, 0.06);
}
.nana-cart-item__media {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: var(--nana-cream, #fff8ed);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nana-cart-item__media[data-tone="cream"] { background: #fff8ed; }
.nana-cart-item__media[data-tone="sand"]  { background: #f1e4d0; }
.nana-cart-item__media[data-tone="rose"]  { background: #f1d7d1; }
.nana-cart-item__media[data-tone="sage"]  { background: #d8e2d6; }
.nana-cart-item__media[data-tone="ink"]   { background: #3a3530; }
.nana-cart-item__swatches { display: flex; gap: 4px; }
.nana-cart-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(31, 29, 27, 0.15);
  display: inline-block;
}
.nana-cart-item__body { display: flex; flex-direction: column; gap: 4px; }
.nana-cart-item__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  margin: 0;
  color: var(--nana-ink, #1f1d1b);
  font-weight: 600;
}
.nana-cart-item__meta {
  font-size: 12px;
  color: var(--nana-muted, #6e6251);
  margin: 0;
  font-family: 'Inter', sans-serif;
}
.nana-cart-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.nana-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(31, 29, 27, 0.12);
  border-radius: 999px;
  overflow: hidden;
}
.nana-qty__btn {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 14px;
  color: var(--nana-ink, #1f1d1b);
  font-family: inherit;
}
.nana-qty__btn:hover { background: var(--nana-cream, #fff8ed); }
.nana-qty__val {
  font-size: 13px;
  font-weight: 600;
  min-width: 22px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}
.nana-cart-item__remove {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--nana-muted, #6e6251);
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
  padding: 0;
}
.nana-cart-item__remove:hover { color: var(--nana-ink, #1f1d1b); }

/* CART FOOTER */
.nana-cart-total {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  margin: 0 0 12px;
  color: var(--nana-ink, #1f1d1b);
}
.nana-cart-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nana-cart-actions .nana-btn { width: 100%; }
.nana-cart-clear {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--nana-muted, #6e6251);
  cursor: pointer;
  text-decoration: underline;
  margin-top: 4px;
  font-family: inherit;
}

/* TOAST */
.nana-toast-stack {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.nana-toast {
  background: var(--nana-ink, #1f1d1b);
  color: var(--nana-cream, #fff8ed);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  box-shadow: 0 6px 20px rgba(31, 29, 27, 0.25);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nana-toast.is-visible { opacity: 1; transform: translateY(0); }

/* QV — quick view genişletme */
.nana-qv__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px;
}
.nana-qv__media {
  aspect-ratio: 1;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.nana-qv__media[data-tone="cream"] { background: #fff8ed; }
.nana-qv__media[data-tone="sand"]  { background: #f1e4d0; }
.nana-qv__media[data-tone="rose"]  { background: #f1d7d1; }
.nana-qv__media[data-tone="sage"]  { background: #d8e2d6; }
.nana-qv__media[data-tone="ink"]   { background: #3a3530; color: #fff8ed; }
.nana-qv__visual {
  width: 80%;
  height: 80%;
  background: rgba(255, 248, 237, 0.4);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}
.nana-qv__sku {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(31, 29, 27, 0.5);
  text-transform: uppercase;
}
.nana-qv__color-row { display: flex; gap: 8px; }
.nana-qv__color-row .nana-cart-swatch { width: 22px; height: 22px; }
.nana-qv__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Inter', sans-serif;
}
.nana-qv__tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: var(--nana-ink, #1f1d1b);
  line-height: 1.3;
}
.nana-qv__price {
  font-size: 14px;
  color: var(--nana-muted, #6e6251);
  margin: 0;
}
.nana-qv__stock {
  font-size: 12px;
  color: var(--nana-muted, #6e6251);
  margin: 0;
}
.nana-qv__actions { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }

@media (max-width: 600px) {
  .nana-qv__layout { grid-template-columns: 1fr; }
  .nana-cart-drawer__panel { max-width: 100%; }
  .nana-filterbar { padding: 14px 16px; }
  .nana-filterbar__result { margin-left: 0; flex-basis: 100%; }
}
/* ============================================================
   COMMERCE PRO: shipping bar, sticky ATC, recently viewed, 
   bundles, trust strip, exit intent, countdown
   ============================================================ */

/* === 1) FREE SHIPPING PROGRESS BAR === */
.nana-shipping-bar {
  background: linear-gradient(135deg, #fff8ed 0%, #f1e4d0 100%);
  border: 1px solid rgba(31, 29, 27, 0.06);
  border-radius: 14px;
  padding: 14px 18px;
  margin: 0 0 28px;
  font-family: 'Inter', -apple-system, sans-serif;
  position: relative;
  overflow: hidden;
}
.nana-shipping-bar__track {
  height: 8px;
  background: rgba(31, 29, 27, 0.08);
  border-radius: 999px;
  margin: 8px 0;
  overflow: hidden;
}
.nana-shipping-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #9ab09a 0%, #b5c4b1 100%);
  border-radius: 999px;
  width: 0%;
  transition: width 0.4s ease;
}
.nana-shipping-bar__label {
  font-size: 13px;
  color: var(--nana-ink, #1f1d1b);
  margin: 0;
  line-height: 1.5;
}
.nana-shipping-bar__label strong {
  font-weight: 700;
}

/* === 2) STICKY ADD-TO-CART === */
.nana-sticky-atc {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  opacity: 0;
  transition: all 0.25s ease;
  pointer-events: none;
  z-index: 3;
}
.nana-card__media:hover .nana-sticky-atc,
.nana-card:focus-within .nana-sticky-atc {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nana-btn--sm {
  padding: 8px 16px;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(31, 29, 27, 0.18);
}
.nana-btn--xs {
  padding: 6px 12px;
  font-size: 11px;
}

/* === 3) RECENTLY VIEWED CAROUSEL === */
.nana-rv-section {
  padding: 60px 24px;
  background: var(--nana-cream, #fff8ed);
  font-family: 'Inter', sans-serif;
}
.nana-rv-section__header {
  max-width: 1280px;
  margin: 0 auto 24px;
}
.nana-rv-section__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--nana-ink, #1f1d1b);
}
.nana-rv-section__lede {
  font-size: 14px;
  color: var(--nana-muted, #6e6251);
  margin: 0;
}
.nana-rv-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.nana-rv-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(31, 29, 27, 0.06);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nana-rv-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(31, 29, 27, 0.08);
}
.nana-rv-card__media {
  aspect-ratio: 1.2;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 10px;
}
.nana-rv-card__media[data-tone="cream"] { background: #fff8ed; }
.nana-rv-card__media[data-tone="sand"]  { background: #f1e4d0; }
.nana-rv-card__media[data-tone="rose"]  { background: #f1d7d1; }
.nana-rv-card__media[data-tone="sage"]  { background: #d8e2d6; }
.nana-rv-card__media[data-tone="ink"]   { background: #3a3530; color: #fff8ed; }
.nana-rv-card__sku {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(31, 29, 27, 0.4);
  text-transform: uppercase;
}
.nana-rv-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--nana-ink, #1f1d1b);
}
.nana-rv-card__meta {
  font-size: 12px;
  color: var(--nana-muted, #6e6251);
  margin: 0;
}
.nana-rv-card__actions {
  display: flex;
  gap: 6px;
  margin-top: auto;
}
.nana-rv-card__actions .nana-btn { flex: 1; }

/* === 4) BUNDLE CARDS === */
.nana-bundles-section {
  padding: 60px 24px;
  background: var(--nana-cream, #fff8ed);
  font-family: 'Inter', sans-serif;
}
.nana-bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 24px auto 0;
}
.nana-bundle-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(31, 29, 27, 0.06);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nana-bundle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(31, 29, 27, 0.1);
}
.nana-bundle-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nana-bundle-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f1d7d1 0%, #d8a89a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.nana-bundle-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--nana-ink, #1f1d1b);
}
.nana-bundle-card__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nana-bundle-card__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--nana-cream, #fff8ed);
  border-radius: 10px;
}
.nana-bundle-card__item-thumb {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.nana-bundle-card__item[data-tone="cream"] .nana-bundle-card__item-thumb { background: #fff8ed; }
.nana-bundle-card__item[data-tone="sand"] .nana-bundle-card__item-thumb  { background: #f1e4d0; }
.nana-bundle-card__item[data-tone="rose"] .nana-bundle-card__item-thumb  { background: #f1d7d1; }
.nana-bundle-card__item[data-tone="sage"] .nana-bundle-card__item-thumb  { background: #d8e2d6; }
.nana-bundle-card__item-name {
  font-size: 13px;
  color: var(--nana-ink, #1f1d1b);
  font-weight: 500;
}
.nana-bundle-card__item-remove {
  background: none;
  border: none;
  color: var(--nana-muted, #6e6251);
  cursor: pointer;
  margin-left: auto;
  font-size: 14px;
}
.nana-bundle-card__add {
  width: 100%;
  margin-top: 8px;
}

/* === 5) TRUST STRIP === */
.nana-trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  background: var(--nana-cream, #fff8ed);
  border: 1px solid rgba(31, 29, 27, 0.06);
  border-radius: 18px;
  margin: 32px 0;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}
.nana-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid rgba(31, 29, 27, 0.06);
}
.nana-trust-item:last-child {
  border-right: none;
}
.nana-trust-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #d8e2d6 0%, #b5c4b1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nana-trust-item__icon svg { width: 20px; height: 20px; color: #1f1d1b; }
.nana-trust-item__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 2px;
  color: var(--nana-ink, #1f1d1b);
}
.nana-trust-item__desc {
  font-size: 12px;
  color: var(--nana-muted, #6e6251);
  margin: 0;
}

@media (max-width: 768px) {
  .nana-trust-item { border-right: none; border-bottom: 1px solid rgba(31, 29, 27, 0.06); }
  .nana-trust-item:last-child { border-bottom: none; }
}

/* === 6) EXIT INTENT MODAL === */
.nana-exit-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 29, 27, 0.55);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.nana-exit-modal[hidden] { display: none; }
.nana-exit-modal__panel {
  background: var(--nana-cream, #fff8ed);
  border-radius: 24px;
  padding: 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(31, 29, 27, 0.3);
  animation: nana-modal-in 0.3s ease-out;
}
@keyframes nana-modal-in {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.nana-exit-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--nana-ink, #1f1d1b);
  padding: 4px 10px;
}
.nana-exit-modal__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--nana-ink, #1f1d1b);
}
.nana-exit-modal__lede {
  font-size: 14px;
  color: var(--nana-muted, #6e6251);
  margin: 0 0 20px;
  line-height: 1.6;
}
.nana-exit-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* === 7) COUNTDOWN === */
.nana-countdown {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--nana-ink, #1f1d1b);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nana-countdown::before {
  content: '⏰';
  font-size: 16px;
}

/* === 8) SMART SEARCH === */
.nana-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 29, 27, 0.45);
  z-index: 1050;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 24px 24px;
}
.nana-search-overlay[hidden] { display: none; }
.nana-search-panel {
  background: var(--nana-cream, #fff8ed);
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(31, 29, 27, 0.25);
}
.nana-search-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(31, 29, 27, 0.12);
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--nana-ink, #1f1d1b);
  margin-bottom: 16px;
}
.nana-search-input:focus {
  outline: 2px solid var(--nana-sage, #9ab09a);
  outline-offset: -1px;
}
.nana-search-results {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 400px;
  overflow-y: auto;
}
.nana-search-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(31, 29, 27, 0.06);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.nana-search-result:hover { background: var(--nana-cream, #fff8ed); }
.nana-search-result__thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
}
.nana-search-result__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--nana-ink, #1f1d1b);
}
.nana-search-result__meta {
  font-size: 12px;
  color: var(--nana-muted, #6e6251);
}
.nana-search-result__price {
  margin-left: auto;
  font-size: 12px;
  color: var(--nana-muted, #6e6251);
}

/* === 9) SOCIAL PROOF NOTIFICATION === */
.nana-social-proof {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 6px 20px rgba(31, 29, 27, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 900;
  font-family: 'Inter', sans-serif;
  max-width: 320px;
  transform: translateX(-120%);
  transition: transform 0.4s ease;
}
.nana-social-proof.is-visible {
  transform: translateX(0);
}
.nana-social-proof__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8a89a 0%, #9ab09a 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}
.nana-social-proof__text {
  font-size: 13px;
  color: var(--nana-ink, #1f1d1b);
  line-height: 1.4;
}
.nana-social-proof__text strong {
  font-weight: 600;
}
.nana-social-proof__time {
  font-size: 11px;
  color: var(--nana-muted, #6e6251);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .nana-social-proof { left: 16px; right: 16px; max-width: none; }
  .nana-rv-track { grid-template-columns: repeat(2, 1fr); }
  .nana-bundles-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE-LEVEL STYLES: shop, pdp, checkout, account, 404, static
   ============================================================ */

/* Breadcrumb */
.nana-breadcrumb {
  max-width: 1280px;
  margin: 0 auto 16px;
  padding: 16px 0 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--nana-muted, #6e6251);
}
.nana-breadcrumb a {
  color: var(--nana-ink, #1f1d1b);
  text-decoration: none;
}
.nana-breadcrumb a:hover {
  text-decoration: underline;
}

/* SHOP PAGE */
.nana-shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 0 0 24px;
  padding: 16px 20px;
  background: var(--nana-cream, #fff8ed);
  border-radius: 14px;
  border: 1px solid rgba(31, 29, 27, 0.06);
}
.nana-shop-toolbar__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.nana-sort-select {
  padding: 7px 12px;
  border-radius: 10px;
  border: 1px solid rgba(31, 29, 27, 0.12);
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  color: var(--nana-ink, #1f1d1b);
}
.nana-grid-products--shop {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.nana-card__rating {
  font-size: 12px;
  color: var(--nana-rose, #d8a89a);
  letter-spacing: 0.05em;
  margin: 0 0 6px;
}
.nana-card__rating span {
  color: var(--nana-muted, #6e6251);
  margin-left: 4px;
  letter-spacing: 0;
}

/* PDP */
.nana-pdp {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 24px auto;
  padding: 0 24px;
  font-family: 'Inter', sans-serif;
}
.nana-pdp__gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nana-pdp__main-image {
  aspect-ratio: 1;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  position: relative;
}
.nana-pdp__main-image[data-tone="cream"] { background: #fff8ed; }
.nana-pdp__main-image[data-tone="sand"] { background: #f1e4d0; }
.nana-pdp__main-image[data-tone="rose"] { background: #f1d7d1; }
.nana-pdp__main-image[data-tone="sage"] { background: #d8e2d6; }
.nana-pdp__main-image[data-tone="ink"] { background: #3a3530; color: #fff8ed; }
.nana-pdp__sku {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(31, 29, 27, 0.4);
  text-transform: uppercase;
}
.nana-pdp__tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.nana-pdp-tag {
  background: var(--nana-ink, #1f1d1b);
  color: var(--nana-cream, #fff8ed);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.nana-pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.nana-pdp__thumb {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  background: rgba(31, 29, 27, 0.05);
}
.nana-pdp__thumb[data-tone="cream"] { background: #fff8ed; }
.nana-pdp__thumb[data-tone="sand"] { background: #f1e4d0; }
.nana-pdp__thumb[data-tone="rose"] { background: #f1d7d1; }
.nana-pdp__thumb[data-tone="sage"] { background: #d8e2d6; }
.nana-pdp__thumb.is-active {
  border-color: var(--nana-ink, #1f1d1b);
}

.nana-pdp__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nana-pdp__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  margin: 0;
  color: var(--nana-ink, #1f1d1b);
  line-height: 1.1;
}
.nana-pdp__rating {
  color: var(--nana-rose, #d8a89a);
  font-size: 14px;
  letter-spacing: 0.05em;
}
.nana-pdp__rating span {
  color: var(--nana-muted, #6e6251);
  margin-left: 6px;
  letter-spacing: 0;
}
.nana-pdp__tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: var(--nana-muted, #6e6251);
  margin: 0;
}
.nana-pdp__price {
  font-size: 14px;
  color: var(--nana-ink, #1f1d1b);
  margin: 0;
  font-weight: 500;
}
.nana-pdp__stock {
  font-size: 13px;
  color: var(--nana-muted, #6e6251);
  margin: 0;
}
.nana-pdp__variants {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0;
}
.nana-pdp__variant-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--nana-ink, #1f1d1b);
  margin: 0 0 8px;
}
.nana-pdp__swatches {
  display: flex;
  gap: 10px;
}
.nana-swatch--lg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(31, 29, 27, 0.1);
  cursor: pointer;
}
.nana-swatch--lg.is-active {
  border-color: var(--nana-ink, #1f1d1b);
  transform: scale(1.1);
}
.nana-pdp__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.nana-pdp-chip {
  padding: 6px 14px;
  background: var(--nana-cream, #fff8ed);
  border: 1px solid rgba(31, 29, 27, 0.12);
  border-radius: 999px;
  font-size: 13px;
  color: var(--nana-ink, #1f1d1b);
}
.nana-qty--lg .nana-qty__btn {
  width: 36px;
  height: 36px;
  font-size: 16px;
}
.nana-qty--lg .nana-qty__val {
  min-width: 32px;
  font-size: 14px;
}
.nana-pdp__actions {
  display: flex;
  gap: 12px;
  margin: 8px 0;
}
.nana-btn--lg {
  padding: 14px 28px;
  font-size: 14px;
  flex: 1;
}
.nana-pdp__quick-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: var(--nana-cream, #fff8ed);
  border-radius: 12px;
  font-size: 13px;
  color: var(--nana-ink, #1f1d1b);
}

/* PDP Tabs */
.nana-pdp__tabs {
  max-width: 1280px;
  margin: 32px auto 64px;
  padding: 0 24px;
}
.nana-pdp__tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(31, 29, 27, 0.1);
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}
.nana-pdp__tab {
  padding: 12px 20px;
  background: none;
  border: none;
  font-size: 14px;
  color: var(--nana-muted, #6e6251);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  font-family: inherit;
  font-weight: 500;
}
.nana-pdp__tab.is-active {
  color: var(--nana-ink, #1f1d1b);
  border-bottom-color: var(--nana-ink, #1f1d1b);
}
.nana-pdp__tab-panel {
  display: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--nana-ink, #1f1d1b);
}
.nana-pdp__tab-panel.is-active {
  display: block;
}
.nana-pdp__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.nana-pdp__features li {
  padding: 12px 16px;
  background: var(--nana-cream, #fff8ed);
  border-radius: 10px;
}
.nana-pdp__reviews {
  display: grid;
  gap: 16px;
}
.nana-review {
  padding: 18px;
  background: var(--nana-cream, #fff8ed);
  border-radius: 12px;
}
.nana-review__head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.nana-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--nana-rose, #d8a89a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
.nana-review__name {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.nana-review__stars {
  font-size: 12px;
  color: var(--nana-rose, #d8a89a);
  margin: 0;
  letter-spacing: 0.05em;
}
.nana-review__text {
  font-size: 14px;
  color: var(--nana-ink, #1f1d1b);
  margin: 0;
  line-height: 1.6;
}

/* CHECKOUT */
.nana-checkout {
  max-width: 1280px;
  margin: 0 auto;
}
.nana-checkout__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-top: 24px;
}
.nana-checkout__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.nana-checkout__fieldset {
  border: 1px solid rgba(31, 29, 27, 0.08);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
}
.nana-checkout__fieldset legend {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--nana-ink, #1f1d1b);
  padding: 0 8px;
}
.nana-checkout__form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--nana-ink, #1f1d1b);
  font-weight: 500;
}
.nana-checkout__form input[type="text"],
.nana-checkout__form input[type="email"],
.nana-checkout__form input[type="tel"],
.nana-checkout__form input[type="password"],
.nana-checkout__form textarea {
  padding: 10px 14px;
  border: 1px solid rgba(31, 29, 27, 0.12);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--nana-ink, #1f1d1b);
  background: #fff;
}
.nana-checkout__form input:focus,
.nana-checkout__form textarea:focus {
  outline: 2px solid var(--nana-sage, #9ab09a);
  outline-offset: -1px;
}
.nana-checkout__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.nana-checkout__radio {
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-weight: 400 !important;
}
.nana-checkout__checkbox {
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  font-weight: 400 !important;
}
.nana-checkout__card-form {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px dashed rgba(31, 29, 27, 0.1);
}
.nana-checkout__note {
  font-size: 12px;
  color: var(--nana-muted, #6e6251);
  margin: 8px 0 0;
}
.nana-checkout__submit {
  margin-top: 8px;
}
.nana-checkout__summary {
  background: #fff;
  border: 1px solid rgba(31, 29, 27, 0.08);
  border-radius: 14px;
  padding: 20px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
}
.nana-checkout__summary h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--nana-ink, #1f1d1b);
}
.nana-checkout__lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(31, 29, 27, 0.08);
}
.nana-checkout-line {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
}
.nana-checkout-line__media {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}
.nana-checkout-line__media[data-tone="cream"] { background: #fff8ed; }
.nana-checkout-line__media[data-tone="sand"] { background: #f1e4d0; }
.nana-checkout-line__media[data-tone="rose"] { background: #f1d7d1; }
.nana-checkout-line__media[data-tone="sage"] { background: #d8e2d6; }
.nana-checkout-line__media[data-tone="ink"] { background: #3a3530; }
.nana-checkout-line__name {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}
.nana-checkout-line__meta {
  font-size: 11px;
  color: var(--nana-muted, #6e6251);
  margin: 2px 0 0;
}
.nana-checkout-line__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(31, 29, 27, 0.12);
  border-radius: 999px;
  font-size: 13px;
}
.nana-checkout-line__qty button {
  background: none;
  border: none;
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  color: var(--nana-ink, #1f1d1b);
}
.nana-checkout-line__qty span {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
}
.nana-checkout__totals > div {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  color: var(--nana-muted, #6e6251);
}
.nana-checkout__shipping-note {
  font-size: 12px;
  color: var(--nana-sage, #9ab09a);
  margin: 4px 0;
}
.nana-checkout__grand {
  border-top: 1px solid rgba(31, 29, 27, 0.1);
  margin-top: 8px;
  padding-top: 12px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--nana-ink, #1f1d1b) !important;
}

/* ACCOUNT */
.nana-account {
  max-width: 800px;
  margin: 0 auto;
}
.nana-account__tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid rgba(31, 29, 27, 0.1);
  margin-bottom: 24px;
}
.nana-account__tab {
  padding: 12px 20px;
  background: none;
  border: none;
  font-size: 14px;
  color: var(--nana-muted, #6e6251);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  font-family: inherit;
  font-weight: 500;
}
.nana-account__tab.is-active {
  color: var(--nana-ink, #1f1d1b);
  border-bottom-color: var(--nana-ink, #1f1d1b);
}
.nana-account__panel {
  display: none;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(31, 29, 27, 0.08);
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
}
.nana-account__panel.is-active {
  display: block;
}
.nana-account__form {
  max-width: 400px;
}
.nana-account__form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 500;
}
.nana-account__form input {
  padding: 10px 14px;
  border: 1px solid rgba(31, 29, 27, 0.12);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
}
.nana-account__note {
  font-size: 12px;
  color: var(--nana-muted, #6e6251);
  margin-top: 8px;
}
.nana-orders-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nana-order-row {
  padding: 16px;
  background: var(--nana-cream, #fff8ed);
  border-radius: 10px;
  border: 1px solid rgba(31, 29, 27, 0.06);
}

/* 404 */
.nana-404 {
  text-align: center;
  padding: 100px 24px;
  font-family: 'Inter', sans-serif;
}
.nana-404 h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 96px;
  color: var(--nana-ink, #1f1d1b);
  margin: 0 0 8px;
}

/* Static pages */
.nana-static {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}
.nana-static__content {
  font-size: 14px;
  line-height: 1.7;
  color: var(--nana-ink, #1f1d1b);
}
.nana-static__content h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  margin: 24px 0 8px;
}

/* ORDER CONFIRM */
.nana-order-confirm {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}
.nana-order-confirm__check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--nana-sage, #9ab09a);
  color: #fff;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.nana-order-confirm h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  margin: 0 0 12px;
  color: var(--nana-ink, #1f1d1b);
}
.nana-order-confirm__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

/* QUIZ */
.nana-quiz {
  position: fixed;
  inset: 0;
  background: rgba(31, 29, 27, 0.55);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.nana-quiz[hidden] { display: none; }
.nana-quiz__panel {
  background: var(--nana-cream, #fff8ed);
  border-radius: 20px;
  padding: 32px;
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 16px 48px rgba(31, 29, 27, 0.25);
  max-height: 90vh;
  overflow-y: auto;
}
.nana-quiz__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--nana-ink, #1f1d1b);
  padding: 4px 10px;
}
.nana-quiz__progress {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}
.nana-quiz__step {
  flex: 1;
  height: 6px;
  background: rgba(31, 29, 27, 0.1);
  border-radius: 999px;
  transition: background 0.3s;
}
.nana-quiz__step.is-active { background: var(--nana-ink, #1f1d1b); }
.nana-quiz__step.is-done { background: var(--nana-sage, #9ab09a); }
.nana-quiz__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--nana-ink, #1f1d1b);
}
.nana-quiz__lede {
  font-size: 13px;
  color: var(--nana-muted, #6e6251);
  margin: 0 0 16px;
}
.nana-quiz__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.nana-quiz__opt {
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(31, 29, 27, 0.12);
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  color: var(--nana-ink, #1f1d1b);
  text-align: left;
  transition: all 0.15s ease;
}
.nana-quiz__opt:hover {
  border-color: var(--nana-ink, #1f1d1b);
  background: var(--nana-cream, #fff8ed);
}
.nana-quiz__results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.nana-quiz__card {
  background: #fff;
  border: 1px solid rgba(31, 29, 27, 0.06);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nana-quiz__card-media {
  height: 80px;
  border-radius: 10px;
}
.nana-quiz__card-media[data-tone="cream"] { background: #fff8ed; }
.nana-quiz__card-media[data-tone="sand"] { background: #f1e4d0; }
.nana-quiz__card-media[data-tone="rose"] { background: #f1d7d1; }
.nana-quiz__card-media[data-tone="sage"] { background: #d8e2d6; }
.nana-quiz__card-media[data-tone="ink"] { background: #3a3530; }
.nana-quiz__card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  margin: 0;
}
.nana-quiz__card p {
  font-size: 12px;
  color: var(--nana-muted, #6e6251);
  margin: 0;
}
.nana-quiz__card-swatches {
  display: flex;
  gap: 4px;
}
.nana-quiz__card-price {
  font-size: 11px;
  color: var(--nana-ink, #1f1d1b);
  font-weight: 500;
}
.nana-quiz__card-actions {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}
.nana-quiz__card-actions .nana-btn { flex: 1; }
.nana-quiz__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.nana-quiz__progress-label {
  font-size: 12px;
  color: var(--nana-muted, #6e6251);
  margin-left: auto;
}

/* MOBILE BOTTOM BAR */
.nana-mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid rgba(31, 29, 27, 0.08);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  z-index: 800;
  box-shadow: 0 -4px 12px rgba(31, 29, 27, 0.06);
}
.nana-mobile-bottom-bar__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  padding: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--nana-ink, #1f1d1b);
  cursor: pointer;
  text-decoration: none;
}
.nana-mobile-bottom-bar__btn span {
  font-size: 11px;
}

@media (max-width: 768px) {
  .nana-mobile-bottom-bar { display: flex; }
  .nana-home { padding-bottom: 80px; }
  .nana-pdp { grid-template-columns: 1fr; gap: 24px; }
  .nana-checkout__grid { grid-template-columns: 1fr; }
  .nana-quiz__options, .nana-quiz__results { grid-template-columns: 1fr; }
  .nana-shop-toolbar { flex-direction: column; align-items: flex-start; }
  .nana-pdp__features { grid-template-columns: 1fr; }
  .nana-icon-btn--menu { display: inline-flex; }
  .nana-nav { display: none; }
}

@media (min-width: 769px) {
  .nana-icon-btn--menu { display: none; }
}

/* Hide icon-btn menu on mobile, only show on small screens via media query above */
