/* ============================================
   Digiturk Europe – ASMEE GmbH
   Main stylesheet – light theme
   ============================================ */

:root {
  /* Brand palette (admin-editable via :root override) */
  --c-red: #e51735;
  --c-red-700: #c10f2c;
  --c-red-50: #fdecef;
  --c-purple: #632a96;
  --c-purple-700: #4a1f72;
  --c-purple-50: #f3edf9;
  --c-purple-deep: #290e39;
  --c-purple-deep-90: rgba(41, 14, 57, 0.92);

  /* Neutrals (light, warm) */
  --c-bg: #faf8fb;
  --c-bg-alt: #ffffff;
  --c-bg-soft: #f4f1f6;
  --c-text: #1a1023;
  --c-text-soft: #5a4f66;
  --c-text-muted: #8c8195;
  --c-border: #e8e2ee;
  --c-border-strong: #d4cbdc;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(41, 14, 57, 0.06), 0 1px 3px rgba(41, 14, 57, 0.04);
  --shadow-md: 0 4px 10px rgba(41, 14, 57, 0.06), 0 2px 6px rgba(41, 14, 57, 0.05);
  --shadow-lg: 0 20px 40px -12px rgba(41, 14, 57, 0.18), 0 8px 16px -8px rgba(41, 14, 57, 0.1);
  --shadow-red: 0 8px 24px -8px rgba(229, 23, 53, 0.4);

  /* Type & spacing */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --font-display: "Google Sans Flex", "Google Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Google Sans Flex", "Google Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1240px;
  --surface-pattern:
    radial-gradient(circle at 1px 1px, rgba(99, 42, 150, 0.07) 1px, transparent 1.4px),
    linear-gradient(135deg, rgba(229, 23, 53, 0.028) 0 1px, transparent 1px 28px);
  --surface-pattern-size: 28px 28px, 56px 56px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  font-variation-settings: "wdth" 100, "GRAD" 0, "opsz" 16;
  color: var(--c-text);
  background-color: var(--c-bg);
  background-image: var(--surface-pattern);
  background-size: var(--surface-pattern-size);
  background-attachment: fixed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .34);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(37, 211, 102, .42);
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 13px;
  }
  .whatsapp-float span { display: none; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TOP BAR (Bireysel / Kurumsal + Language)
   ============================================ */
.topbar {
  background: var(--c-purple-deep);
  color: #fff;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
}
.audience-toggle {
  display: inline-flex;
  gap: 4px;
  align-items: stretch;
  height: 100%;
}
.audience-toggle button {
  min-height: 44px;
  padding: 0 14px;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  font-size: 13px;
  transition: color 0.18s;
  cursor: pointer;
  z-index: 2;
}
.audience-toggle button:first-child { padding-left: 0; }
.audience-toggle button.active {
  color: #fff;
}
.audience-toggle button.active::after {
  content: "";
  position: absolute;
  inset: auto 14px 0 14px;
  height: 2px;
  background: var(--c-red);
}
.audience-toggle .sep {
  width: 1px;
  background: rgba(255,255,255,0.18);
  margin: 8px 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  flex-shrink: 0;
}
.lang-switch button {
  padding: 4px 10px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: lowercase;
}
.lang-switch button.active {
  color: #fff;
  font-weight: 600;
}
.lang-switch .sep {
  color: rgba(255,255,255,0.3);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  background: var(--c-purple);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(41, 14, 57, 0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.brand-logo {
  height: 38px;
  display: flex;
  align-items: center;
}
.brand-logo svg { height: 100%; width: auto; }

.brand-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  background: rgba(255,255,255,0.12);
  padding: 3px 7px;
  border-radius: 4px;
  margin-left: 2px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 2px;
  flex: 1;
  align-items: center;
}
.main-nav a {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  position: relative;
  transition: background 0.18s;
  white-space: nowrap;
}
.main-nav a:hover {
  background: rgba(255,255,255,0.08);
}
.main-nav a.active {
  background: rgba(255,255,255,0.12);
}
.main-nav a.has-badge::after {
  content: attr(data-badge);
  position: absolute;
  top: 4px;
  right: 6px;
  background: var(--c-red);
  color: #fff;
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}
.header-actions .contact-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.18s;
}
.icon-btn:hover { background: rgba(255,255,255,0.18); }
.icon-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--c-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.18s;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--c-red-700); transform: translateY(-1px); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-dark {
  background: var(--c-purple-deep);
  color: #fff;
}
.btn-dark:hover { background: #1c0827; }

.btn-outline {
  background: transparent;
  color: var(--c-purple-deep);
  border-color: var(--c-border-strong);
}
.btn-outline:hover { border-color: var(--c-purple); color: var(--c-purple); }

.btn-logout {
  background: var(--c-red);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 10px 22px rgba(229,23,53,.22);
}
.btn-logout:hover {
  background: var(--c-red-700);
  color: #fff;
  transform: translateY(-1px);
}

.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
  padding: 24px 0 0;
  background-color: rgba(250, 248, 251, 0.92);
  background-image: var(--surface-pattern);
  background-size: var(--surface-pattern-size);
}
.slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 460px;
  background: linear-gradient(135deg, #1a0826 0%, #4a1f72 50%, #290e39 100%);
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 48px 64px;
  overflow: hidden;
}
.slide-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
/* Not: gradient overlay artik .slide-overlay ile yapiliyor,
   yalniz yazi varken gosterilir. Bos sliderda goelge yok. */
.slide-bg.placeholder-sport {
  background: 
    radial-gradient(circle at 20% 30%, rgba(229,23,53,0.35) 0%, transparent 45%),
    radial-gradient(circle at 80% 60%, rgba(99,42,150,0.5) 0%, transparent 50%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #1a0826, #4a1f72);
}
.slide-bg.placeholder-film {
  background: 
    radial-gradient(circle at 70% 30%, rgba(229,23,53,0.3) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(99,42,150,0.4) 0%, transparent 50%),
    linear-gradient(135deg, #290e39, #1a0826);
}
.slide-bg.placeholder-corp {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
    linear-gradient(135deg, #4a1f72, #290e39);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  color: #fff;
}
.slide-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--c-red);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.slide-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  font-variation-settings: "wdth" 100, "GRAD" 100, "opsz" 48;
}
.slide-title em {
  font-style: normal;
  background: linear-gradient(90deg, #ff4264, var(--c-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.slide-desc {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 28px;
  color: rgba(255,255,255,0.88);
  max-width: 460px;
}
.slide-actions {
  display: flex;
  gap: 12px;
}

.slide-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}
.placeholder-card {
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  color: rgba(255,255,255,0.7);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.placeholder-card .ph-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
}

.slider-arrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.slider-arrows button {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.slider-arrows button:hover { background: rgba(255,255,255,0.3); }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.slider-dots button {
  width: 32px;
  height: 4px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
  transition: all 0.18s;
}
.slider-dots button.active {
  background: #fff;
  width: 48px;
}

/* ============================================
   PROMO CARDS (3-up)
   ============================================ */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.promo-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.promo-card.purple { background: linear-gradient(135deg, var(--c-purple), var(--c-purple-deep)); }
.promo-card.red { background: linear-gradient(135deg, #ff3859, var(--c-red-700)); }
.promo-card.dark { background: linear-gradient(135deg, #3a1454, var(--c-purple-deep)); }

.promo-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}
.promo-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.25;
  max-width: 80%;
  position: relative;
  z-index: 1;
}
.promo-card .promo-btn {
  align-self: flex-start;
  background: #fff;
  color: var(--c-purple-deep);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 72px 0;
}
.section-tight { padding: 48px 0; }
.section-soft {
  background-color: var(--c-bg-soft);
  background-image: var(--surface-pattern);
  background-size: var(--surface-pattern-size);
}
.section-dark { background: var(--c-purple-deep); color: #fff; }

.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  font-variation-settings: "wdth" 100, "GRAD" 100, "opsz" 36;
}
.section-head p {
  font-size: 17px;
  color: var(--c-text-soft);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 12px;
}

/* Category icons row */
.cat-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--shadow-md);
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.18s;
  position: relative;
}
.cat-item:hover { background: var(--c-bg-soft); }
.cat-item.active { background: var(--c-purple-50); }
.cat-item.active::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--c-red);
  border-radius: 2px;
}
.cat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-purple);
  margin-bottom: 10px;
}
.cat-item.active .cat-icon { color: var(--c-red); }
.cat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  text-align: center;
  line-height: 1.25;
}
.cat-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-top: 10px;
}
.cat-chlogo {
  width: 26px; height: 26px;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 9px; font-weight: 700;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.cat-chlogo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-chmore {
  display: inline-flex; align-items: center; justify-content: center;
  height: 26px; padding: 0 8px;
  font-size: 11px; font-weight: 700;
  color: var(--c-purple);
  background: var(--c-purple-50);
  border-radius: 6px;
}

/* ============================================
   PACKAGE CARDS
   ============================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  gap: 18px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.pkg-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  position: relative;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pkg-card.featured {
  border-color: var(--c-red);
  box-shadow: 0 0 0 1px var(--c-red), var(--shadow-lg);
}
.pkg-badge {
  position: absolute;
  top: 12px;
  right: 14px;
  background: var(--c-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.pkg-tier {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-purple);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pkg-name {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.pkg-sub {
  font-size: 13px;
  color: var(--c-text-soft);
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg-chstrip {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.pkg-chlogo {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--c-border);
  display: inline-flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.pkg-chlogo img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.pkg-chmore {
  display: inline-flex; align-items: center; justify-content: center;
  height: 28px;
  padding: 0 8px;
  border-radius: 6px;
  background: var(--c-purple-50);
  color: var(--c-purple);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

/* Addon checkbox satirlari (paket kartinda "Cihaz istiyorum") */
.pkg-addons { display: flex; flex-direction: column; gap: 6px; margin: 6px 0 14px; }
.pkg-addon {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-bg-soft);
  cursor: pointer;
  transition: all .15s;
}
.pkg-addon:hover { border-color: var(--c-purple); background: #fff; }
.pkg-addon input[type="checkbox"] { accent-color: var(--c-purple); width: 16px; height: 16px; flex-shrink: 0; }
.pkg-addon-info { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.pkg-addon-info strong { font-size: 13px; color: var(--c-text); font-weight: 600; }
.pkg-addon-info small { font-size: 11.5px; color: var(--c-text-soft); margin-top: 2px; }
.pkg-addon-price { font-size: 13px; font-weight: 700; color: var(--c-red); white-space: nowrap; }
.pkg-addon input:checked ~ .pkg-addon-info strong { color: var(--c-purple); }

/* Header sepet ikonu badge'i */
.icon-btn.cart-btn { position: relative; }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--c-red); color: #fff;
  font-size: 10px; font-weight: 800;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--c-purple-deep);
  transition: transform .2s;
}
.cart-badge.bump { animation: cartBump .42s ease-out; }
@keyframes cartBump {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.45); }
  100% { transform: scale(1); }
}

/* Toast bildirim */
.dt-toast-host {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 200;
  pointer-events: none;
}
.dt-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-left: 4px solid #1f7a3d;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px -8px rgba(41,14,57,0.25), 0 4px 10px rgba(41,14,57,0.08);
  min-width: 260px;
  max-width: 380px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-text);
  transform: translateX(120%) translateY(0);
  opacity: 0;
  transition: transform .25s cubic-bezier(.2,.9,.3,1.2), opacity .25s;
  pointer-events: auto;
}
.dt-toast.show { transform: translateX(0); opacity: 1; }
.dt-toast.is-error { border-left-color: var(--c-red); }
.dt-toast-ic { color: #1f7a3d; flex-shrink: 0; display: inline-flex; }
.dt-toast.is-error .dt-toast-ic { color: var(--c-red); }
.dt-toast-msg { flex: 1; line-height: 1.35; }
.dt-toast-cta {
  background: var(--c-purple);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}
.dt-toast-cta:hover { background: var(--c-purple-deep); }
@media (max-width: 720px) {
  .dt-toast-host { left: 16px; right: 16px; bottom: 16px; }
  .dt-toast { max-width: none; }
}
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-border);
}
.pkg-price .currency { font-size: 20px; font-weight: 600; color: var(--c-text-soft); }
.pkg-price .amount { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; color: var(--c-text); line-height: 1; }
.pkg-price .period { font-size: 14px; color: var(--c-text-soft); margin-left: 4px; }
.pkg-vat-note {
  font-size: 11px;
  color: var(--c-text-muted);
  text-align: center;
  margin: -10px 0 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
}
.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--c-text);
}
.pkg-features li svg {
  flex-shrink: 0;
  color: var(--c-red);
  margin-top: 2px;
}

/* ============================================
   STATS / FEATURES STRIP
   ============================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.stat {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--c-border);
}
.stat:last-child { border-right: none; }
.stat-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--c-red);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: var(--c-text-soft);
  margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--c-purple-deep);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
  gap: 52px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid > div:not(.footer-brand) {
  padding-top: 0;
}
.footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.18s;
}
.footer-links a:hover { color: #fff; }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 8px 0 16px;
  max-width: 280px;
  line-height: 1.6;
}
.footer .brand {
  align-items: flex-start;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin: 8px 0;
}
.contact-line svg { color: var(--c-red); flex-shrink: 0; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .legal a { margin-left: 18px; }

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.18s;
}
.socials a:hover { background: var(--c-red); }

/* ============================================
   FORMS
   ============================================ */
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--c-text);
}
.field .hint {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 4px;
}
.input, .select, .textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--c-text);
  transition: all 0.15s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--c-purple);
  box-shadow: 0 0 0 3px var(--c-purple-50);
}
.textarea { resize: vertical; min-height: 96px; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a4f66' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.row { display: grid; gap: 14px; }
.row.cols-2 { grid-template-columns: 1fr 1fr; }
.row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

/* i18n field pair */
.bilingual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bilingual .lang-flag {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--c-bg-soft);
  color: var(--c-text-soft);
  letter-spacing: 0.06em;
}
.bilingual .input-wrap, .bilingual .textarea-wrap {
  position: relative;
}

/* ============================================
   CARD
   ============================================ */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
}
.card-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
}
.card-sub {
  font-size: 14px;
  color: var(--c-text-soft);
  margin: 0 0 20px;
}

/* ============================================
   Misc
   ============================================ */
.divider {
  height: 1px;
  background: var(--c-border);
  margin: 24px 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: var(--c-bg-soft);
  color: var(--c-text);
}
.chip.red { background: var(--c-red-50); color: var(--c-red-700); }
.chip.purple { background: var(--c-purple-50); color: var(--c-purple); }
.chip.green { background: #e8f7ee; color: #1f7a3d; }
.chip.yellow { background: #fff4d6; color: #8a5b00; }

/* Edit-mode hint */
.editable-hint {
  outline: 1px dashed rgba(99, 42, 150, 0.25);
  outline-offset: 4px;
  position: relative;
}
.editable-hint::before {
  content: "✎ admin'den düzenlenebilir";
  position: absolute;
  top: -22px;
  left: 0;
  font-size: 10px;
  background: var(--c-purple);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
body.show-cms-hints .editable-hint::before { opacity: 1; }

/* ============================================
   PARTNER LOGOS — SLIDING STRIP
   Black & white by default, color on hover
   ============================================ */
.partners-section {
  padding: 56px 0;
  background-color: rgba(255,255,255,0.72);
  background-image: var(--surface-pattern);
  background-size: var(--surface-pattern-size);
  overflow: hidden;
}
.partners-section .section-eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 8px;
}
.partners-section h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 32px;
  color: var(--c-text);
  letter-spacing: -0.01em;
}
.partners-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.partners-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: partnersScroll 32s linear infinite;
  padding: 12px 0;
}
.partners-section:hover .partners-track {
  animation-play-state: paused;
}
@keyframes partnersScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.partner-logo {
  flex-shrink: 0;
  height: 80px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: all 0.3s ease;
}
.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.85);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.partner-logo:hover {
  border-color: var(--c-purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.partner-logo:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

/* ============================================
   CATEGORY DROPDOWN
   ============================================ */
.cat-item {
  position: relative;
}
.cat-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 340px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.18s ease;
  z-index: 30;
}
.cat-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #fff;
  border-top: 1px solid var(--c-border);
  border-left: 1px solid var(--c-border);
}
.cat-item.open .cat-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cat-item:first-child .cat-dropdown {
  left: 32px;
  transform: translateY(8px);
}
.cat-item:first-child.open .cat-dropdown {
  transform: translateY(0);
}
.cat-item:first-child .cat-dropdown::before {
  left: 58px;
}
.cat-item:last-child .cat-dropdown {
  left: auto;
  right: 0;
  transform: translateY(8px);
}
.cat-item:last-child.open .cat-dropdown {
  transform: translateY(0);
}
.cat-item:last-child .cat-dropdown::before {
  left: auto;
  right: 90px;
}
.cat-dropdown h4 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-right: 32px;
}
.cat-dropdown-close {
  position: absolute;
  top: -8px;
  right: -4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  color: var(--c-text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  border: none;
  transition: all 0.15s;
}
.cat-dropdown-close:hover {
  background: var(--c-red);
  color: #fff;
  transform: rotate(90deg);
}
.cat-dropdown h4 .count {
  background: var(--c-red-50);
  color: var(--c-red);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
}
.cat-channel-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  max-height: 280px;
  overflow-y: auto;
}
.cat-channel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text);
  transition: background 0.15s;
  cursor: pointer;
}
.cat-channel:hover {
  background: var(--c-bg-soft);
}
.cat-channel .logo {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: var(--c-purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: -0.02em;
  overflow: hidden;
}
.cat-channel .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cat-dropdown-foot {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
  text-align: center;
}
.cat-dropdown-foot a {
  font-size: 12px;
  color: var(--c-purple);
  font-weight: 600;
}

/* ============================================
   CAPTCHA WIDGET
   ============================================ */
.captcha-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fafbfc;
  border: 1px solid #d3d3d3;
  border-radius: 6px;
  margin: 16px 0;
  max-width: 340px;
}
.captcha-checkbox {
  width: 26px;
  height: 26px;
  border: 2px solid #c1c1c1;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  background: #fff;
  flex-shrink: 0;
  transition: all 0.2s;
}
.captcha-checkbox.checked {
  background: #0aa14e;
  border-color: #0aa14e;
}
.captcha-checkbox.checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 8px;
  height: 14px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.captcha-checkbox.loading {
  border: 3px solid #e4e4e4;
  border-top-color: #1a73e8;
  animation: spin 0.8s linear infinite;
  border-radius: 50%;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.captcha-label {
  flex: 1;
  font-size: 14px;
  color: var(--c-text);
}
.captcha-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  opacity: 0.7;
}
.captcha-brand svg { width: 28px; height: 28px; }
.captcha-brand .b-text {
  font-size: 9px;
  color: #555;
  font-weight: 500;
}
.captcha-brand .b-links {
  font-size: 7px;
  color: #888;
}
@media (max-width: 1280px) {
  .header-inner { gap: 20px; }
  .main-nav a { padding: 10px 10px; font-size: 13px; }
  .header-actions .contact-link { display: none; }
}
@media (max-width: 1100px) {
  .header-inner { gap: 12px; }
  .main-nav a { padding: 8px 8px; font-size: 12.5px; }
  .slide-title { font-size: 38px; }
  .promo-grid, .packages-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { gap: 28px; }
  .footer-grid > div:not(.footer-brand) { padding-top: 0; }
  .cat-row { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; padding: 16px; }
  .cat-dropdown { width: 280px; }
  .cat-channel-list { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .main-nav { display: none; }
  .header-inner { gap: 16px; height: 64px; }
  .header-actions { margin-left: auto; }
  .topbar-inner { font-size: 12px; }
  .audience-toggle button { padding: 0 10px; font-size: 12px; }
  .audience-toggle button:first-child { padding-left: 0; }
  .slider {
    height: auto;
    aspect-ratio: 1920/800;
    max-height: 460px;
  }
  .slide { padding: 32px 32px; }
  .slide-title { font-size: 30px; }
  .slide-visual { display: none; }
  .slide-content { max-width: 100%; }
}
@media (max-width: 720px) {
  body {
    background-attachment: scroll;
  }

  .container { padding: 0 16px; }
  /* Mobilde slider cervevesi resim oranina uyar: 1920x800 (16:6.67) */
  .slider {
    height: auto;
    aspect-ratio: 16/9;
    min-height: 220px;
    border-radius: var(--radius-lg);
  }
  /* Mobilde, yazi olmayan slide'lar tam resim icin ek alana ihtiyac duymaz */
  .slide { padding: 20px 16px; }
  .slide.slide-no-text { padding: 0; }
  .slide-no-text .slide-bg { background-size: cover; }
  .slide-title { font-size: 22px; line-height: 1.15; }
  .slide-desc { font-size: 13px; margin-bottom: 16px; }
  .slide-actions { flex-direction: column; gap: 8px; }
  .slide-actions .btn { width: 100%; }
  .slide-eyebrow { font-size: 10px; margin-bottom: 12px; padding: 4px 9px; }
  .promo-grid, .footer-grid { grid-template-columns: 1fr; }
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .cat-row { grid-template-columns: repeat(2, 1fr); }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 10px;
    border-radius: 14px;
    background: var(--c-border);
    box-shadow: var(--shadow-sm);
  }
  .stat {
    border-right: 0;
    padding: 14px 10px;
    border-radius: 10px;
    background: rgba(255,255,255,.88);
  }
  .stat-value { font-size: 26px; }
  .stat-label {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.25;
  }
  .section { padding: 40px 0; }
  .section-head h2 { font-size: 24px; }
  .section-head p { font-size: 15px; }

  .pkg-card {
    align-items: center;
    text-align: center;
    padding: 14px 10px;
    border-radius: 12px;
  }
  .pkg-badge {
    position: static;
    align-self: center;
    margin: 0 0 8px;
    padding: 4px 9px;
    font-size: 10px;
  }
  .pkg-tier {
    font-size: 11px;
    margin-bottom: 3px;
  }
  .pkg-name {
    font-size: 16px;
    margin-bottom: 3px;
    padding-right: 0;
  }
  .pkg-sub {
    font-size: 11.5px;
    line-height: 1.35;
    margin-bottom: 12px;
  }
  .pkg-price {
    justify-content: center;
    margin-bottom: 14px;
    padding-bottom: 12px;
    width: 100%;
  }
  .pkg-price .currency { font-size: 14px; }
  .pkg-price .amount { font-size: 24px; }
  .pkg-price .period {
    font-size: 10.5px;
    margin-left: 0;
  }
  .pkg-features {
    width: 100%;
    margin-bottom: 14px;
  }
  .pkg-features li {
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 4px 0;
    font-size: 10.8px;
    line-height: 1.25;
  }
  .pkg-features li svg {
    width: 15px;
    height: 15px;
  }
  .pkg-card .btn {
    width: 100%;
    min-height: 36px;
    padding: 9px 8px;
    font-size: 11.5px;
  }

  .header { position: relative; }
  .topbar-inner { flex-direction: row; gap: 8px; height: auto; padding: 6px 0; }
  .header-actions { gap: 8px; margin-left: auto; }
  .header-actions .btn { padding: 8px 14px; font-size: 13px; }

  /* Footer mobil ayarlari asagida ki ozel blokta */
  .partner-logo { width: 130px; height: 60px; padding: 8px 12px; }
  .partners-track { gap: 24px; }

  /* Category dropdown becomes full-width */
  .cat-dropdown {
    position: fixed;
    top: auto;
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    transform: none;
    max-height: 70vh;
    overflow-y: auto;
  }
  .cat-dropdown::before { display: none; }
  .cat-item.open .cat-dropdown { transform: none; }
}
@media (max-width: 480px) {
  .slide-title { font-size: 22px; }
  .pkg-price .amount { font-size: 23px; }
  .stat-value { font-size: 24px; }
  .section-head h2 { font-size: 22px; }
}

/* ============================================
   FOOTER — Modern compact mobile
   ============================================ */
@media (max-width: 720px) {
  .footer {
    padding: 20px 0 12px;
    background: var(--c-purple-deep);
  }
  .footer .container { padding: 0 18px; }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* Brand satiri: tam genislik, logo + telefon yan yana */
  .footer-grid > .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 4px;
  }
  .footer .brand { gap: 0; }
  .footer .brand-img {
    height: 44px !important;
    max-width: 120px;
    object-fit: contain;
  }
  .footer .contact-line {
    margin: 0;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    gap: 6px;
  }
  .footer-brand p { display: none; }
  .footer .socials { display: none; }

  /* 3-kolonlu link gridi: Kurumsal / Destek / Yasal */
  .footer-grid > div:not(.footer-brand) {
    min-width: 0;
  }
  .footer h4 {
    font-size: 11px;
    margin: 0 0 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
  }
  .footer-links { gap: 4px; padding: 0; margin: 0; list-style: none; }
  .footer-links li { line-height: 1.3; }
  .footer-links a,
  .footer-links li {
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255,255,255,0.85);
    word-break: break-word;
  }

  /* Iletisim sutunu: tam genislik en altta */
  .footer-grid > div:nth-child(5) {
    grid-column: 1 / -1;
    padding-top: 4px;
  }
  .footer-grid > div:nth-child(5) .footer-links li {
    font-size: 11.5px;
    color: rgba(255,255,255,0.65);
  }

  .footer-bottom {
    padding-top: 10px;
    gap: 4px;
    font-size: 11px;
    line-height: 1.35;
    flex-direction: column;
    text-align: center;
    color: rgba(255,255,255,0.55);
  }
  .footer-bottom .legal { display: none; }
}

/* Cok kucuk ekranlar */
@media (max-width: 420px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .footer-grid > .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-grid > div:nth-child(5) {
    grid-column: 1 / -1;
  }
}

/* ============================================
   AUSTRIA MAP — canli izleme noktalari (nabiz)
   ============================================ */
.loc-pulse {
  fill: #e51735;
  opacity: 0.55;
  transform-origin: center;
  transform-box: fill-box;
  animation: locPulse 1.8s ease-out infinite;
}
.loc-dot-g:nth-child(2) .loc-pulse { animation-delay: .4s; }
.loc-dot-g:nth-child(3) .loc-pulse { animation-delay: .8s; }
.loc-dot-g:nth-child(4) .loc-pulse { animation-delay: 1.2s; }
.loc-dot-g:nth-child(5) .loc-pulse { animation-delay: 1.6s; }
.loc-core {
  fill: #e51735;
  stroke: #fff;
  stroke-width: 3;
  filter: drop-shadow(0 2px 6px rgba(229,23,53,0.5));
}
@keyframes locPulse {
  0%   { transform: scale(0.6); opacity: 0.7; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* "Canli yayinda" rozetinin yanindaki kucuk nabiz */
.loc-live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e51735;
  box-shadow: 0 0 0 0 rgba(229,23,53,0.6);
  animation: locLiveDot 1.6s infinite;
}
@keyframes locLiveDot {
  0%   { box-shadow: 0 0 0 0 rgba(229,23,53,0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(229,23,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(229,23,53,0); }
}

/* Touch device — taps instead of hovers */
@media (hover: none) {
  .partner-logo img {
    filter: grayscale(0) brightness(1);
    opacity: 0.85;
  }
}

/* Locations preview card responsive */
@media (max-width: 900px) {
  .loc-preview-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .loc-map-card { aspect-ratio: 16 / 10 !important; min-height: 240px; }
  .loc-preview-copy {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
  }
  .loc-preview-actions,
  .loc-preview-stats {
    justify-content: center;
  }
}
@media (max-width: 720px) {
  .loc-map-card { aspect-ratio: 4 / 3 !important; }
  .loc-map-cta { padding: 8px 12px !important; font-size: 12px !important; }
  .loc-preview-copy h2 {
    font-size: 26px !important;
  }
  .loc-preview-copy p {
    font-size: 14px !important;
    margin-bottom: 18px !important;
  }
  .loc-preview-stats {
    gap: 18px !important;
    margin-top: 22px !important;
  }
}
