:root {
  --ink: #0b1220;
  --navy: #121a2b;
  --navy-2: #1a2438;
  --text: #eef2f8;
  --muted: #9aa8c0;
  --paper: #f4f6fa;
  --white: #ffffff;
  --magenta: #e2187a;
  --magenta-dark: #c01066;
  --teal: #14b8a6;
  --teal-dark: #0d9488;
  --yellow: #f5c518;
  --green: #22a06b;
  --border: #e4e9f2;
  --shadow: 0 18px 50px rgba(10, 16, 32, 0.14);
  --radius: 22px;
  --radius-sm: 14px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Syne", system-ui, sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3 { font-family: var(--display); line-height: 1.15; margin: 0 0 .4em; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.page-bg {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(226,24,122,.08), transparent 60%),
    radial-gradient(700px 400px at 90% 0%, rgba(20,184,166,.08), transparent 55%),
    linear-gradient(180deg, #eef1f7 0%, var(--paper) 40%, #eef2f8 100%);
}

/* Nav */
.site-nav-wrap {
  position: sticky; top: 14px; z-index: 50; padding: 0 16px;
  margin-bottom: 6px;
}
.site-nav {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
  background: rgba(12, 18, 32, .92);
  backdrop-filter: blur(14px);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px 10px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}
.logo { display: flex; align-items: baseline; gap: 6px; font-family: var(--display); font-weight: 800; letter-spacing: .02em; }
.logo-mark {
  background: linear-gradient(90deg, #f5c518, #14b8a6, #e2187a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-size: 1.15rem;
}
.logo-sub { color: #fff; font-size: .95rem; }
.nav-links { display: flex; gap: 2px; flex: 1; justify-content: center; flex-wrap: nowrap; min-width: 0; }
.nav-links a {
  color: #c9d4e8; font-size: .82rem; font-weight: 600;
  padding: 8px 8px; border-radius: 999px; transition: .2s ease;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.is-active { background: rgba(255,255,255,.08); color: #fff; }
.nav-teklif {
  flex-shrink: 0;
}
.nav-actions { display: flex; align-items: center; gap: 8px; }
.btn-nav-login {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
}
.btn-nav-login:hover {
  background: rgba(255, 255, 255, .18);
  color: #fff;
  text-decoration: none;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  padding: 8px 12px 8px 10px;
  border: 1px solid rgba(226, 24, 122, .55);
  border-radius: 999px;
  background: rgba(226, 24, 122, .22);
  color: #fff;
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 0 0 2px rgba(226, 24, 122, .12), 0 6px 16px rgba(226, 24, 122, .2);
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: rgba(226, 24, 122, .38);
  border-color: rgba(253, 164, 208, .7);
  box-shadow: 0 0 0 3px rgba(226, 24, 122, .18), 0 8px 18px rgba(226, 24, 122, .28);
}
.nav-toggle__bars {
  display: grid;
  gap: 3.5px;
  width: 16px;
}
.nav-toggle__bars span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}
.nav-toggle__text { line-height: 1; }

/* Mobil alt menü — masaüstünde gizli */
.mobile-dock { display: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: 0; border-radius: 999px; padding: 12px 20px;
  font-weight: 700; font-family: inherit; cursor: pointer;
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-sm { padding: 8px 14px; font-size: .85rem; }
.btn-block { width: 100%; }
.btn-magenta { background: var(--magenta); color: #fff; }
.btn-magenta:hover { background: var(--magenta-dark); }
.btn-teal { background: var(--teal); color: #06201c; }
.btn-yellow { background: var(--yellow); color: #1a1400; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-green { background: var(--green); color: #fff; }
.btn-white { background: #fff; color: var(--magenta); }

/* Hero */
.hero {
  position: relative; min-height: min(92vh, 820px);
  display: flex; align-items: flex-end; color: #fff;
  margin: 22px 12px 0; border-radius: 28px; overflow: hidden;
}
.hero-montage { position: absolute; inset: 0; display: grid; grid-template-columns: 1.1fr 1fr 1fr .9fr; }
.slice { background-size: cover; background-position: center; position: relative; overflow: hidden; }
.slice::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(8,12,24,.25), rgba(8,12,24,.55));
  pointer-events: none;
}
.slice.has-photo::after {
  background: linear-gradient(180deg, rgba(8,12,24,.35), rgba(8,12,24,.62));
}
.slice-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}
.slice-slide.is-active { opacity: 1; }
.s1 { background-image: linear-gradient(135deg, #2a1840, #e2187a 70%); clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%); }
.s2 { background-image: linear-gradient(160deg, #0f766e, #134e4a); margin-left: -8%; clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%); }
.s3 { background-image: linear-gradient(200deg, #1e3a8a, #0f172a); margin-left: -8%; clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%); }
.s4 { background-image: linear-gradient(145deg, #7c2d12, #f5c518); margin-left: -8%; clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%); }
.slice.has-photo.s1,
.slice.has-photo.s2,
.slice.has-photo.s3,
.slice.has-photo.s4 {
  background-image: none;
  background-color: #121a2b;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,12,24,.25) 0%, rgba(8,12,24,.55) 45%, rgba(8,12,24,.88) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; width: 100%; max-width: var(--max);
  margin: 0 auto; padding: 48px 24px 28px;
  animation: rise .7s ease both;
}
.eyebrow {
  display: inline-block; font-family: var(--display); font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; font-size: .78rem;
  color: var(--yellow); margin: 0 0 10px;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 800; max-width: 14ch; }
.hero-sub { max-width: 42ch; color: #d5deef; font-size: 1.05rem; margin: 0 0 22px; }

.search-bar {
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px;
  background: #fff; color: var(--ink); border-radius: 18px; padding: 10px;
  max-width: 720px; box-shadow: var(--shadow);
}
.search-bar select, .filter-bar select, .form-public select, .form-public input, .form-public textarea,
.comment-form input, .comment-form select, .comment-form textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 14px; font: inherit; background: #fff;
}

.stats-bar {
  margin-top: 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  background: rgba(255,255,255,.96); color: var(--ink);
  border-radius: 18px; padding: 12px 14px; max-width: 900px; box-shadow: var(--shadow);
}
.stats-bar .stat { display: flex; flex-direction: column; min-width: 72px; padding: 4px 10px; }
.stats-bar .stat strong { font-family: var(--display); font-size: 1.15rem; }
.stats-bar .stat span { font-size: .78rem; color: #66758f; }
.stats-bar .btn { margin-left: auto; }

/* Sections */
.section { max-width: var(--max); margin: 0 auto; padding: 56px 20px; }
.section-soft { background: #fff; border-radius: 28px; margin: 10px 12px; max-width: none; padding: 56px max(20px, calc((100% - var(--max)) / 2)); }
.section-head {
  display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 24px;
}
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.section-head a { color: var(--magenta); font-weight: 700; }
.section-head__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 16px;
}
.section-head__links a + a {
  padding-left: 16px;
  border-left: 1px solid rgba(226, 24, 122, .28);
}
.page-hero {
  max-width: var(--max); margin: 28px auto 0; padding: 28px 20px 8px;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: #5d6b84; max-width: 50ch; }
.page-hero__extra { margin-top: 10px; }
.page-hero__extra a { color: var(--magenta); font-weight: 700; text-decoration: none; }
.narrow { max-width: 760px; }

/* Tüm yorumlar sayfası */
.reviews-hero__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 20px;
}
.reviews-hero__top .btn { flex-shrink: 0; }
.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(226, 24, 122, .08), rgba(20, 184, 166, .08));
  border: 1px solid var(--border);
  max-width: 28rem;
}
.reviews-summary__score {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews-summary__score strong {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
}
.reviews-summary__meta {
  margin: 0;
  color: #5d6b84;
  font-weight: 700;
  font-size: .92rem;
}
.reviews-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.review-card {
  margin: 0;
  background: #fff;
  border-radius: 20px;
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(16, 24, 40, .05);
}
.review-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.review-card__head cite {
  font-style: normal;
  font-weight: 800;
  color: #334155;
  font-size: .92rem;
}
.review-card p {
  margin: 0;
  color: #3a4558;
  line-height: 1.55;
  font-size: .95rem;
}
.reviews-page__cta {
  margin-top: 28px;
  text-align: center;
}
@media (max-width: 980px) {
  .reviews-wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .reviews-wall { grid-template-columns: 1fr; }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-head__links { justify-content: flex-start; }
}

/* Cards */
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.dance-card {
  background: #fff; border-radius: 22px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(16,24,40,.08);
  border: 1px solid rgba(255,255,255,.7);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.dance-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 16/11; background: #1a2438; overflow: hidden; flex-shrink: 0; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.media-fallback {
  width: 100%; height: 100%; display: grid; place-items: center;
  font-family: var(--display); font-size: 3rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, #1a2438, #e2187a 120%);
}
.media-fallback.small { font-size: 1.6rem; min-height: 96px; }
.media-fallback.xl { min-height: 320px; font-size: 5rem; border-radius: 22px; }
.pill {
  position: absolute; top: 12px; left: 12px;
  background: rgba(15,20,32,.75); color: #fff; font-size: .75rem; font-weight: 700;
  padding: 6px 10px; border-radius: 999px;
}

/* En çok satan tarzı mühür rozet — başlık yanında, kompakt */
.badge-seal {
  position: static;
  flex-shrink: 0;
  width: auto;
  height: auto;
  min-height: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,.16);
  transform: none;
  animation: none;
  padding: 4px 9px 4px 7px;
  max-width: none;
}
.badge-seal__ring { display: none; }
.badge-seal__stars {
  position: static;
  transform: none;
  font-size: .58rem;
  color: #ffe566;
  text-shadow: 0 1px 0 rgba(0,0,0,.2);
  letter-spacing: 0;
  line-height: 1;
  flex-shrink: 0;
}
.badge-seal__text {
  position: relative;
  z-index: 1;
  font-family: var(--font);
  font-weight: 700;
  font-size: .68rem;
  line-height: 1.2;
  letter-spacing: .01em;
  text-transform: none;
  max-width: none;
  padding: 0;
  word-break: normal;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  text-shadow: 0 1px 1px rgba(0,0,0,.18);
}
.badge-seal--hot {
  background: linear-gradient(135deg, #ff9f1a, #e85d04);
}
.badge-seal--premium {
  background: linear-gradient(135deg, #a855f7, #6d28d9);
}
.badge-seal--new {
  background: linear-gradient(135deg, #2dd4bf, #0f766e);
}
.badge-seal--accent {
  background: linear-gradient(135deg, #fb7185, #be185d);
}

.card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.card-body h3 { font-size: 1.2rem; margin: 0; }
.card-title-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}
.card-title-row h3,
.detail-title-row h1 {
  min-width: 0;
  flex: 0 1 auto;
  margin: 0;
}
.card-title-row .badge-seal {
  margin-left: auto;
  margin-right: 0;
}
.detail-title-row {
  margin-bottom: 10px;
}
.detail-title-row h1 { margin: 0; }
.card-body > p {
  flex: 1;
  margin: 0 0 4px;
  color: #4b5872;
  font-size: .92rem;
}
.meta { display: flex; gap: 10px; flex-wrap: wrap; color: #6b7a94; font-size: .85rem; margin-bottom: 8px; }
.card-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}
.discount-slot {
  min-height: 30px;
  display: flex;
  align-items: center;
}
.discount {
  display: inline-flex; align-self: start; border: 1.5px solid #ef4444; color: #dc2626;
  border-radius: 999px; padding: 4px 10px; font-size: .8rem; font-weight: 700;
}

.campaign-row { display: flex; flex-wrap: wrap; gap: 12px; }
.campaign-chip {
  background: var(--navy); color: #fff; border-radius: 16px; padding: 16px 18px; min-width: 180px;
  display: grid; gap: 4px; transition: .2s ease;
}
.campaign-chip:hover { background: var(--magenta); }
.campaign-chip strong { color: var(--yellow); }
.campaign-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.campaign-card {
  background: #fff; border-radius: 20px; padding: 22px; border: 1px solid var(--border);
  display: grid; gap: 10px; align-content: start;
}

/* Kampanya — dikkat çekici promo kartlar */
.promo-section {
  background:
    radial-gradient(600px 280px at 0% 0%, rgba(255,122,0,.12), transparent 60%),
    radial-gradient(500px 260px at 100% 20%, rgba(226,24,122,.1), transparent 55%),
    #fff;
  border-radius: 28px;
  margin: 10px 12px;
  max-width: none;
  padding: 48px max(20px, calc((100% - var(--max)) / 2));
}
.promo-kicker {
  margin: 0 0 4px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #e85d04;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.promo-grid--page { grid-template-columns: repeat(2, 1fr); gap: 20px; }
.promo-card {
  position: relative;
  border-radius: 22px;
  padding: 20px 18px 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(16, 24, 40, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.promo-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  pointer-events: none;
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(16, 24, 40, .24);
}
.promo-card--fire {
  background: linear-gradient(145deg, #ff9f1a 0%, #e85d04 48%, #c2410c 100%);
}
.promo-card--vip {
  background: linear-gradient(145deg, #c084fc 0%, #7c3aed 50%, #5b21b6 100%);
}
.promo-card--teal {
  background: linear-gradient(145deg, #2dd4bf 0%, #0d9488 50%, #115e59 100%);
}
.promo-card--rose {
  background: linear-gradient(145deg, #fb7185 0%, #e2187a 52%, #9d174d 100%);
}
.promo-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.promo-card__seal {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.95);
  color: #1a1400;
  font-family: var(--font);
  font-weight: 800;
  font-size: .72rem;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.promo-card__ends {
  font-size: .72rem;
  font-weight: 700;
  opacity: .92;
  white-space: nowrap;
}
.promo-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-size: 1.35rem;
  line-height: 1.2;
}
.promo-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  opacity: .95;
  font-size: .92rem;
  flex: 1;
}
.promo-card__actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.promo-perks {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
}
.promo-perks li::before {
  content: "✓ ";
  color: #ffe566;
  font-weight: 800;
}
.promo-card--lg { min-height: 320px; padding: 24px; }
.promo-card--lg h3 { font-size: 1.55rem; }

.promo-hero {
  margin: 12px 12px 0;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(700px 320px at 15% 20%, rgba(255,159,26,.35), transparent 55%),
    radial-gradient(600px 300px at 90% 10%, rgba(226,24,122,.35), transparent 50%),
    linear-gradient(135deg, #121a2b 0%, #1a1030 100%);
  color: #fff;
}
.promo-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 44px;
}
.promo-hero__badge {
  display: inline-flex;
  background: linear-gradient(135deg, #ff9f1a, #e85d04);
  color: #fff;
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .04em;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(232,93,4,.35);
}
.promo-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 10px;
}
.promo-hero p {
  max-width: 46ch;
  margin: 0 0 20px;
  color: #d5deef;
  font-size: 1.05rem;
}
.promo-hero__cta { display: flex; flex-wrap: wrap; gap: 10px; }
.promo-bottom-cta {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(16,24,40,.06);
}
.promo-bottom-cta h2 { margin-bottom: 8px; }
.promo-bottom-cta p { color: #5d6b84; margin: 0 0 16px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.blog-card {
  display: grid; grid-template-columns: 110px 1fr; gap: 12px; align-items: center;
  background: #fff; border-radius: 16px; padding: 10px; border: 1px solid var(--border);
  transition: .2s ease;
}
.blog-card:hover { border-color: #c9d4e8; box-shadow: 0 8px 24px rgba(16,24,40,.08); }
.blog-thumb { border-radius: 14px; overflow: hidden; aspect-ratio: 1; background: #eef2f8; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.blog-cover-ph {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 10px 8px;
  box-sizing: border-box;
}
.blog-cover-ph::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    repeating-linear-gradient(
      -18deg,
      rgba(255,255,255,.08) 0 2px,
      transparent 2px 10px
    );
  pointer-events: none;
}
.blog-cover-ph::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  right: -28px;
  bottom: -30px;
  background: rgba(255,255,255,.14);
  pointer-events: none;
}

.blog-cover-ph--salsa { background: linear-gradient(160deg, #ff4d9a 0%, #c01060 55%, #7a0a3d 100%); }
.blog-cover-ph--bachata { background: linear-gradient(160deg, #f472b6 0%, #9d174d 100%); }
.blog-cover-ph--tango { background: linear-gradient(160deg, #1e293b 0%, #0f172a 45%, #b45309 100%); }
.blog-cover-ph--hiphop { background: linear-gradient(160deg, #22d3ee 0%, #0e7490 50%, #164e63 100%); }
.blog-cover-ph--oryantal { background: linear-gradient(160deg, #fbbf24 0%, #db2777 55%, #7c2d12 100%); }
.blog-cover-ph--zeybek { background: linear-gradient(160deg, #f59e0b 0%, #b45309 50%, #78350f 100%); }
.blog-cover-ph--balet { background: linear-gradient(160deg, #e9d5ff 0%, #7c3aed 45%, #4c1d95 100%); color: #fff; }
.blog-cover-ph--latin { background: linear-gradient(160deg, #fb7185 0%, #e11d48 50%, #9f1239 100%); }
.blog-cover-ph--mix { background: linear-gradient(160deg, #38bdf8 0%, #2563eb 55%, #1e3a8a 100%); }
.blog-cover-ph--sky { background: linear-gradient(160deg, #7dd3fc 0%, #0284c7 100%); }
.blog-cover-ph--mint { background: linear-gradient(160deg, #6ee7b7 0%, #059669 100%); }
.blog-cover-ph--coral { background: linear-gradient(160deg, #fdba74 0%, #ea580c 100%); }
.blog-cover-ph--plum { background: linear-gradient(160deg, #d8b4fe 0%, #7e22ce 100%); }

.blog-cover-ph__badge {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 2;
  background: rgba(255,255,255,.92);
  color: #111827;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
}
.blog-cover-ph__icon {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 12px;
  backdrop-filter: blur(2px);
}
.blog-cover-ph__icon svg { width: 20px; height: 20px; display: block; }
.blog-cover-ph__tag {
  position: relative;
  z-index: 1;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-shadow: 0 1px 8px rgba(0,0,0,.25);
}
.blog-cover-ph__letter {
  position: absolute;
  right: 4px;
  bottom: -2px;
  z-index: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  opacity: .22;
  pointer-events: none;
}

.blog-cover-ph--hero {
  aspect-ratio: 21/9;
  border-radius: 20px;
  margin-bottom: 18px;
  min-height: 180px;
  gap: 10px;
}
.blog-cover-ph--hero .blog-cover-ph__badge {
  top: 16px; left: 16px; font-size: .72rem; padding: 5px 10px;
}
.blog-cover-ph--hero .blog-cover-ph__icon {
  width: 64px; height: 64px; border-radius: 18px;
}
.blog-cover-ph--hero .blog-cover-ph__icon svg { width: 34px; height: 34px; }
.blog-cover-ph--hero .blog-cover-ph__tag { font-size: 1.1rem; }
.blog-cover-ph--hero .blog-cover-ph__letter { font-size: 5.5rem; right: 20px; bottom: -8px; }
.blog-text h3 { font-size: .92rem; letter-spacing: .01em; margin: 0; }
.blog-text p { margin: 6px 0 0; color: #66758f; font-size: .82rem; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.testimonial {
  margin: 0;
  background: #fff;
  border-radius: 16px;
  padding: 14px 14px 12px;
  border: 1px solid var(--border);
  font-size: .9rem;
}
.stars { color: #f5c518; letter-spacing: 1px; font-size: .85rem; }
.testimonial p { margin: 8px 0 0; line-height: 1.45; }
.testimonial cite { display: block; margin-top: 10px; font-style: normal; font-weight: 700; color: #52607a; font-size: .85rem; }

/* Anasayfa yorum şeridi — yatay kaydırma */
.testimonial-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}
.testimonial-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 10px;
  overscroll-behavior-x: contain;
}
.testimonial-rail::-webkit-scrollbar { display: none; }
.testimonial-rail .testimonial {
  flex: 0 0 min(300px, 78vw);
  width: min(300px, 78vw);
  max-width: 300px;
  scroll-snap-align: start;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 168px;
}
.testimonial-rail .testimonial p {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-nav {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #121a2b;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .18);
  transition: background .15s ease, transform .15s ease;
}
.testimonial-nav:hover { background: var(--magenta); }
.testimonial-nav:active { transform: scale(.96); }
.testimonial-carousel.is-paused .testimonial-nav { opacity: 1; }

@media (max-width: 640px) {
  .testimonial-carousel {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .testimonial-nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
    background: rgba(18, 26, 43, .88);
  }
  .testimonial-nav:active { transform: translateY(-50%) scale(.96); }
  .testimonial-nav--prev { left: 2px; }
  .testimonial-nav--next { right: 2px; }
  .testimonial-rail {
    padding-left: 4px;
    padding-right: 4px;
  }
  .testimonial-rail .testimonial {
    flex-basis: min(260px, 82vw);
    width: min(260px, 82vw);
    max-width: 280px;
    min-height: 150px;
  }
}

/* Instructors / schedule / gallery */
.instructor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.instructor-card {
  background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--border);
}
.inst-photo { aspect-ratio: 1; background: #1a2438; }
.inst-photo img { width: 100%; height: 100%; object-fit: cover; }
.instructor-card h3, .instructor-card .meta, .instructor-card .spec, .instructor-card p { padding: 0 14px; }
.instructor-card h3 { margin-top: 12px; }
.instructor-card p:last-child { padding-bottom: 16px; color: #5d6b84; font-size: .92rem; }
.spec { color: var(--magenta); font-weight: 700; font-size: .85rem; }

/* Ders programı — tam genişlik kartlar, dans adı önde */
.schedule-page { display: grid; gap: 32px; }
.sched-day {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, .05);
}
.sched-day__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.sched-day__badge {
  min-width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e2187a, #9d174d);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .02em;
  box-shadow: 0 10px 24px rgba(226, 24, 122, .28);
}
.sched-day__head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
}
.sched-day__head p {
  margin: 2px 0 0;
  color: #7a879d;
  font-size: .9rem;
  font-weight: 600;
}
.sched-empty {
  background: #f8fafc;
  border: 1px dashed #d5dde9;
  border-radius: 16px;
  padding: 22px 16px;
  color: #8a97ad;
  text-align: center;
}
.sched-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
.sched-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e6ecf5;
  box-shadow: 0 6px 18px rgba(16, 24, 40, .06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.sched-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(16, 24, 40, .1);
}
.sched-card__time {
  background: linear-gradient(180deg, #1a2438 0%, #121a2b 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 6px;
  text-align: center;
}
.sched-card__time strong {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.05;
  font-weight: 800;
}
.sched-card__time em {
  font-style: normal;
  font-size: .72rem;
  opacity: .72;
  margin-top: 2px;
}
.sched-card__main {
  padding: 10px 12px;
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
}
.sched-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.sched-card__names {
  display: grid;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.sched-card__dance {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -.02em;
}
.sched-card__lesson {
  margin: 0;
  font-size: .8rem;
  font-weight: 600;
  color: #5d6b84;
}
.sched-day-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #e2187a, #9d174d);
  color: #fff;
  font-family: var(--font);
  font-weight: 800;
  font-size: .68rem;
  letter-spacing: .02em;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(226, 24, 122, .28);
  white-space: nowrap;
}
.sched-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.sched-info {
  background: #f4f7fb;
  border-radius: 8px;
  padding: 5px 8px;
  min-width: 0;
  flex: 1;
}
.sched-info__label {
  display: block;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #8a97ad;
  margin-bottom: 1px;
}
.sched-info strong {
  font-size: .8rem;
  color: #1f2a3d;
}
.sched-card__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sched-card__cta .btn {
  flex: 1;
  min-width: 90px;
  padding: 8px 12px;
  font-size: .82rem;
}
.sched-card .tag {
  margin: 0;
  padding: 3px 8px;
  font-size: .68rem;
}
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid #d5dde9;
}
.btn-ghost-dark:hover { background: #f4f7fb; }
.tag {
  display: inline-flex;
  align-self: center;
  flex-shrink: 0;
  background: #e8f7f4;
  color: #0f766e;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: .75rem;
  font-weight: 700;
}
.schedule-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

/* Instagram story şeridi */
.ig-story-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 6px 4px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.ig-story-item {
  flex: 0 0 auto;
  width: 92px;
  max-width: 92px;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  scroll-snap-align: start;
  font: inherit;
  color: inherit;
  text-align: center;
  /* iOS Safari button varsayılanı çocuk img boyutunu şişirebilir */
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.2;
}
.ig-story-ring {
  position: relative;
  display: block;
  width: 84px;
  height: 84px;
  max-width: 84px;
  max-height: 84px;
  margin: 0 auto 8px;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #f0b429, #e2187a 45%, #0f766e);
  box-shadow: 0 8px 20px rgba(226, 24, 122, .25);
  box-sizing: border-box;
  flex-shrink: 0;
}
.ig-story-ring img {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 78px;
  height: 78px;
  max-width: 78px;
  max-height: 78px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  background: #1e293b;
  display: block;
  box-sizing: border-box;
}
.ig-story-item.no-thumb .ig-story-ring {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: .75rem;
}
.ig-story-item.no-thumb .ig-story-ring::after { content: "IG"; }
.ig-story-item.no-thumb .ig-story-ring img { display: none; }
.ig-story-label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: #405066;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ig-story-hint { margin: 0; font-size: .88rem; }

.ig-modal[hidden] { display: none !important; }
.ig-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: max(12px, env(safe-area-inset-top, 0px)) 12px max(12px, env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}
.ig-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 18, .9);
}
.ig-modal-dialog {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(420px, calc(100vw - 24px));
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  max-height: calc(100vh - 24px);
  max-height: calc(100dvh - 24px);
}
/* Safari: aspect-ratio + max-height birlikte şişer — yüksekliği sabitle, genişliği orandan sınırla */
.ig-modal-frame {
  position: relative;
  width: min(420px, calc(100vw - 24px), 43.875vh);
  height: min(78vh, 720px);
  max-width: 100%;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  box-sizing: border-box;
}
@supports (height: 1dvh) {
  .ig-modal-frame {
    width: min(420px, calc(100vw - 24px), 43.875dvh);
    height: min(78dvh, 720px);
  }
}
.ig-modal-frame iframe,
.ig-modal-frame .ig-modal-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 0;
  display: block;
  background: #000;
  object-fit: contain;
}
.ig-modal-loading {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 240px;
  color: #e2e8f0;
  font-size: .95rem;
}
.ig-modal-caption {
  margin: 0;
  color: #e8eef8;
  text-align: center;
  font-size: .92rem;
  max-width: 36ch;
}
.ig-modal-open {
  color: #fda4d0;
  font-weight: 700;
  text-decoration: none;
}
.ig-modal-close,
.ig-modal-nav {
  position: absolute;
  z-index: 2;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: inherit;
  line-height: 1;
}
.ig-modal-close {
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
}
.ig-modal-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
}
.ig-modal-prev { left: 10px; }
.ig-modal-next { right: 10px; }
.ig-modal-close:hover,
.ig-modal-nav:hover { background: rgba(226, 24, 122, .85); }

/* Teklif sayfası — randevu daveti */
.teklif-randevu {
  margin: 22px auto 0;
  max-width: 36rem;
  text-align: center;
  padding: 22px 24px 18px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(226, 24, 122, .14) 0%, transparent 55%),
    linear-gradient(165deg, #1a1030 0%, #0f172a 55%, #12263a 100%);
  color: #f4eef6;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .22);
  border: 1px solid rgba(226, 24, 122, .35);
}
.teklif-randevu::before,
.teklif-randevu::after {
  content: "✦";
  position: absolute;
  font-size: 4.5rem;
  opacity: .07;
  color: #f5d0a9;
  pointer-events: none;
  line-height: 1;
}
.teklif-randevu::before { top: -8px; left: 10px; transform: rotate(-18deg); }
.teklif-randevu::after { bottom: -14px; right: 12px; transform: rotate(22deg); }
.teklif-randevu__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #f0b429;
  font-size: .95rem;
  letter-spacing: .35em;
  margin-bottom: 10px;
}
.teklif-randevu__ornament--bottom {
  margin: 12px 0 0;
  letter-spacing: .5em;
  opacity: .75;
  font-size: .8rem;
  color: #fda4d0;
}
.teklif-randevu__dance {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e2187a, #9d174d);
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: 0;
  box-shadow: 0 0 0 4px rgba(226, 24, 122, .2), 0 8px 20px rgba(226, 24, 122, .45);
  animation: teklifPulse 2.6s ease-in-out infinite;
}
.teklif-randevu__text {
  margin: 0;
  max-width: none !important;
  color: #fff !important;
  font-family: var(--display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.08rem, 2.4vw, 1.38rem);
  line-height: 1.5;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}
.teklif-randevu__text strong {
  font-style: normal;
  font-weight: 800;
  color: #ffd666;
  -webkit-text-fill-color: #ffd666;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .35);
  background: none;
}
@keyframes teklifPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 4px rgba(226, 24, 122, .2), 0 8px 20px rgba(226, 24, 122, .4); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 8px rgba(226, 24, 122, .12), 0 10px 26px rgba(226, 24, 122, .55); }
}

.gallery-hero-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  margin-bottom: 8px;
}
.gallery-hero-top h1 { margin: 0; }
.section-gallery-home { padding-top: 28px; padding-bottom: 28px; }
.gallery-grid--home {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gal-item--home { border-radius: 14px; }
.gal-item--home .gal-photo-btn,
.gal-item--home .gal-video-btn {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.gal-item--home .gal-photo-btn img,
.gal-item--home .gal-video-btn img,
.gal-item--home .gal-video-btn video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: unset;
  object-fit: cover;
}
.gal-item--home .gal-play {
  width: 42px;
  height: 42px;
  font-size: .9rem;
}
@media (max-width: 900px) {
  .gallery-grid--home { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid--home { grid-template-columns: repeat(2, 1fr); }
}
.gallery-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gallery-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none;
  color: #fff;
  letter-spacing: .02em;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .14);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}
.gallery-tab:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #fff;
  text-decoration: none;
}
.gallery-tab-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .22);
  font-size: .85rem;
}
.gallery-tab--photo {
  background: linear-gradient(135deg, #e2187a 0%, #c41266 100%);
}
.gallery-tab--video {
  background: linear-gradient(135deg, #0f766e 0%, #0b5f59 100%);
}
@media (max-width: 600px) {
  .gallery-hero-top { align-items: flex-start; }
  .gallery-jump { width: 100%; }
  .gallery-tab { flex: 1; justify-content: center; }
}
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gal-item { margin: 0; border-radius: 18px; overflow: hidden; background: #fff; border: 1px solid var(--border); }
.gal-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  max-width: 100%;
}
.gal-item figcaption { padding: 10px 12px; display: flex; justify-content: space-between; gap: 8px; font-size: .85rem; }
.gal-photo-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.gal-photo-btn:focus-visible { outline: 2px solid var(--magenta, #e2187a); outline-offset: 2px; }
.gal-photo-btn img { transition: transform .35s ease; }
.gal-photo-btn:hover img { transform: scale(1.04); }

/* Resim lightbox — story gibi sağ/sol */
.gal-lightbox[hidden] { display: none !important; }
.gal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top, 0px)) 16px max(16px, env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}
.gal-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 18, .9);
}
.gal-lightbox-stage {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-width: calc(100vw - 32px);
  max-height: min(88vh, 88dvh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  box-sizing: border-box;
}
.gal-lightbox-stage img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(78vh, 820px);
  max-height: min(78dvh, 820px);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
  background: #0b1220;
  aspect-ratio: auto;
}
.gal-lightbox-caption {
  margin: 0;
  color: #e8eef8;
  font-weight: 600;
  text-align: center;
}
.gal-lightbox-counter {
  color: #93a0b8;
  font-size: .85rem;
}
.gal-lightbox-close,
.gal-lightbox-nav {
  position: absolute;
  z-index: 2;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: inherit;
  line-height: 1;
}
.gal-lightbox-close {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
}
.gal-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
}
.gal-lightbox-prev { left: 12px; }
.gal-lightbox-next { right: 12px; }
.gal-lightbox-close:hover,
.gal-lightbox-nav:hover { background: rgba(226, 24, 122, .85); }
@media (max-width: 700px) {
  .gal-lightbox-nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .gal-lightbox-prev { left: 6px; }
  .gal-lightbox-next { right: 6px; }
}

.gallery-video-filters { margin: 0 0 16px; }
.gal-video { position: relative; }
.gal-video.is-filtered-out { display: none; }
.gal-video-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #0f172a;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.gal-video-btn img,
.gal-video-btn video {
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: unset;
  object-fit: cover;
  display: block;
}
.gal-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(226, 24, 122, .92);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .35);
  pointer-events: none;
}
.gal-video-meta {
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: .85rem;
  align-items: baseline;
}
.gal-video-meta span { color: #6b768a; }

.gal-modal[hidden] { display: none !important; }
.gal-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}
.gal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, .78);
}
.gal-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 24px));
  max-width: 100%;
  background: #0b1220;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  box-sizing: border-box;
}
.gal-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.gal-modal-body {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.gal-modal-body iframe,
.gal-modal-body video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 0;
  display: block;
  background: #000;
  object-fit: contain;
}

.detail-hero {
  max-width: var(--max); margin: 24px auto; padding: 0 20px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: center;
}
.detail-media { position: relative; }
.detail-media img { border-radius: 24px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.public-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; }
.public-table th, .public-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); font-size: .92rem; }
.public-table th { background: var(--navy); color: #fff; }

.prose-wrap, .prose { max-width: 760px; }
.prose h2 { font-size: 1.35rem; margin: 1.6em 0 .55em; }
.prose h3 { font-size: 1.1rem; margin: 1.3em 0 .4em; }
.prose p { color: #2a3344; line-height: 1.7; margin: 0 0 .9em; }
.prose ul, .prose ol { margin: 0 0 1em 1.15em; color: #2a3344; line-height: 1.65; }
.prose li { margin-bottom: .35em; }
.prose a { color: var(--teal, #0f766e); text-decoration: underline; text-underline-offset: 2px; }
.blog-cta {
  margin-top: 1.8em;
  padding: 14px 16px;
  border-radius: 14px;
  background: #eef3f8;
  border: 1px solid var(--border);
  font-size: .95rem;
}
.blog-cta a { margin-right: .35em; }
.post-cover { width: 100%; border-radius: 20px; margin-bottom: 18px; aspect-ratio: 21/9; object-fit: cover; }
.comment-list { display: grid; gap: 12px; margin-bottom: 24px; }
.comment { background: #fff; border-radius: 14px; padding: 14px 16px; border: 1px solid var(--border); }
.comment-head { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.panel-light {
  background: #fff; border-radius: 20px; padding: 22px; border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(16,24,40,.05);
}
.form-public label, .comment-form label { display: grid; gap: 6px; font-weight: 600; font-size: .9rem; margin-bottom: 12px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; align-items: center; }
.filter-bar select { min-width: 180px; flex: 1; }

/* Danslar — anlık chip filtre */
.dance-filters {
  margin-bottom: 28px;
  padding: 18px 20px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(226, 24, 122, .08), rgba(15, 118, 110, .08)),
    #fff;
  border: 1px solid rgba(16, 24, 40, .08);
  box-shadow: 0 10px 28px rgba(16, 24, 40, .06);
  display: grid;
  gap: 14px;
}
.dance-filters__row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.dance-filters__label {
  flex: 0 0 auto;
  min-width: 58px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6b7a94;
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}
.filter-chip {
  appearance: none;
  border: 1px solid #d5deea;
  background: #fff;
  color: #243047;
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .15s ease, box-shadow .18s ease;
}
.filter-chip:hover {
  border-color: #e2187a;
  color: #e2187a;
  transform: translateY(-1px);
}
.filter-chip.is-active {
  background: linear-gradient(135deg, #e2187a, #b1125c);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px rgba(226, 24, 122, .28);
}
.filter-chip.is-active:hover {
  color: #fff;
  transform: translateY(-1px);
}
.dance-filters__count {
  margin: 0;
  font-size: .88rem;
  color: #5d6b84;
  font-weight: 600;
}
.dance-card.is-filtered-out {
  display: none;
}
.dance-empty {
  text-align: center;
  color: #5d6b84;
  padding: 36px 16px;
  background: #fff;
  border-radius: 18px;
  border: 1px dashed #d5deea;
}

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; }
.map-box { border-radius: 20px; overflow: hidden; min-height: 320px; background: #dbe3f0; }
.map-box iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* CTA + footer */
.cta-banner { padding: 10px 12px 0; }
.cta-inner {
  max-width: var(--max); margin: 0 auto;
  background: linear-gradient(90deg, #e2187a, #c01066);
  color: #fff; border-radius: 999px; padding: 16px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  box-shadow: 0 16px 40px rgba(226,24,122,.28);
}
.cta-copy strong { font-family: var(--display); font-size: 1.05rem; }
.cta-copy p { margin: 4px 0 0; opacity: .92; font-size: .92rem; }

.site-footer {
  max-width: var(--max); margin: 0 auto; padding: 28px 20px 40px;
}
.footer-top {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px;
  padding: 18px 0; border-bottom: 1px solid #d9e0ec;
}
.footer-top .logo .logo-mark { font-size: 1.3rem; }
.footer-top .logo .logo-sub { color: var(--ink); }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 16px; margin-left: auto; font-size: .88rem; color: #52607a; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding-top: 16px; color: #7a879d; font-size: .85rem;
}
.socials { display: flex; align-items: center; gap: 10px; }
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 6px 16px rgba(16, 24, 40, .14);
  transition: transform .15s ease, filter .15s ease;
}
.social-btn:hover { transform: translateY(-2px) scale(1.05); filter: brightness(1.08); }
.social-btn--fb { background: #1877f2; }
.social-btn--ig {
  background: linear-gradient(45deg, #f58529, #dd2a7b 50%, #8134af 80%, #515bd4);
}
.social-btn--wa { background: #25d366; }
.muted { color: #7a879d; }
.flash {
  max-width: var(--max); margin: 12px auto 0; padding: 12px 16px; border-radius: 12px;
  font-weight: 600;
}
.flash-ok { background: #dcfce7; color: #166534; }
.flash-err { background: #fee2e2; color: #991b1b; }

.campaign-lead {
  background: linear-gradient(135deg, #fff7ed, #ffe4e6);
  border: 1px solid #fdba74;
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 16px;
}
.campaign-lead__badge {
  display: inline-flex;
  background: linear-gradient(135deg, #ff9f1a, #e85d04);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.campaign-lead strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.campaign-lead p {
  margin: 0;
  color: #7c2d12;
  font-size: .92rem;
}
.input-readonly {
  background: #f1f5f9 !important;
  color: #334155;
  font-weight: 700;
}

.contact-card .contact-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.contact-card .contact-row:last-of-type { border-bottom: 0; }
.contact-ico { font-size: 1.1rem; line-height: 1.4; width: 1.4rem; text-align: center; }
.contact-row strong { display: block; font-size: .8rem; color: #66758f; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.contact-row p { margin: 2px 0 0; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

.wa-float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff !important;
  border-radius: 999px;
  padding: 14px 16px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
  font-weight: 700;
  text-decoration: none !important;
  transition: transform .15s ease, filter .15s ease;
}
.wa-float:hover { transform: translateY(-2px) scale(1.03); filter: brightness(1.05); }
.wa-float svg { display: block; flex-shrink: 0; }
.wa-float-label { font-size: .9rem; padding-right: 4px; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .card-grid, .blog-grid, .instructor-grid, .campaign-grid, .gallery-grid, .promo-grid, .promo-grid--page { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .sched-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-hero, .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: rgba(12,18,32,.98); border-radius: 18px; padding: 12px; flex-direction: column;
    box-shadow: 0 16px 40px rgba(0,0,0,.35); z-index: 60;
  }
  .nav-toggle {
    display: inline-flex;
    min-width: 0;
    min-height: 40px;
  }
  .site-nav { position: relative; border-radius: 22px; flex-wrap: nowrap; }
  .nav-actions .btn-yellow { display: none !important; }
  .cta-inner { border-radius: 24px; flex-direction: column; align-items: flex-start; }
  .stats-bar .btn { margin-left: 0; width: 100%; }
  .search-bar { grid-template-columns: 1fr; }
  .section { padding: 40px 16px; }
  .section-soft { padding: 40px 16px; margin: 8px; border-radius: 20px; }
  .map-box, .map-box iframe { min-height: 280px; }
  .contact-actions .btn { width: 100%; }

  .mobile-dock {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 85;
    gap: 2px;
    padding: 8px 4px calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(10, 14, 24, .94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .28);
  }
  .mobile-dock__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 52px;
    padding: 6px 2px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #a8b6cc;
    text-decoration: none;
    font: inherit;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .01em;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
    -webkit-appearance: none;
    appearance: none;
  }
  .mobile-dock__item:hover,
  .mobile-dock__item.is-active {
    color: #fff;
    background: rgba(255, 255, 255, .08);
  }
  .mobile-dock__ico {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    color: inherit;
  }
  .mobile-dock__ico svg { display: block; width: 20px; height: 20px; }
  .mobile-dock__label { line-height: 1.1; text-align: center; }
  .mobile-dock__item--cta {
    color: #1a1400;
    background: linear-gradient(135deg, #f5c518, #f0b429);
    box-shadow: 0 6px 16px rgba(245, 197, 24, .28);
  }
  .mobile-dock__item--cta:hover,
  .mobile-dock__item--cta.is-active {
    color: #1a1400;
    background: linear-gradient(135deg, #ffd666, #f5c518);
    filter: brightness(1.03);
  }
  .wa-float {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
  .site-footer { padding-bottom: 110px; }
  body { padding-bottom: 0; }

  .share-sheet[hidden] { display: none !important; }
  .share-sheet {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  .share-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 10, 18, .55);
  }
  .share-sheet__panel {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    margin: 0;
    padding: 14px 14px calc(18px + env(safe-area-inset-bottom, 0px));
    border-radius: 22px 22px 0 0;
    background: #121a2b;
    color: #eef2f8;
    box-shadow: 0 -16px 40px rgba(0, 0, 0, .35);
    animation: shareUp .22s ease;
  }
  @keyframes shareUp {
    from { transform: translateY(24px); opacity: .6; }
    to { transform: none; opacity: 1; }
  }
  .share-sheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 0 4px;
  }
  .share-sheet__head strong { font-size: 1.05rem; }
  .share-sheet__x {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
  }
  .share-sheet__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .share-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 6px;
    border: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    color: #e8eef8;
    text-decoration: none;
    font: inherit;
    font-size: .72rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }
  .share-opt:hover { background: rgba(255, 255, 255, .12); color: #fff; }
  .share-opt__ico {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .22);
  }
  .share-opt--wa .share-opt__ico { background: #25d366; }
  .share-opt--ms .share-opt__ico { background: linear-gradient(135deg, #00b2ff, #006aff); }
  .share-opt--fb .share-opt__ico { background: #1877f2; }
  .share-opt--x .share-opt__ico { background: #111; }
  .share-opt--sms .share-opt__ico { background: #0f766e; }
  .share-opt--mail .share-opt__ico { background: #ea4335; }
  .share-opt--copy .share-opt__ico { background: #64748b; }
  .share-opt--copy.is-done .share-opt__ico { background: #22a06b; }
}

@media (max-width: 640px) {
  .badge-seal { padding: 3px 8px 3px 6px; }
  .badge-seal__text { font-size: .62rem; }
  .card-grid, .blog-grid, .instructor-grid, .campaign-grid, .gallery-grid, .testimonial-grid, .row-2, .promo-grid, .promo-grid--page { grid-template-columns: 1fr; }
  .promo-section { margin: 8px; padding: 32px 16px; border-radius: 20px; }
  .promo-hero { margin: 8px 8px 0; border-radius: 20px; }
  .promo-hero__inner { padding: 32px 16px; }
  .promo-hero__cta .btn { width: 100%; }
  .promo-card { min-height: 0; }
  .blog-card { grid-template-columns: 88px 1fr; }
  .hero { min-height: auto; border-radius: 18px; margin: 16px 8px 0; }
  .hero-content { padding: 36px 16px 20px; }
  .hero h1 { font-size: clamp(2rem, 10vw, 2.8rem); max-width: none; }
  .hero-montage { grid-template-columns: 1fr 1fr; }
  .s3, .s4 { display: none; }
  .site-nav-wrap { top: 8px; padding: 0 8px; }
  .site-nav { padding: 8px 10px; gap: 8px; }
  .nav-actions .btn-teal { padding: 8px 10px; font-size: .78rem; }
  .nav-teklif { padding: 8px 10px; font-size: .78rem; }
  .nav-actions .btn-nav-login { padding: 8px 10px; font-size: .78rem; }
  .logo-sub { display: none; }
  .page-hero { margin-top: 16px; padding: 16px 16px 4px; }
  .filter-bar { flex-direction: column; }
  .filter-bar select, .filter-bar .btn { width: 100%; }
  .dance-filters { padding: 14px; border-radius: 18px; }
  .dance-filters__row { align-items: flex-start; gap: 8px; }
  .dance-filters__label { min-width: 100%; margin-bottom: 2px; }
  .filter-chip { padding: 8px 13px; font-size: .85rem; }
  .sched-list { grid-template-columns: 1fr; }
  .sched-day { padding: 14px; border-radius: 18px; }
  .sched-card { grid-template-columns: 64px minmax(0, 1fr); }
  .sched-card__dance { font-size: 1.05rem; }
  .sched-day-pill { font-size: .62rem; padding: 4px 8px; }
  .sched-card__cta .btn { width: auto; flex: 1; }
  .schedule-cta .btn { width: 100%; }
  .cta-banner { padding: 8px 8px 0; }
  .cta-inner { padding: 16px; }
  .cta-inner .btn { width: 100%; }
  .site-footer { padding: 24px 16px 120px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-links { margin-left: 0; }
  .wa-float-label { display: none; }
  .wa-float {
    padding: 15px;
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
  .public-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .detail-actions .btn { width: 100%; }
  .stats-bar { padding: 12px; gap: 8px; }
  .stats-bar .stat { min-width: calc(50% - 12px); }
  .howto-grid { grid-template-columns: 1fr; }
  .ig-story-rail { gap: 10px; }
  .ig-story-item { width: 76px; max-width: 76px; }
  .ig-story-ring {
    width: 68px;
    height: 68px;
    max-width: 68px;
    max-height: 68px;
  }
  .ig-story-ring img {
    width: 62px;
    height: 62px;
    max-width: 62px;
    max-height: 62px;
  }
  .ig-story-label { font-size: .72rem; }
  .ig-modal-nav { width: 40px; height: 40px; font-size: 1.5rem; }
  .ig-modal-prev { left: 4px; }
  .ig-modal-next { right: 4px; }
  .ig-modal-close { top: max(8px, env(safe-area-inset-top, 0px)); }
}

/* Nasıl Oynanır */
.howto-filters {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, .05);
}
.howto-search-wrap {
  display: grid;
  gap: 7px;
}
.howto-search-wrap label {
  font-weight: 800;
  font-size: .88rem;
  color: var(--ink);
}
.howto-search {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8deea;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.howto-search:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(226, 24, 122, .1);
}
.howto-region-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.howto-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border: 1px solid #e0e5ee;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
}
.howto-filter-chip span {
  min-width: 21px;
  padding: 1px 6px;
  border-radius: 999px;
  background: #e9edf4;
  text-align: center;
  font-size: .7rem;
}
.howto-filter-chip:hover {
  border-color: #f5a8cd;
  color: #b01063;
}
.howto-filter-chip.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #e2187a, #c01066);
  color: #fff;
}
.howto-filter-chip.is-active span {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.howto-filter-count {
  margin: 0;
  color: #64748b;
  font-size: .84rem;
  font-weight: 700;
}
.howto-empty {
  padding: 22px;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  background: #fff;
  color: #64748b;
  text-align: center;
}
.howto-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.howto-grid--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.howto-card {
  display: grid;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 16px;
  transition: .2s ease;
  min-height: 150px;
  align-content: start;
}
.howto-card[hidden] { display: none; }
.howto-card:hover {
  border-color: #f5a8cd;
  box-shadow: 0 10px 28px rgba(226, 24, 122, .1);
  transform: translateY(-2px);
}
.howto-card__tag {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(226, 24, 122, .1);
  color: #c01066;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.howto-card h2,
.howto-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink);
}
.howto-card p {
  margin: 0;
  color: #5d6b84;
  font-size: .9rem;
}
.howto-card__more {
  margin-top: auto;
  font-weight: 700;
  color: var(--magenta);
  font-size: .88rem;
}
.howto-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #6b7280;
  font-size: .9rem;
  margin: 0 0 12px;
}
.howto-breadcrumb a { color: var(--magenta); font-weight: 700; }
.howto-pill {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(20, 184, 166, .12);
  color: #0f766e;
  font-weight: 800;
  font-size: .78rem;
  margin: 0 0 10px;
}
.howto-article .lede {
  font-size: 1.05rem;
  color: #4b5568;
  margin: 0 0 18px;
}
.howto-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}
.howto-tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f3eef8;
  color: #6d28d9;
  font-size: .78rem;
  font-weight: 700;
  border: 1px solid #e9d5ff;
}
.howto-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
@media (max-width: 960px) {
  .howto-grid,
  .howto-grid--compact { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .howto-grid,
  .howto-grid--compact { grid-template-columns: 1fr; }
}

/* Üye kayıt / hesap */
.member-page-hero {
  text-align: center;
}
.member-page-hero p {
  margin-left: auto;
  margin-right: auto;
}
.member-section {
  display: flex;
  justify-content: center;
}
.member-form-wrap {
  width: min(520px, 100%);
  margin: 0 auto;
}
.member-form {
  width: 100%;
  max-width: none;
  margin: 0;
}
.form-error {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fee2e2;
  color: #991b1b;
  font-weight: 700;
}
.form-ok {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #dcfce7;
  color: #166534;
  font-weight: 700;
}
.member-form__foot { margin: 14px 0 0; text-align: center; }
.member-form__foot a { color: var(--magenta); font-weight: 700; }
.member-hero__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}
.member-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.member-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px 18px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, .05);
}
.member-card h2 { margin: 0 0 14px; font-size: 1.15rem; }
.member-card--password { margin-top: 16px; }
.member-dl {
  margin: 0;
  display: grid;
  gap: 12px;
}
.member-dl--row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}
.member-dl div {
  display: grid;
  gap: 2px;
}
.member-dl dt {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #7a879d;
}
.member-dl dd { margin: 0; font-weight: 700; color: #1f2937; }
.member-note { margin: 14px 0 0; font-size: .85rem; }
.member-pwd-form { margin: 0; max-width: 420px; }
.member-pwd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.member-packages__sub {
  margin: 18px 0 12px;
  font-size: .95rem;
  color: #52607a;
}
.member-empty {
  text-align: center;
  padding: 36px 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px dashed var(--border);
}
.member-empty strong { display: block; margin-bottom: 8px; font-size: 1.1rem; }
.member-empty p { margin: 0 0 16px; color: #66758f; }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.pkg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(16, 24, 40, .05);
}
.pkg-card--aktif {
  border-color: rgba(20, 184, 166, .35);
  background: linear-gradient(180deg, #fff, #f0fdfa);
}
.pkg-card--bitiyor {
  border-color: rgba(245, 197, 24, .55);
  background: linear-gradient(180deg, #fff, #fffbeb);
}
.pkg-card--bitti,
.pkg-card--pasif {
  opacity: .88;
  background: #f8fafc;
}
.pkg-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}
.pkg-card__top h3 { margin: 0; font-size: 1.05rem; }
.pkg-badge {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
}
.pkg-badge--aktif { background: #ccfbf1; color: #0f766e; }
.pkg-badge--bitiyor { background: #fef3c7; color: #92400e; }
.pkg-badge--bitti { background: #fee2e2; color: #991b1b; }
.pkg-badge--bekliyor { background: #e0e7ff; color: #3730a3; }
.pkg-badge--pasif { background: #e2e8f0; color: #475569; }
.pkg-card__dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pkg-card__dates span {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #7a879d;
  margin-bottom: 2px;
}
.pkg-card__dates strong { font-size: 1rem; color: #152033; }
.pkg-card__left {
  margin: 12px 0 0;
  font-weight: 800;
  color: #0f766e;
  font-size: .92rem;
}
.pkg-card--bitiyor .pkg-card__left { color: #b45309; }
@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .member-dl--row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .member-hero__top { align-items: flex-start; }
  .member-hero__actions { width: 100%; }
  .member-hero__actions .btn { flex: 1; }
}

/* Dans detay — SEO / kategori yazısı */
.seo-cat-article {
  margin-top: 36px;
  padding: 28px 28px 24px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #fffafc 0%, #ffffff 55%),
    radial-gradient(600px 220px at 0% 0%, rgba(226, 24, 122, .08), transparent 70%);
  border: 1px solid #eadfe8;
  box-shadow: 0 10px 28px rgba(88, 40, 80, .06);
}
.seo-cat-article__label {
  margin: 0 0 8px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #be185d;
}
.seo-cat-article h2 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.25;
  color: #1f1730;
}
.seo-cat-article__body {
  max-width: none;
}
.seo-cat-article__body p:last-child {
  margin-bottom: 0;
}
.seo-cat-article .howto-tags {
  margin-top: 18px;
}
.seo-cat-article .howto-tag {
  background: #fde8f2;
  color: #b01063;
  border-color: #f9c2d8;
}
.seo-cat-article .howto-cta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #eadfe8;
}
@media (max-width: 640px) {
  .seo-cat-article { padding: 20px 16px; }
}

.blog-keywords {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border, #e4e9f2);
}
.blog-keywords__label {
  margin: 0 0 10px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #be185d;
}
.blog-keywords .howto-tag {
  background: #fde8f2;
  color: #9d174d;
  border-color: #f9c2d8;
}
