/* =====================================================================
 * NANA KIDS — DESIGN POLISH V1
 * Brand ref: warm-editorial + elegant + apple
 * 5 iyileştirme:
 *   1) Hero sticker (Fraunces italic + dashed border)
 *   2) Asymmetric product grid (1 büyük + 3 normal)
 *   3) Editorial gift cards (numbered, serif heading)
 *   4) Section binary rhythm (cream alternating)
 *   5) Sticky CTA scroll hint (Fraunces italic)
 * ===================================================================== */

/* Tipografi preflight: Fraunces + Plus Jakarta Sans ekle */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;1,9..144,400;1,9..144,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --nana-fraunces: 'Fraunces', 'Georgia', serif;
  --nana-jakarta: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --nana-ivory: #fff8ed;
  --nana-ivory-2: #f6e9d3;
  --nana-milk: #fdf8f0;
  --nana-peach: #e8c8b8;
  --nana-mocha: #3a3530;
  --nana-sage-deep: #5b7a5b;
  --nana-rose: #d8a89a;
}

/* =====================================================================
 * 1) HERO STICKER
 * Fraunces italic, dashed border, dusty peach tone
 * ===================================================================== */
.nana-hero {
  position: relative;
}
.nana-hero__sticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--nana-milk);
  border: 1.5px dashed var(--nana-mocha);
  border-radius: 999px;
  font-family: var(--nana-fraunces);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--nana-mocha);
  letter-spacing: 0.01em;
  transform: rotate(-1.5deg);
  box-shadow: 0 2px 8px rgba(58, 53, 48, 0.06);
  position: relative;
  margin-bottom: 8px;
}
.nana-hero__sticker::before {
  content: '✦';
  font-style: normal;
  color: var(--nana-rose);
  font-size: 14px;
}
.nana-hero__sticker::after {
  content: '✦';
  font-style: normal;
  color: var(--nana-rose);
  font-size: 14px;
}
@media (max-width: 720px) {
  .nana-hero__sticker {
    font-size: 13px;
    padding: 8px 14px;
    transform: rotate(-1deg);
  }
}

/* =====================================================================
 * 2) ASYMMETRIC PRODUCT GRID
 * İlk ürün 2x2 (büyük), sonraki 3 normal
 * "nana-grid-products--asymmetric" modifier
 * ===================================================================== */
.nana-grid-products.nana-grid-products--asymmetric {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 20px;
}
.nana-grid-products.nana-grid-products--asymmetric .nana-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.nana-grid-products.nana-grid-products--asymmetric .nana-card:nth-child(1) .nana-card__media {
  aspect-ratio: 4 / 3;
  min-height: 320px;
}
.nana-grid-products.nana-grid-products--asymmetric .nana-card:nth-child(1) .nana-card__title {
  font-family: var(--nana-fraunces);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nana-grid-products.nana-grid-products--asymmetric .nana-card:nth-child(1) .nana-card__age {
  font-family: var(--nana-jakarta);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nana-rose);
}
.nana-grid-products.nana-grid-products--asymmetric .nana-card:nth-child(1) .nana-card__price {
  font-family: var(--nana-fraunces);
  font-style: italic;
  font-size: 15px;
}
@media (max-width: 960px) {
  .nana-grid-products.nana-grid-products--asymmetric {
    grid-template-columns: repeat(2, 1fr);
  }
  .nana-grid-products.nana-grid-products--asymmetric .nana-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .nana-grid-products.nana-grid-products--asymmetric .nana-card:nth-child(1) .nana-card__title {
    font-size: 22px;
  }
}

/* =====================================================================
 * 3) EDITORIAL GIFT CARDS
 * Numbered (01, 02, 03), serif heading, Fraunces italic accent
 * "nana-mind" section (parenting insights)
 * ===================================================================== */
.nana-mind {
  padding: 64px 0;
  background: var(--nana-ivory);
}
.nana-mind__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nana-mind__header {
  text-align: center;
  margin-bottom: 48px;
}
.nana-mind__eyebrow {
  display: inline-block;
  font-family: var(--nana-jakarta);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nana-rose);
  padding-bottom: 8px;
  margin-bottom: 12px;
  position: relative;
}
.nana-mind__eyebrow::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 32px;
  height: 1.5px;
  background: var(--nana-mocha);
}
.nana-mind__title {
  font-family: var(--nana-fraunces);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--nana-mocha);
  margin: 0 0 12px;
}
.nana-mind__title em {
  font-style: italic;
  color: var(--nana-sage-deep);
  font-weight: 400;
}
.nana-mind__lede {
  font-family: var(--nana-jakarta);
  font-size: 16px;
  line-height: 1.6;
  color: var(--nana-mocha);
  opacity: 0.7;
  max-width: 540px;
  margin: 0 auto;
}
.nana-mind__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.nana-mind-card {
  padding: 28px 22px;
  background: var(--nana-milk);
  border: 1px solid rgba(58, 53, 48, 0.08);
  border-radius: 16px;
  position: relative;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.nana-mind-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58, 53, 48, 0.08);
}
.nana-mind-card__num {
  font-family: var(--nana-fraunces);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--nana-rose);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.nana-mind-card__title {
  font-family: var(--nana-jakarta);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nana-mocha);
  margin: 0 0 8px;
}
.nana-mind-card__desc {
  font-family: var(--nana-fraunces);
  font-size: 17px;
  line-height: 1.4;
  color: var(--nana-mocha);
  margin: 0;
  font-weight: 400;
}
@media (max-width: 960px) {
  .nana-mind__title { font-size: 30px; }
  .nana-mind__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .nana-mind__grid { grid-template-columns: 1fr; }
  .nana-mind__title { font-size: 26px; }
}

/* =====================================================================
 * 4) SECTION BINARY RHYTHM
 * Alternating cream backgrounds for editorial flow
 * ===================================================================== */
.nana-home > section:nth-of-type(odd) {
  background: var(--nana-milk);
}
.nana-home > section:nth-of-type(even) {
  background: var(--nana-ivory);
}
.nana-home > section + section {
  padding-top: 56px;
  padding-bottom: 56px;
}
.nana-section.nana-section--alt {
  background: var(--nana-ivory-2) !important;
}
@media (max-width: 720px) {
  .nana-home > section + section {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* =====================================================================
 * 5) STICKY SCROLL HINT
 * Fraunces italic, gentle bounce animation
 * ===================================================================== */
.nana-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nana-fraunces);
  font-style: italic;
  font-size: 14px;
  color: var(--nana-mocha);
  opacity: 0.6;
  text-decoration: none;
  margin-top: 24px;
  transition: opacity 0.24s ease;
}
.nana-scroll-hint:hover { opacity: 1; }
.nana-scroll-hint__arrow {
  display: inline-block;
  animation: nana-bounce-down 2s ease-in-out infinite;
}
@keyframes nana-bounce-down {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

/* Editorial typography for section titles */
.nana-section__title {
  font-family: var(--nana-fraunces);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--nana-mocha);
}
.nana-section__title em {
  font-style: italic;
  color: var(--nana-sage-deep);
  font-weight: 400;
}
@media (max-width: 720px) {
  .nana-section__title { font-size: 24px; }
}

/* Hero typography polish */
.nana-hero__title {
  font-family: var(--nana-fraunces);
  font-weight: 600;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--nana-mocha);
}
.nana-hero__title em {
  font-style: italic;
  color: var(--nana-sage-deep);
  font-weight: 400;
}
@media (max-width: 720px) {
  .nana-hero__title { font-size: 36px; }
}