/* /kocluk — Flutter KoclukScreen twin (pixel parity) */

/* Flutter MaterialIcons — aynı otf + codepoint’ler */
@font-face {
  font-family: "MaterialIcons";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/fonts/MaterialIcons-Regular.otf") format("opentype");
}

.nz-mi {
  font-family: "MaterialIcons", sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
  speak: never;
  user-select: none;
}

:root {
  --kc-primary: #ff7914;
  --kc-ink: #0a0a0a;
  --kc-ink-muted: #4a4a4a;
  --kc-ink-subtle: #8a8a8a;
  --kc-border: #e6e6e6;
  --kc-canvas: #fffbf7;
  --kc-success: #1f8f4d;
  --kc-gold-bg: #fff8e6;
  --kc-gold-border: #e8c96a;
  --kc-gold-ink: #6b4f0a;
  --kc-gold-ico: #c9a227;
}

/* Flutter wedge: fixed while content scrolls */
body > .page-wedge {
  position: fixed;
  top: 0;
  right: 0;
  width: min(48%, 720px);
  height: min(520px, 100vh);
  z-index: 0;
  opacity: 1;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  background:
    radial-gradient(circle, rgba(255, 121, 20, 0.045) 0 1.1px, transparent 1.3px),
    linear-gradient(105deg, var(--kc-canvas) 0%, #fffdf9 32%, #fffcf8 62%, #fff 100%);
  background-size: 28px 28px, 100% 100%;
}
@media (max-width: 899px) {
  body > .page-wedge {
    width: min(70%, 420px);
    height: min(420px, 55vh);
    opacity: 1;
  }
}

.kc-main {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* Flutter: hPad 20/28/32 · top 20 compact / 48+4 · bottom 80/112/96 */
.kc-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 52px 32px 112px;
  box-sizing: border-box;
}

@media (max-width: 899px) {
  .kc-wrap { padding-left: 28px; padding-right: 28px; }
}

@media (max-width: 639px), (max-height: 739px) {
  .kc-wrap { padding: 20px 20px 80px; }
}

@media (min-width: 1080px) {
  .kc-wrap { padding-bottom: 96px; }
}

/* ---------- Hero ---------- */
.kc-hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
}

@media (min-width: 1080px) {
  .kc-hero {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
  .kc-hero-copy { flex: 5; min-width: 0; }
  .kc-hero-media { flex: 6; min-width: 0; }
}

@media (max-width: 1079px) and (min-width: 640px) {
  .kc-hero { gap: 32px; }
}

@media (max-width: 639px) {
  .kc-hero { gap: 24px; }
}

@media (max-width: 639px), (max-height: 739px) {
  .kc-hero { gap: 14px; }
}

.kc-eyebrow {
  margin: 0 0 10px;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--kc-primary);
}

@media (max-width: 639px) {
  .kc-eyebrow { font-size: 10px; }
}

@media (max-width: 639px), (max-height: 739px) {
  .kc-eyebrow { font-size: 9px; margin-bottom: 6px; }
}

.kc-title {
  margin: 0;
  font-family: Poppins, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.6vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--kc-ink);
}

.kc-title .kc-ink {
  color: var(--kc-ink);
  font-style: normal;
}

.kc-title .kc-accent,
.kc-title em {
  font-style: normal;
  color: var(--kc-primary);
}

@media (max-width: 639px), (max-height: 739px) {
  .kc-title { font-size: clamp(21px, 7.8vw, 30px); }
}

.kc-lead {
  margin: 18px 0 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--kc-ink-muted);
}

@media (max-width: 639px) {
  .kc-lead { margin-top: 14px; font-size: 14px; }
}

@media (max-width: 639px), (max-height: 739px) {
  .kc-lead {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.kc-bullets {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.kc-bullets li {
  position: relative;
  padding: 0 0 10px 16px;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--kc-ink-muted);
  line-height: 1.4;
}

.kc-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kc-primary);
}

@media (max-width: 639px) {
  .kc-bullets li { font-size: 13px; }
}

@media (max-width: 639px), (max-height: 739px) {
  .kc-bullets { margin-top: 10px; }
  .kc-bullets li { font-size: 12px; padding-bottom: 6px; }
  .kc-bullets li::before { top: 5px; }
}

@media (max-width: 399px) and (max-height: 739px) {
  .kc-bullets li:nth-child(n + 3) { display: none; }
}

/* Refund gold box */
.kc-refund {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--kc-gold-bg);
  border: 1px solid rgba(232, 201, 106, 0.85);
  box-shadow: 0 3px 10px rgba(232, 201, 106, 0.18);
  overflow: hidden;
  color: var(--kc-gold-ink);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.kc-refund-copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.kc-refund-copy > p {
  display: block !important;
  width: 100%;
  margin: 0 !important;
  float: none !important;
}

.kc-refund::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  width: 28%;
  height: 180%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 45%,
    rgba(255, 255, 255, 0.2) 55%,
    transparent 100%
  );
  transform: translateX(-140%) rotate(-0.35rad);
  animation: kc-shimmer 3.2s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .kc-refund::after { animation: none; display: none; }
}

@keyframes kc-shimmer {
  to { transform: translateX(420%) rotate(-0.35rad); }
}

.kc-refund-ico {
  position: relative;
  z-index: 2;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--kc-gold-ico);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(232, 201, 106, 0.65);
  border-radius: 50%;
  overflow: hidden;
  box-sizing: border-box;
}

.kc-refund-ico .nz-mi {
  font-size: 24px;
  color: var(--kc-gold-ico);
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}

.kc-refund-ico svg {
  width: 24px !important;
  height: 24px !important;
  display: block;
  max-width: 24px;
  max-height: 24px;
}

.kc-refund-line {
  position: relative;
  z-index: 2;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(107, 79, 10, 0.88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kc-refund-gap {
  display: inline-block;
  width: 1.35em;
}

.kc-refund-sub {
  position: relative;
  z-index: 2;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.2px;
  color: var(--kc-gold-ink);
}

@media (max-width: 639px), (max-height: 739px) {
  .kc-refund { margin-top: 8px; padding: 10px 12px; }
  .kc-refund-ico { flex-basis: 36px; width: 36px; height: 36px; }
  .kc-refund-ico .nz-mi { font-size: 20px; width: 20px; height: 20px; line-height: 20px; }
  .kc-refund-ico svg { width: 20px !important; height: 20px !important; max-width: 20px; max-height: 20px; }
  .kc-refund-line { font-size: 11.5px; white-space: normal; }
  .kc-refund-sub { font-size: 13px; }
  .kc-refund-copy { gap: 3px; }
}

.kc-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin-top: 20px;
  font-family: Poppins, system-ui, sans-serif;
}

.kc-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: var(--kc-primary);
  line-height: 1;
  flex-shrink: 0;
}

.kc-stars .nz-mi {
  font-size: 18px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  color: var(--kc-primary);
}

.kc-stars svg {
  width: 18px !important;
  height: 18px !important;
  display: block;
  flex-shrink: 0;
  max-width: 18px;
  max-height: 18px;
}

.kc-rating-score,
.kc-rating strong.kc-rating-score {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--kc-ink);
  line-height: 1;
}

.kc-rating-note {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--kc-ink-muted);
  line-height: 1;
}

@media (max-width: 639px) {
  .kc-stars .nz-mi { font-size: 16px; width: 16px; height: 16px; line-height: 16px; }
  .kc-stars svg { width: 16px !important; height: 16px !important; max-width: 16px; max-height: 16px; }
  .kc-rating-score { font-size: 13px; }
  .kc-rating-note { font-size: 12px; }
}

@media (max-width: 639px), (max-height: 739px) {
  .kc-rating { display: none; }
}

/* NzHeroMediaFrame twin — kapak poster + play, tıklanınca Vimeo */
.kc-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: #0b1220;
  border: 1px solid var(--kc-border);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.kc-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  z-index: 1;
  background: #0b1220;
}

.kc-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 121, 20, 0.2);
  background: rgba(255, 255, 255, 0.94);
  color: var(--kc-primary);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.kc-video-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 12px 32px rgba(255, 121, 20, 0.35);
}

.kc-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
  background: #000;
}

.kc-video.is-playing .kc-video-poster,
.kc-video.is-playing .kc-video-play {
  display: none !important;
}

.kc-video:not(.is-playing) iframe {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.kc-video.is-playing iframe {
  display: block !important;
  visibility: visible !important;
  z-index: 2;
}

@media (max-width: 639px), (max-height: 739px) {
  .kc-video {
    border-radius: 18px;
    aspect-ratio: 16 / 9;
  }
  .kc-video-play {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 359px) {
  .kc-video {
    aspect-ratio: 16 / 9;
  }
}

/* ---------- Spacers / divider ---------- */
.kc-spacer { height: 56px; }

@media (max-width: 639px), (max-height: 739px) {
  .kc-spacer { height: 22px; }
}

.kc-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 0;
}

.kc-divider::before,
.kc-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--kc-border), transparent);
}

.kc-divider span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 121, 20, 0.55);
  box-shadow: 0 0 8px rgba(255, 121, 20, 0.28);
  flex-shrink: 0;
}

/* ---------- Stats ---------- */
.kc-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.kc-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--kc-border);
  min-width: 0;
  box-sizing: border-box;
  transition: background 0.28s cubic-bezier(0.65, 0, 0.35, 1),
    border-color 0.28s cubic-bezier(0.65, 0, 0.35, 1),
    box-shadow 0.28s cubic-bezier(0.65, 0, 0.35, 1);
}

.kc-stat:hover {
  background: var(--kc-canvas);
  border-color: rgba(255, 121, 20, 0.35);
  box-shadow: 0 8px 18px rgba(255, 121, 20, 0.08);
}

.kc-stat-ico {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 121, 20, 0.1);
  color: var(--kc-primary);
  overflow: hidden;
  box-sizing: border-box;
}

.kc-stat-ico .nz-mi {
  font-size: 22px;
  color: var(--kc-primary);
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
}

.kc-stat-ico svg {
  width: 22px !important;
  height: 22px !important;
  display: block;
  max-width: 22px;
  max-height: 22px;
}

.kc-stat-text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.kc-stat-value {
  display: block;
  margin: 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: var(--kc-ink);
}

.kc-stat-label {
  display: block;
  margin: 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--kc-ink-muted);
  line-height: 1.3;
}

@media (max-width: 719px) {
  .kc-stats {
    display: flex;
    gap: 0;
    padding: 12px 8px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--kc-border);
  }
  .kc-stat {
    position: relative;
    flex: 1 1 0;
    flex-direction: column;
    text-align: center;
    gap: 0;
    padding: 0 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .kc-stat:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }
  .kc-stat + .kc-stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--kc-border);
  }
  .kc-stat-ico {
    display: none !important;
  }
  .kc-stat-text {
    align-items: center;
    gap: 4px;
  }
  .kc-stat-value { font-size: 17px; }
  .kc-stat-label {
    font-size: 10.5px;
    max-width: 100%;
  }
}

@media (max-width: 379px) {
  .kc-stats { padding: 10px 4px; }
  .kc-stat { padding: 0 3px; }
  .kc-stat + .kc-stat::before { height: 34px; }
  .kc-stat-value { font-size: 15px; }
  .kc-stat-label { font-size: 9.5px; }
}

/* ---------- Catalog head ---------- */
.kc-catalog-head {
  margin-top: 32px;
  margin-bottom: 28px;
  text-align: left;
}

@media (max-width: 639px), (max-height: 739px) {
  .kc-catalog-head {
    margin-top: 18px;
    margin-bottom: 14px;
  }
}

.kc-catalog-title {
  margin: 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: var(--kc-ink);
}

.kc-catalog-title em {
  font-style: normal;
  color: var(--kc-primary);
}

.kc-catalog-sub {
  margin: 8px 0 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.15px;
  line-height: 1.25;
  color: var(--kc-ink-muted);
}

@media (max-width: 899px) {
  .kc-catalog-title { font-size: 32px; }
}
@media (max-width: 639px) {
  .kc-catalog-title { font-size: 26px; }
  .kc-catalog-sub { font-size: 13.5px; }
}
@media (max-width: 479px) {
  .kc-catalog-title { font-size: 24px; }
}

/* NzSlidingPillSegmentedControl — reuse home .seg-picker tokens */
#kc-seg.seg-picker {
  display: none;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 10px;
}

@media (max-width: 799px) {
  #kc-seg.seg-picker:not([hidden]) {
    display: flex !important;
  }
}

/* home.css hides .seg-picker ≥720 — keep hub picker to 799 */
@media (min-width: 720px) and (max-width: 799px) {
  #kc-seg.seg-picker:not([hidden]) {
    display: flex !important;
  }
}

#kc-seg[hidden] {
  display: none !important;
}

/* ---------- Grid / cards (hub overrides on home.css) ---------- */
#kc-grid.card-grid {
  width: 100%;
  display: grid;
  gap: 20px;
  align-items: stretch;
}

#kc-grid.card-grid[data-cols="1"] { grid-template-columns: 1fr; }
#kc-grid.card-grid[data-cols="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
#kc-grid.card-grid[data-cols="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Flutter hub hover lift −5 */
@media (hover: hover) and (pointer: fine) {
  #kc-grid .coach-card {
    transition: transform 0.28s cubic-bezier(0.65, 0, 0.35, 1),
      box-shadow 0.28s cubic-bezier(0.65, 0, 0.35, 1),
      border-color 0.28s cubic-bezier(0.65, 0, 0.35, 1);
  }
  #kc-grid .coach-card:hover {
    transform: translateY(-5px) scale(1.006);
  }
}

#kc-grid .disc-badge { color: #b45309; }
#kc-grid .feat-list li { font-size: 12.5px; }
#kc-grid .return-line { color: #8a8a8a; }
#kc-grid .feat-list li.feat-pad {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}

/* Hub compact mobile card (compactHubLayout) */
@media (max-width: 799px) {
  #kc-grid .coach-card {
    border-radius: 24px;
  }
  #kc-grid .coach-card .body {
    padding: 10px 14px 12px;
  }
  #kc-grid .coach-card h3 {
    margin: 0 0 6px;
    font-size: 17px;
  }
  #kc-grid .coach-card .media {
    aspect-ratio: 2.1 / 1;
    margin-bottom: 8px;
  }
  #kc-grid .media-play {
    width: 38px;
    height: 38px;
  }
  #kc-grid .media-play svg {
    width: 20px;
    height: 20px;
  }
  #kc-grid .price {
    font-size: 24px;
  }
  #kc-grid .price-old {
    font-size: 15px;
  }
  #kc-grid .coach-card .cta-slot {
    margin-top: 6px;
    margin-bottom: 6px;
  }
  #kc-grid .pay-chip {
    margin-top: 4px;
  }
  #kc-grid .feat-block {
    max-height: 156px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #kc-grid .card-foot {
    margin-top: 4px;
  }
}

@media (max-width: 359px) {
  #kc-grid .coach-card .body { padding: 10px; }
  #kc-grid .coach-card .media { aspect-ratio: 2.35 / 1; }
  #kc-grid .feat-block { max-height: 132px; }
}

/* Install pulse twin */
@keyframes kc-install-pulse {
  from {
    border-color: rgba(255, 121, 20, 0.35);
    box-shadow: 0 0 6px rgba(255, 121, 20, 0.08);
  }
  to {
    border-color: rgba(255, 121, 20, 0.8);
    box-shadow: 0 0 14px rgba(255, 121, 20, 0.22);
  }
}

@media (hover: hover) and (pointer: fine) {
  #kc-grid .install-chip {
    animation: kc-install-pulse 2.2s ease-in-out infinite alternate;
  }
}

@media (prefers-reduced-motion: reduce) {
  #kc-grid .install-chip { animation: none; }
  #kc-grid .coach-card { transition: none; }
  #kc-grid .coach-card:hover { transform: none; }
}

.kc-loading {
  grid-column: 1 / -1;
  min-height: 580px;
  display: grid;
  place-items: center;
}

@media (min-width: 800px) {
  .kc-loading { min-height: 1600px; }
}

.kc-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 121, 20, 0.2);
  border-top-color: var(--kc-primary);
  border-radius: 50%;
  animation: kc-spin 0.8s linear infinite;
}

@keyframes kc-spin {
  to { transform: rotate(360deg); }
}

.kc-empty-card,
.kc-error-card {
  grid-column: 1 / -1;
  max-width: 480px;
  margin: 24px auto 0;
  padding: 48px 24px;
  text-align: center;
  font-family: Poppins, system-ui, sans-serif;
  background: #fff;
  border: 1px solid var(--kc-border);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.kc-empty {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--kc-ink);
}

.kc-error {
  margin-top: 24px;
}

.kc-error[hidden] { display: none !important; }

.kc-error-card p {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--kc-ink);
}

.kc-error-sub {
  font-size: 12.5px !important;
  font-weight: 500 !important;
  color: var(--kc-ink-muted) !important;
}

.kc-retry {
  margin-top: 20px;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--kc-primary);
  font-family: Poppins, system-ui, sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: -0.15px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.kc-retry:hover {
  background: rgba(255, 121, 20, 0.08);
}

.kc-error-ico,
.kc-empty-ico {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--kc-ink-subtle);
}


/* Safety: prevent SVG blow-ups from home.css */
.kc-main svg { max-width: 100%; }
.kc-stat-ico svg,
.kc-refund-ico svg,
.kc-stars svg { flex-shrink: 0; }
.kc-hero-media { min-width: 0; overflow: hidden; }
.kc-hero-copy { min-width: 0; }
.site-header { z-index: 50; }
body > .page-wedge { z-index: 0; pointer-events: none; }
.kc-main, .site-footer { position: relative; z-index: 1; }


/* ---- Flutter MaterialIcons on package cards ---- */
#kc-grid .pay-chip .nz-mi.pay-ico,
#kc-grid .pay-chip .pay-ico {
  font-family: "MaterialIcons", sans-serif;
  font-size: 14px;
  width: 14px;
  height: 14px;
  line-height: 14px;
  color: var(--kc-ink-muted);
  flex-shrink: 0;
}

/* aspect-ratio kutuda height:%100 img bazen 0 kalır — absolute fill */
#kc-grid .coach-card .media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#kc-grid .media-play {
  display: grid;
  place-items: center;
}

#kc-grid .media-play .media-play-ico,
#kc-grid .media-play .nz-mi {
  font-family: "MaterialIcons", sans-serif;
  font-size: 28px;
  color: #fff;
  line-height: 1;
  width: auto;
  height: auto;
}

@media (max-width: 799px) {
  #kc-grid .media-play .media-play-ico,
  #kc-grid .media-play .nz-mi {
    font-size: 22px;
  }
}

#kc-grid .install-chip .nz-mi {
  font-size: 17px;
  line-height: 1;
  color: inherit;
  flex-shrink: 0;
}

/* Flutter check_rounded / close_rounded */
#kc-grid .feat-list li::before {
  background-color: rgba(31, 143, 77, 0.12) !important;
  background-image: none !important;
  display: grid !important;
  place-items: center;
  font-family: "MaterialIcons", sans-serif;
  content: "\f636" !important;
  color: #1f8f4d;
  font-size: 16px;
  line-height: 1;
}

#kc-grid .feat-list li.neg::before {
  background-color: rgba(239, 68, 68, 0.1) !important;
  background-image: none !important;
  content: "\f647" !important;
  color: #f87171;
  font-size: 16px;
}

#kc-grid .cta-slot .btn-arrow {
  font-family: "MaterialIcons", sans-serif;
  font-size: 20px;
  line-height: 1;
  width: 20px;
  height: 20px;
  display: inline-block;
  flex-shrink: 0;
}
