/* ===================================================
   Nana Kids — Extras CSS (Phase 2: All missing features)
   Loaded AFTER nana-pro.css. Override-friendly.
   =================================================== */

/* --- 22. Announcement bar --- */
.nana-announce {
  background: linear-gradient(90deg, var(--nana-ink, #1f1d1b) 0%, #2a2622 100%);
  color: var(--nana-cream, #fff8ed);
  font-size: 13px;
  position: relative;
  z-index: 60;
}
.nana-announce__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px 48px 9px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.nana-announce__pill {
  background: var(--nana-sage, #9ab09a);
  color: var(--nana-ink, #1f1d1b);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
}
.nana-announce__text { margin: 0; }
.nana-announce__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
  padding: 4px 8px;
}
.nana-announce__close:hover { opacity: 1; }
.nana-announce.is-hidden { display: none; }

/* --- 23. Cookie banner --- */
.nana-cookie {
  position: fixed;
  left: 16px;
  bottom: 84px;
  max-width: 380px;
  background: #fff;
  border: 1px solid rgba(31, 29, 27, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(31, 29, 27, 0.18);
  padding: 18px 20px;
  z-index: 90;
  font-size: 14px;
}
.nana-cookie[hidden] { display: none; }
.nana-cookie__title {
  margin: 0 0 6px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
}
.nana-cookie__desc { margin: 0 0 12px; color: #6b6660; line-height: 1.5; }
.nana-cookie__actions { display: flex; gap: 8px; justify-content: flex-end; }

/* --- 24. Wishlist drawer --- */
.nana-wishlist-drawer {
  position: fixed;
  inset: 0;
  z-index: 95;
  pointer-events: none;
  visibility: hidden;
}
.nana-wishlist-drawer.is-open { pointer-events: auto; visibility: visible; }
.nana-wishlist-drawer__scrim {
  position: absolute; inset: 0;
  background: rgba(31, 29, 27, 0.4);
  opacity: 0; transition: opacity 0.25s;
}
.nana-wishlist-drawer.is-open .nana-wishlist-drawer__scrim { opacity: 1; }
.nana-wishlist-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--nana-cream, #fff8ed);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -8px 0 28px rgba(31, 29, 27, 0.15);
}
.nana-wishlist-drawer.is-open .nana-wishlist-drawer__panel { transform: translateX(0); }
.nana-wishlist-drawer__head,
.nana-wishlist-drawer__foot {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(31, 29, 27, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nana-wishlist-drawer__foot { border-top: 1px solid rgba(31, 29, 27, 0.08); border-bottom: 0; }
.nana-wishlist-drawer__title {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}
.nana-wishlist-drawer__close {
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--nana-ink, #1f1d1b);
  opacity: 0.6;
}
.nana-wishlist-drawer__close:hover { opacity: 1; }
.nana-wishlist-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
}
.nana-wishlist-empty {
  color: #6b6660;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
}
.nana-wishlist-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(31, 29, 27, 0.06);
}
.nana-wishlist-item:last-child { border-bottom: 0; }
.nana-wishlist-item__thumb {
  width: 60px;
  height: 60px;
  background: rgba(154, 176, 154, 0.18);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.nana-wishlist-item__body { flex: 1; min-width: 0; }
.nana-wishlist-item__name {
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 4px;
  line-height: 1.3;
}
.nana-wishlist-item__price { font-size: 13px; color: #6b6660; margin: 0; }
.nana-wishlist-item__remove {
  background: transparent;
  border: 0;
  color: #a89e91;
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
}
.nana-wishlist-item__remove:hover { color: var(--nana-ink, #1f1d1b); }

/* --- 25. Account modal --- */
.nana-account-modal {
  position: fixed;
  inset: 0;
  z-index: 96;
  display: none;
  align-items: center;
  justify-content: center;
}
.nana-account-modal.is-open { display: flex; }
.nana-account-modal__scrim {
  position: absolute; inset: 0;
  background: rgba(31, 29, 27, 0.55);
  animation: nanaFadeIn 0.2s ease;
}
.nana-account-modal__panel {
  position: relative;
  background: var(--nana-cream, #fff8ed);
  border-radius: 22px;
  width: min(440px, 92vw);
  max-height: 92vh;
  overflow-y: auto;
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(31, 29, 27, 0.25);
  animation: nanaPop 0.25s ease;
}
.nana-account-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  background: transparent;
  border: 0;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--nana-ink, #1f1d1b);
  opacity: 0.5;
}
.nana-account-modal__close:hover { opacity: 1; }
.nana-account-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(31, 29, 27, 0.1);
}
.nana-account-tab {
  background: transparent;
  border: 0;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #6b6660;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: inherit;
}
.nana-account-tab.is-active {
  color: var(--nana-ink, #1f1d1b);
  border-bottom-color: var(--nana-ink, #1f1d1b);
}
.nana-account-form { display: flex; flex-direction: column; gap: 14px; }
.nana-account-form[hidden] { display: none; }
.nana-account-form h3 {
  margin: 0 0 4px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}
.nana-account-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #4a443d;
}
.nana-account-form input[type="email"],
.nana-account-form input[type="password"],
.nana-account-form input[type="text"] {
  padding: 11px 14px;
  border: 1px solid rgba(31, 29, 27, 0.18);
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  font-family: inherit;
  color: var(--nana-ink, #1f1d1b);
}
.nana-account-form input:focus {
  outline: 2px solid var(--nana-sage, #9ab09a);
  outline-offset: 0;
  border-color: transparent;
}
.nana-account-check {
  display: flex;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 8px !important;
  font-size: 12px !important;
}
.nana-account-check input { margin-top: 2px; }
.nana-account-meta {
  text-align: center;
  margin: 6px 0 0;
  font-size: 13px;
  color: #6b6660;
}
.nana-account-meta a { color: var(--nana-ink, #1f1d1b); text-decoration: underline; }
.nana-account-success {
  text-align: center;
  padding: 20px 0;
}
.nana-account-success[hidden] { display: none; }
.nana-account-success__icon {
  display: inline-flex;
  width: 56px; height: 56px;
  background: var(--nana-sage, #9ab09a);
  color: #fff;
  border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 12px;
}
.nana-account-success h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  margin: 0 0 6px;
}

/* --- 26. Testimonials --- */
.nana-testimonials-section {
  background: rgba(154, 176, 154, 0.07);
}
.nana-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.nana-testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(31, 29, 27, 0.05);
  border: 1px solid rgba(31, 29, 27, 0.04);
}
.nana-testimonial__stars {
  color: #e6a83a;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.nana-testimonial__quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--nana-ink, #1f1d1b);
  margin: 0 0 14px;
}
.nana-testimonial__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nana-testimonial__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--nana-sage, #9ab09a);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.nana-testimonial__name {
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}
.nana-testimonial__meta {
  font-size: 12px;
  color: #6b6660;
  margin: 0;
}

/* --- 27. Recently viewed --- */
.nana-recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.nana-recent-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(31, 29, 27, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}
.nana-recent-card:hover { transform: translateY(-2px); }
.nana-recent-card__thumb {
  aspect-ratio: 1 / 1;
  background: rgba(154, 176, 154, 0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.nana-recent-card__name {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
.nana-recent-clear {
  background: transparent;
  border: 1px solid rgba(31, 29, 27, 0.2);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  cursor: pointer;
  color: #6b6660;
  font-family: inherit;
}
.nana-recent-clear:hover { border-color: var(--nana-ink, #1f1d1b); color: var(--nana-ink, #1f1d1b); }

/* --- 28. Newsletter --- */
.nana-newsletter-section {
  background: var(--nana-ink, #1f1d1b);
  color: var(--nana-cream, #fff8ed);
}
.nana-newsletter {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.nana-newsletter__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  margin: 8px 0 14px;
  line-height: 1.1;
  color: var(--nana-cream, #fff8ed);
}
.nana-newsletter__desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 248, 237, 0.7);
  margin: 0;
}
.nana-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nana-newsletter__label {
  font-size: 13px;
  color: rgba(255, 248, 237, 0.7);
  margin-bottom: 4px;
  display: block;
}
.nana-newsletter__field input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 248, 237, 0.18);
  background: rgba(255, 248, 237, 0.06);
  color: var(--nana-cream, #fff8ed);
  font-size: 15px;
  font-family: inherit;
}
.nana-newsletter__field input::placeholder { color: rgba(255, 248, 237, 0.4); }
.nana-newsletter__field input:focus { outline: 2px solid var(--nana-sage, #9ab09a); border-color: transparent; }
.nana-newsletter__check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 248, 237, 0.7);
}
.nana-newsletter__check input { margin-top: 2px; }
.nana-newsletter__check a { color: var(--nana-cream, #fff8ed); text-decoration: underline; }
.nana-newsletter__form .nana-btn--primary { background: var(--nana-cream, #fff8ed); color: var(--nana-ink, #1f1d1b); }
.nana-newsletter__form .nana-btn--primary:hover { background: var(--nana-sage, #9ab09a); color: #fff; }
.nana-newsletter__msg {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--nana-sage, #9ab09a);
  min-height: 18px;
}
.nana-newsletter__msg.is-error { color: #e89a9a; }

@media (max-width: 768px) {
  .nana-newsletter {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 4px;
  }
}

/* --- 29. Mobile bottom bar --- */
.nana-mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(255, 248, 237, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(31, 29, 27, 0.08);
  z-index: 70;
  padding: 8px 4px calc(8px + env(safe-area-inset-bottom, 0));
  justify-content: space-around;
  align-items: stretch;
}
@media (max-width: 768px) {
  .nana-mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
}
.nana-mobile-bar__item {
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 10px;
  color: #6b6660;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  flex: 1;
  position: relative;
  min-height: 48px;
  text-decoration: none;
}
.nana-mobile-bar__item svg { width: 22px; height: 22px; }
.nana-mobile-bar__item.is-active,
.nana-mobile-bar__item:hover { color: var(--nana-ink, #1f1d1b); }
.nana-mobile-bar__count {
  position: absolute;
  top: 2px; right: 14px;
  background: var(--nana-ink, #1f1d1b);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 999px;
  min-width: 16px;
  text-align: center;
}
.nana-mobile-bar__count[hidden] { display: none; }

/* --- 30. Search overlay --- */
.nana-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 92;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
}
.nana-search-overlay.is-open { display: flex; }
.nana-search-overlay__scrim {
  position: absolute; inset: 0;
  background: rgba(31, 29, 27, 0.55);
  animation: nanaFadeIn 0.2s ease;
}
.nana-search-overlay__panel {
  position: relative;
  width: min(640px, 92vw);
  background: var(--nana-cream, #fff8ed);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(31, 29, 27, 0.25);
  animation: nanaPop 0.25s ease;
}
.nana-search-overlay__close {
  position: absolute;
  top: 12px; right: 12px;
  background: transparent;
  border: 0;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
}
.nana-search-overlay__form {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(31, 29, 27, 0.15);
  border-radius: 14px;
  padding: 12px 16px;
  background: #fff;
}
.nana-search-overlay__icon { display: flex; align-items: center; }
.nana-search-overlay__icon svg { width: 20px; height: 20px; color: #6b6660; }
.nana-search-overlay__form input {
  flex: 1;
  border: 0;
  background: transparent;
  font-size: 17px;
  font-family: inherit;
  color: var(--nana-ink, #1f1d1b);
}
.nana-search-overlay__form input:focus { outline: none; }
.nana-search-overlay__results {
  margin-top: 14px;
  max-height: 60vh;
  overflow-y: auto;
}
.nana-search-result {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.nana-search-result:hover { background: rgba(154, 176, 154, 0.12); }
.nana-search-result__thumb {
  width: 48px; height: 48px;
  background: rgba(154, 176, 154, 0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.nana-search-result__body { flex: 1; }
.nana-search-result__name { margin: 0; font-weight: 600; font-size: 14px; }
.nana-search-result__cat { margin: 2px 0 0; font-size: 12px; color: #6b6660; }
.nana-search-empty {
  text-align: center;
  padding: 28px 12px;
  color: #6b6660;
  font-size: 14px;
}

/* --- Social icons (footer) --- */
.nana-social {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.nana-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 248, 237, 0.08);
  color: var(--nana-cream, #fff8ed);
  transition: background 0.2s, transform 0.2s;
}
.nana-social__link:hover {
  background: var(--nana-sage, #9ab09a);
  transform: translateY(-2px);
}
.nana-social__link svg {
  width: 18px;
  height: 18px;
}

/* --- Animations --- */
@keyframes nanaFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes nanaPop {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Cart icon button badge reuse --- */
.nana-mobile-bar .nana-mobile-bar__count[data-nana-wishlist-badge]:not([hidden])::after,
.nana-mobile-bar .nana-mobile-bar__count[data-nana-cart-badge]:not([hidden])::after {
  content: "";
}

/* --- Account button in header --- */
.nana-account-btn,
.nana-wishlist-btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--nana-ink, #1f1d1b);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: 999px;
  position: relative;
  font-family: inherit;
}
.nana-account-btn:hover,
.nana-wishlist-btn:hover { background: rgba(31, 29, 27, 0.06); }
.nana-account-btn svg,
.nana-wishlist-btn svg { width: 20px; height: 20px; }
.nana-account-btn .nana-badge,
.nana-wishlist-btn .nana-badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--nana-ink, #1f1d1b);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 999px;
  min-width: 16px;
  text-align: center;
  line-height: 1.4;
}
.nana-account-btn .nana-badge[hidden],
.nana-wishlist-btn .nana-badge[hidden] { display: none; }
/* =====================================================================
 * NANA EXTRAS — 8 SHOPIFY FEATURE STYLES
 * A1 Reviews  A2 Social Proof  A3 Badges
 * B1 Stock     B2 Bundle        B3 Shipping
 * C1 Personalized  C2 Exit Modal
 * ===================================================================== */

/* A1 — Reviews */
.nana-reviews {
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--nana-line, #e8e0d0);
}
.nana-reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.nana-reviews__summary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.nana-reviews__summary strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--nana-ink, #1f1d1b);
}
.nana-reviews__count {
  color: var(--nana-muted, #6e6251);
  margin-left: 4px;
}
.nana-stars { display: inline-flex; gap: 1px; }
.nana-star { color: #e8e0d0; }
.nana-star.is-on { color: #f4a93c; }
.nana-reviews__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nana-review {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--nana-line, #e8e0d0);
  border-radius: 14px;
}
.nana-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--nana-sage, #9ab09a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.nana-review__body { flex: 1; }
.nana-review__head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
  font-size: 13px;
}
.nana-review__head strong { color: var(--nana-ink, #1f1d1b); }
.nana-review__city, .nana-review__head time {
  color: var(--nana-muted, #6e6251);
  font-size: 12px;
}
.nana-review__verified {
  margin-left: auto;
  color: var(--nana-sage, #5b7a5b);
  font-size: 11px;
  font-weight: 600;
}
.nana-review__title {
  font-size: 14px;
  font-weight: 600;
  margin: 4px 0;
  color: var(--nana-ink, #1f1d1b);
}
.nana-review p {
  font-size: 14px;
  line-height: 1.55;
  color: #3a3530;
  margin: 0;
}

/* A2 — Live Social Proof */
.nana-social-proof {
  position: fixed;
  left: 16px;
  bottom: 80px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 320px;
  pointer-events: none;
}
.nana-social-proof__item {
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--nana-line, #e8e0d0);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-size: 13px;
  line-height: 1.4;
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nana-social-proof__item.is-visible {
  transform: translateX(0);
}
.nana-social-proof__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5b7a5b;
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(91,122,91,0.18);
}
.nana-social-proof__copy strong { color: var(--nana-ink, #1f1d1b); }
.nana-social-proof__ago {
  color: var(--nana-muted, #6e6251);
  font-size: 12px;
}
.nana-social-proof__copy em {
  font-style: normal;
  color: var(--nana-rose, #b07569);
  font-weight: 600;
}
@media (max-width: 720px) {
  .nana-social-proof { left: 8px; right: 8px; max-width: none; bottom: 70px; }
  .nana-social-proof__item { font-size: 12px; padding: 8px 12px; }
}

/* A3 — Badges */
.nana-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.nana-badge--rose {
  background: linear-gradient(135deg, #d8a89a, #c48676);
  color: #fff;
}
.nana-badge--sage {
  background: linear-gradient(135deg, #9ab09a, #7e967e);
  color: #fff;
}
.nana-badge--ink {
  background: linear-gradient(135deg, #3a3530, #1f1d1b);
  color: #fff;
}
.nana-badge--gold {
  background: linear-gradient(135deg, #f4a93c, #d68a1a);
  color: #fff;
}
.nana-badge__icon { font-size: 12px; }

/* B1 — Stock Counter */
.nana-card__stock {
  font-size: 12px;
  color: #b94a3a;
  margin: 4px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.nana-card__stock strong { font-weight: 700; }
.nana-card__stock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b94a3a;
  box-shadow: 0 0 0 3px rgba(185,74,58,0.18);
  animation: nana-stock-pulse 1.5s ease-in-out infinite;
}
@keyframes nana-stock-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(185,74,58,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(185,74,58,0); }
}
.nana-pdp__stock {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff5f0;
  border: 1px solid #f4d4c8;
  border-radius: 12px;
  font-size: 13px;
  color: #b94a3a;
  margin-top: 12px;
}
.nana-pdp__stock strong { font-weight: 700; }
.nana-pdp__stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b94a3a;
  box-shadow: 0 0 0 3px rgba(185,74,58,0.18);
  animation: nana-stock-pulse 1.5s ease-in-out infinite;
}

/* B2 — Bundle Savings */
.nana-bundle-hint {
  margin: 12px 0;
  padding: 10px 14px;
  background: var(--nana-cream, #fff8ed);
  border: 1px dashed var(--nana-line, #e8e0d0);
  border-radius: 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--nana-muted, #6e6251);
}
.nana-bundle-hint.is-active {
  background: #fff;
  border: 1px solid var(--nana-sage, #9ab09a);
  border-style: solid;
  color: var(--nana-ink, #1f1d1b);
  font-weight: 500;
}
.nana-bundle-hint__icon {
  font-size: 14px;
  color: #f4a93c;
}

/* B3 — Free Shipping Bar enhancements (overrides nana-pro.css) */
[data-nana-shipping-bar] {
  position: relative;
}
[data-nana-shipping-fill] {
  transition: width 0.4s ease, background 0.4s ease;
}

/* C1 — Personalized Recommendations */
.nana-personalized-section {
  background: linear-gradient(135deg, #fff8ed 0%, #f6e9d3 100%);
  border-radius: 24px;
  padding: 32px 24px;
  margin: 32px 0;
}
.nana-personalized-section .nana-section__title::before {
  content: '✨';
  margin-right: 8px;
}

/* C2 — Exit Modal */
.nana-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.nana-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}
.nana-modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(31, 29, 27, 0.5);
  backdrop-filter: blur(2px);
}
.nana-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px 24px;
  max-width: 440px;
  width: calc(100% - 32px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.25s ease;
}
.nana-modal.is-open .nana-modal__panel {
  transform: scale(1);
}
.nana-modal__panel--exit {
  background: linear-gradient(135deg, #fff8ed 0%, #fff 100%);
}
.nana-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: var(--nana-muted, #6e6251);
  border-radius: 50%;
}
.nana-modal__close:hover { background: var(--nana-line, #e8e0d0); }
.nana-modal__eyebrow {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--nana-rose, #d8a89a);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.nana-modal__panel h3 {
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--nana-ink, #1f1d1b);
}
.nana-modal__lede {
  color: var(--nana-muted, #6e6251);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.nana-exit-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.nana-exit-form input[type="email"] {
  padding: 12px 16px;
  border: 1px solid var(--nana-line, #e8e0d0);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--nana-ink, #1f1d1b);
}
.nana-exit-form input[type="email"]:focus {
  outline: none;
  border-color: var(--nana-sage, #9ab09a);
  box-shadow: 0 0 0 3px rgba(154,176,154,0.18);
}
.nana-modal__decline {
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: var(--nana-muted, #6e6251);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
}
.nana-modal__msg {
  font-size: 13px;
  color: var(--nana-sage, #5b7a5b);
  margin: 8px 0 0;
  font-weight: 500;
}

/* Review form modal */
.nana-review-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-top: 8px;
}
.nana-review-form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--nana-muted, #6e6251);
  font-weight: 500;
}
.nana-review-form input,
.nana-review-form textarea {
  padding: 10px 12px;
  border: 1px solid var(--nana-line, #e8e0d0);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--nana-ink, #1f1d1b);
}
.nana-review-form input:focus,
.nana-review-form textarea:focus {
  outline: none;
  border-color: var(--nana-sage, #9ab09a);
}
.nana-rating-input {
  display: inline-flex;
  gap: 4px;
  font-size: 24px;
}
.nana-rating-input button {
  border: 0;
  background: transparent;
  font-size: 24px;
  color: #e8e0d0;
  cursor: pointer;
  padding: 0 2px;
  transition: color 0.15s, transform 0.15s;
}
.nana-rating-input button.is-on {
  color: #f4a93c;
}
.nana-rating-input button:hover {
  transform: scale(1.15);
}

/* Mobile adjustments */
@media (max-width: 720px) {
  .nana-modal__panel { padding: 24px 20px 18px; }
  .nana-modal__panel h3 { font-size: 20px; }
  .nana-review { flex-direction: column; }
  .nana-review__avatar { width: 36px; height: 36px; font-size: 14px; }
  .nana-personalized-section { padding: 20px 14px; border-radius: 16px; }
}