/* =========================================================
   Seçkin Çocuk Dünyası — Ana Stil Dosyası
   ========================================================= */

:root {
  --color-navy: #0f2a4a;
  --color-navy-dark: #0a1c33;
  --color-blue-light: #7fa8c6;
  --color-blue-slate: #5b7c93;
  --color-blue-bright: #4a8fc2;
  --color-blue-title: #5e8aae;
  --color-accent-gold: #f2b705;
  --color-text-dark: #1c1c1c;
  --color-text-light: #ffffff;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f8fa;
  --header-height: 96px;
  --radius-card: 18px;
  --max-width: 1200px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--color-text-dark);
  background: var(--color-bg);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   HERO / VIDEO ARKA PLAN
   ========================================================= */

.hero {
  position: relative;
  width: 100%;
  min-height: 640px;
  height: 88vh;
  max-height: 820px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, #17385c 55%, #1f4a73 100%);
  border-bottom: 4px solid #6b3fa0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 0 6vw;
  max-width: 640px;
}

.hero-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent-gold);
}

.hero-content h1 {
  color: var(--color-text-light);
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.22;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-lead {
  margin: 0;
  max-width: 540px;
  color: #e7eef4;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent-gold);
  color: var(--color-navy-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(242, 183, 5, 0.32);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(242, 183, 5, 0.44);
}

.btn-hero--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.btn-hero--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.hero-collage {
  position: absolute;
  z-index: 2;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: repeat(2, 136px);
  grid-auto-rows: 136px;
  gap: 16px;
}

.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 10px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero-collage img:nth-child(1) { transform: translateY(-14px) rotate(-3deg); }
.hero-collage img:nth-child(2) { transform: rotate(2.5deg); }
.hero-collage img:nth-child(3) { transform: rotate(2.5deg); }
.hero-collage img:nth-child(4) { transform: translateY(14px) rotate(-3deg); }

@media (max-width: 1180px) {
  .hero-collage { display: none; }
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 18px 0;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo-mark {
  display: inline-flex;
  flex-shrink: 0;
}

.logo-mark img {
  display: block;
  height: 50px;
  width: auto;
}

/* Footer'da biraz daha küçük */
.footer-brand .logo-mark img {
  height: 46px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  color: var(--color-text-light);
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
}

.logo-tagline {
  color: #d7e3ec;
  font-size: 0.65rem;
  letter-spacing: 0.02em;
}

/* Ana menü */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav > ul {
  display: flex;
  gap: 26px;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav > ul > li > a {
  color: var(--color-text-light);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 0;
  display: inline-block;
  white-space: nowrap;
  transition: color var(--transition);
}

.main-nav > ul > li > a:hover {
  color: var(--color-accent-gold);
}

/* Dropdown */
.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 42, 74, 0.96);
  border-radius: 10px;
  padding: 10px 0;
  min-width: 170px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.dropdown li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-accent-gold);
}

/* İletişim / Whatsapp */
.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.phone-number {
  color: var(--color-text-light);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: #fff;
  padding: 8px 14px;
  border-radius: 22px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background var(--transition), transform var(--transition);
}

.whatsapp-btn:hover {
  background: #1ebd58;
  transform: translateY(-1px);
}

/* Hamburger (mobil) */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 30;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 3px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobil menü arka planı (karartma) */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 19;
  background: rgba(10, 20, 33, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

@media (min-width: 861px) {
  .nav-backdrop { display: none !important; }
}

body.nav-open {
  overflow: hidden;
}

/* Menüde yalnızca mobilde görünen iletişim satırı */
.nav-cta {
  display: none;
}

/* =========================================================
   KATEGORİ VİTRİNİ (Ana sayfa — 3 öne çıkan kart)
   ========================================================= */

.category-feature {
  padding: 84px 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-head h2 {
  color: var(--color-blue-title);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 12px;
}

.section-head p {
  font-size: 1.02rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* 4 vitrin kartı için düzenli 2x2 yerleşim */
.feature-grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin: 0 auto;
}

.feature-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 42, 74, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(15, 42, 74, 0.16);
}

.feature-card__media {
  position: relative;
  height: 230px;
  background: linear-gradient(160deg, #f7fafc 0%, #eef3f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  overflow: hidden;
}

.feature-card__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(15, 42, 74, 0.16));
}

.feature-card__media--accent {
  background: linear-gradient(150deg, var(--color-navy) 0%, var(--color-blue-bright) 100%);
  color: rgba(255, 255, 255, 0.9);
}

.feature-card__badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  background: var(--color-accent-gold);
  box-shadow: 0 4px 12px rgba(15, 42, 74, 0.18);
  color: var(--color-navy-dark);
  font-weight: 700;
  font-size: 0.76rem;
  padding: 5px 12px;
  border-radius: 999px;
}

.feature-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 24px 26px;
  flex: 1;
}

.feature-card__body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
}

.feature-card__body p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #5a5a5a;
  margin: 0;
  flex: 1;
}

.feature-card__body .btn-primary {
  align-self: flex-start;
  margin-top: 6px;
  padding: 13px 26px;
  font-size: 0.95rem;
}

/* =========================================================
   CTA BANDI + ORTAK BUTONLAR
   ========================================================= */

.cta-band {
  background: var(--color-navy);
  color: #fff;
  padding: 46px 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band__text h2 {
  margin: 0 0 6px;
  font-size: 1.4rem;
  font-weight: 700;
}

.cta-band__text p {
  margin: 0;
  color: #c9d7e3;
  font-size: 0.95rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 22px;
  border-radius: 12px;
  transition: background var(--transition), transform var(--transition);
}

.btn-wa:hover {
  background: #1ebd58;
  transform: translateY(-1px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 22px;
  border-radius: 12px;
  transition: background var(--transition);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .category-feature {
    padding: 60px 0;
  }
}

.btn-primary {
  display: inline-block;
  background: var(--color-navy);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: 12px;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--color-navy-dark);
  transform: translateY(-2px);
}

/* =========================================================
   ÜRÜN VİTRİNİ (Zeka Oyunları & Ahşap Maketler)
   ========================================================= */

.product-showcase {
  padding: 72px 0;
  background: var(--color-bg-alt);
}

.showcase-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.showcase-title {
  color: var(--color-blue-title);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 10px;
}

.showcase-subtitle {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0 0 22px;
}

.catalog-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 12px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-catalog:hover {
  background: var(--color-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 42, 74, 0.22);
}

.btn-catalog--ghost {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.btn-catalog--ghost:hover {
  background: var(--color-navy);
  color: #fff;
}

/* --- Filtre sekmeleri --- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-tab {
  appearance: none;
  border: 1px solid #d3dee7;
  background: #fff;
  color: var(--color-navy);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.filter-tab:hover {
  border-color: var(--color-blue-bright);
  color: var(--color-blue-bright);
}

.filter-tab.is-active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
}

.filter-tab:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
}

/* --- Ürün kartları --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card[hidden] {
  display: none;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 42, 74, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(15, 42, 74, 0.16);
}

.product-card__media {
  position: relative;
  height: 210px;
  background: linear-gradient(160deg, #f7fafc 0%, #eef3f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(15, 42, 74, 0.14));
}

.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 42, 74, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 999px;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 18px 20px;
  flex: 1;
}

.product-card__title {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.35;
}

.product-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.product-card__code {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-blue-slate);
  background: #eef3f7;
  padding: 3px 8px;
  border-radius: 6px;
}

.product-card__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-left: auto;
}

.product-card__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
  padding: 11px 12px;
  border-radius: 10px;
  transition: background var(--transition), transform var(--transition);
}

.product-card__wa:hover {
  background: #1ebd58;
  transform: translateY(-1px);
}

.product-card__wa:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: 2px;
}

.product-empty {
  text-align: center;
  color: #4a4a4a;
  font-size: 1rem;
  padding: 40px 0;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .filter-tab {
    flex: 0 0 auto;
  }
}

@media (max-width: 560px) {
  .product-card__media {
    height: 190px;
  }
}

@media (max-width: 480px) {
  .product-showcase {
    padding: 52px 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card__media {
    height: 220px;
  }

  .btn-catalog {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--color-navy);
  color: #c9d7e3;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 30px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  margin: 0;
  max-width: 320px;
  line-height: 1.6;
  color: #9fb3c4;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 14px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: #c9d7e3;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 24px;
  text-align: center;
  color: #8ba0b2;
  font-size: 0.82rem;
}

@media (max-width: 760px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 460px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 992px) {
  .main-nav > ul {
    gap: 22px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    gap: 12px;
  }

  .nav-toggle {
    display: flex;
    order: 3;
  }

  .header-contact {
    order: 2;
    gap: 8px;
  }

  .phone-number {
    display: none;
  }

  /* WhatsApp başlıkta ikon-only daire */
  .whatsapp-btn {
    padding: 10px;
    border-radius: 50%;
  }

  .whatsapp-btn span {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(82vw, 320px);
    background: rgba(10, 20, 33, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 92px 26px 32px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 20;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav > ul {
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  .main-nav > ul > li > a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
  }

  .has-dropdown .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    box-shadow: none;
    margin: 4px 0 8px;
  }

  .has-dropdown.is-open .dropdown {
    display: block;
  }

  .dropdown li a {
    padding: 12px 16px;
  }

  .nav-cta {
    display: block;
    margin-top: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-cta a {
    color: var(--color-accent-gold);
    font-weight: 600;
  }

  .logo-tagline {
    display: none;
  }

  .logo-mark img {
    height: 42px;
  }

  .logo-title {
    font-size: 0.86rem;
  }
}

@media (max-width: 600px) {
  .hero {
    height: auto;
    min-height: 88vh;
    min-height: 88dvh;
    max-height: none;
  }

  .hero-content {
    justify-content: flex-start;
    padding: 116px 22px 60px;
    gap: 18px;
  }

  .hero-actions {
    width: 100%;
  }

  .btn-hero {
    flex: 1 1 100%;
    justify-content: center;
  }

  .cta-band__actions {
    width: 100%;
  }

  .cta-band__actions > * {
    flex: 1 1 100%;
  }

  .bulk-order {
    padding: 20px;
  }

  .bulk-order .btn-wa {
    width: 100%;
  }
}

/* =========================================================
   ALT SAYFA BAŞLIĞI (Zeka Oyunları vb.)
   ========================================================= */

.subpage-top {
  position: relative;
  background: linear-gradient(180deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
}

/* Alt sayfada header video üzerinde değil, dolu zemin üzerinde durur */
.site-header--solid {
  position: relative;
}

.subpage-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 24px 46px;
  color: var(--color-text-light);
}

.subpage-hero__eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--color-accent-gold);
}

.subpage-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 12px;
}

.subpage-hero p {
  margin: 0;
  max-width: 660px;
  color: #d7e3ec;
  font-size: 1rem;
  line-height: 1.6;
}

.subpage-hero p strong {
  color: #fff;
}

/* Okul / kurum toplu sipariş çağrısı (Ahşap Maket sayfası) */
.bulk-order {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  border: 1px solid #e8eef3;
  border-left: 5px solid #25d366;
  border-radius: var(--radius-card);
  padding: 22px 26px;
  margin: 0 0 40px;
  box-shadow: 0 8px 22px rgba(15, 42, 74, 0.08);
}

.bulk-order__text strong {
  display: block;
  color: var(--color-navy);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.bulk-order__text span {
  font-size: 0.9rem;
  color: #5a5a5a;
}

/* Alt sayfadaki vitrin akış içinde başladığı için üst boşluğu sadeleşir */
.product-showcase--page {
  padding-top: 56px;
}

/* =========================================================
   ÜRÜN KARTI — ÖZET + DETAY BUTONU
   ========================================================= */

.product-card__media {
  cursor: pointer;
}

.product-card__summary {
  font-size: 0.86rem;
  line-height: 1.5;
  color: #5a5a5a;
  margin: 0;
}

.product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.product-card__detail {
  appearance: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--color-navy);
  color: var(--color-navy);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 11px 14px;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}

.product-card__detail:hover {
  background: var(--color-navy);
  color: #fff;
}

.product-card__detail:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
}

.product-card__wa--sm {
  padding: 11px 12px;
}

/* =========================================================
   ÜRÜN DETAY MODALI
   ========================================================= */

.pm-modal[hidden] {
  display: none !important;
}

.pm-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pm-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 33, 0.6);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.pm-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 30px 70px rgba(10, 20, 33, 0.4);
  animation: pm-pop var(--transition);
}

@keyframes pm-pop {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.pm-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 42, 74, 0.1);
  color: var(--color-navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition);
}

.pm-modal__close:hover {
  background: rgba(15, 42, 74, 0.2);
}

.pm-modal__media {
  height: 260px;
  background: linear-gradient(160deg, #f7fafc 0%, #eef3f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.pm-modal__media img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(15, 42, 74, 0.16));
}

.pm-modal__body {
  padding: 24px 28px 28px;
}

.pm-modal__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 14px;
}

.pm-modal__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.pm-modal__badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: #eef3f7;
  color: var(--color-blue-slate);
}

.pm-modal__badge--price {
  background: var(--color-navy);
  color: #fff;
}

.pm-modal__badge--age {
  background: var(--color-accent-gold);
  color: var(--color-navy-dark);
}

.pm-modal__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3f3f3f;
  margin: 0 0 20px;
}

.pm-modal__gains-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 10px;
}

.pm-modal__gains {
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 9px;
}

.pm-modal__gains li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #3f3f3f;
}

.pm-modal__gains li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--color-accent-gold);
}

.pm-modal__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 18px;
  border-radius: 12px;
  transition: background var(--transition), transform var(--transition);
}

.pm-modal__wa:hover {
  background: #1ebd58;
  transform: translateY(-1px);
}

body.pm-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .pm-modal {
    padding: 0;
  }

  .pm-modal__dialog {
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
  }

  .pm-modal__media {
    height: 210px;
    border-radius: 0;
  }

  .pm-modal__close {
    width: 44px;
    height: 44px;
    top: 10px;
    right: 10px;
  }

  .product-card__actions {
    flex-direction: column;
  }
}

/* =========================================================
   FİLTRE SEKMELERİ — mobilde kaydırma çubuğunu gizle
   ========================================================= */

.filter-tabs {
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

/* =========================================================
   HAFİF GİRİŞ ANİMASYONU (scroll ile beliren bölümler)
   JS tarafından .reveal eklenir; JS yoksa içerik normal görünür.
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   HAREKET AZALTMA TERCİHİ (erişilebilirlik)
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
