/* ============================================
   GOLDEN VIEW — Design System
   Inspirace: Andalusie / Costa del Sol
============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Barvy */
  --c-bg:           #F4EFE6;   /* písčitý krém */
  --c-surface:      #FFFFFF;
  --c-surface-2:    #FBF7F0;
  --c-ink:          #11243B;   /* hluboká námořní */
  --c-ink-soft:     #475A70;
  --c-muted:        #8A95A3;
  --c-line:         #E6DFD2;
  --c-primary:      #11243B;
  --c-accent:       #D4943C;   /* andaluské zlato */
  --c-accent-soft:  #FBEFD7;
  --c-accent-deep:  #9C6B22;
  --c-sea:          #2F6E8F;
  --c-success:      #2E8B6A;
  --c-danger:       #B65A47;

  /* Stíny */
  --shadow-sm:  0 1px 2px rgba(17, 36, 59, .06);
  --shadow-md:  0 6px 20px rgba(17, 36, 59, .08);
  --shadow-lg:  0 18px 40px rgba(17, 36, 59, .12);

  /* Rádiusy */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
}

html, body { background: var(--c-bg); color: var(--c-ink); }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--c-accent-deep); }

/* ============================================
   NAVIGACE (top na desktopu, bottom na mobilu)
============================================ */

header {
  background: var(--c-surface);
  padding: 14px 24px;
  border-bottom: 1px solid var(--c-line);
}

nav {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-icon {
  display: none;
  color: var(--c-muted);
  font-size: 1.35em;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.nav-icon small {
  font-size: 0.6rem;
  display: block;
  font-weight: 600;
  letter-spacing: 0.02em;
}

nav a {
  color: var(--c-ink-soft);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s, background 0.2s;
}

nav a:hover {
  color: var(--c-primary);
  background: var(--c-bg);
}

nav a.active {
  color: var(--c-primary);
  background: var(--c-accent-soft);
}

/* ============================================
   MAIN
============================================ */

main {
  flex: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 18px 40px;
  width: 100%;
}

main h2 {
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-weight: 700;
}

main h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  font-weight: 700;
}

main h4 {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  font-weight: 700;
}

main p {
  color: var(--c-ink-soft);
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
}

main ol, main ul {
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
  color: var(--c-ink-soft);
}

main li { margin-bottom: 0.5rem; }

/* Title row (h2 + help/icon button on home) */
.title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.title-row h2 { margin-bottom: 0; }

.btn.btn-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: var(--c-surface);
  border: 0;
  box-shadow: var(--shadow-sm);
  color: var(--c-ink);
}

/* ============================================
   HUB HERO (gradientový pruh nad rozcestníkem)
============================================ */

.hub-hero {
  margin: -22px -18px 18px;
  padding: 56px 22px 26px;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  color: #fff;
  position: relative;
  box-shadow: var(--shadow-md);
}

.hub-hero .hub-hero-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: #fff;
}

.hub-hero h1 {
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 4px;
  color: #fff;
}

.hub-hero p {
  color: rgba(255,255,255,.88);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 600px) {
  .hub-hero {
    margin: -14px -14px 16px;
    padding: 46px 18px 22px;
    border-radius: 0 0 var(--r-md) var(--r-md);
  }
  .hub-hero h1 { font-size: 1.55rem; }
}

/* ============================================
   PAGE HEAD (hub & list pages)
============================================ */

.page-head {
  margin-bottom: 16px;
}

.page-head h1 {
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 6px;
  font-weight: 700;
}

.page-head p {
  color: var(--c-ink-soft);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================================
   BREADCRUMB
============================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--c-ink-soft);
  text-decoration: none;
  font-weight: 600;
}

/* Circle back button: only when the first link contains just an icon */
.breadcrumb a:first-child:has(> i:only-child) {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--c-ink);
  flex-shrink: 0;
  font-size: 0.78rem;
}

.breadcrumb span { color: var(--c-line); }

.breadcrumb strong {
  color: var(--c-ink);
  font-weight: 700;
}

/* ============================================
   IMAGES & MAPS
============================================ */

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 18px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

img.img-half {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 600px) {
  img.img-half { width: 50%; }
}

iframe {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

#golfMap,
#plazeMap,
#mistaMap,
#restauraceMap,
#potravinyMap,
#obchodyGolfMap,
#obchodyRuzneMap,
#padelMap {
  width: 100%;
  height: 480px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 8px;
}

/* ============================================
   DETAIL ROW (rating + lokalita on golf)
============================================ */

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 6px 0 14px;
  gap: 12px;
}

.rating {
  color: var(--c-accent-deep);
  font-size: 1.4rem;
  font-weight: 700;
}

.lokalita {
  color: var(--c-ink);
  font-weight: 700;
  font-size: 1rem;
}

/* ============================================
   ACTION BUTTONS (Web/Email/Call cards)
============================================ */

.action-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 8px;
  margin: 16px 0;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  background: var(--c-surface);
  color: var(--c-ink);
  text-decoration: none;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.78rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.action-btn i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

/* ============================================
   MAP BUTTONS (Google Maps + Waze)
============================================ */

.map-buttons {
  display: flex;
  gap: 10px;
  margin: 12px 0 0;
}

/* ============================================
   GENERAL BTN (.btn)
============================================ */

.btn {
  flex: 1;
  text-align: center;
  padding: 13px 14px;
  background: var(--c-surface);
  color: var(--c-ink);
  text-decoration: none;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

/* ============================================
   BTN SHARE / BACK
============================================ */

.btn-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--c-primary);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  box-shadow: var(--shadow-md);
}

/* ============================================
   SEARCH (na list stránkách)
============================================ */

.search-row {
  display: flex;
  margin: 14px 0 4px;
}

.search-input {
  flex: 1;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  font-size: 0.95rem;
  outline: none;
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
  color: var(--c-ink);
}

.search-input::placeholder { color: var(--c-muted); }

/* ============================================
   MENU LIST (rozcestník/seznam)
============================================ */

.menu-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  background: var(--c-surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.menu-list li + li {
  border-top: 1px solid var(--c-line);
}

.menu-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--c-ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.menu-list a > i.fa-chevron-right {
  color: var(--c-muted);
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* Variant: with icon + label-with-subtitle */
.menu-list a .ic {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.menu-list a .lbl {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.menu-list a .lbl small {
  display: block;
  color: var(--c-muted);
  font-weight: 500;
  font-size: 0.76rem;
}

/* ============================================
   HOMEPAGE — HERO
============================================ */

.hero {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #11243B, #2F6E8F);
  box-shadow: var(--shadow-md);
  margin-bottom: 18px;
}

@media (min-width: 720px) {
  .hero { aspect-ratio: 16/9; }
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,36,59,0) 35%, rgba(17,36,59,.85) 100%);
}

.hero-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #fff;
}

.hero-content .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  color: #fff;
}

.hero-content h1 {
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.hero-content p {
  opacity: .85;
  font-size: 0.92rem;
  margin: 6px 0 0;
  color: #fff;
}

.hero-help {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink);
  text-decoration: none;
  z-index: 3;
  font-size: 1rem;
}

/* ============================================
   HOMEPAGE — SECTION CARDS
============================================ */

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 22px 0 10px;
}

.section-title h2 {
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin: 0;
}

.section-title a {
  color: var(--c-accent-deep);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.home-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (min-width: 720px) {
  .home-cards { grid-template-columns: repeat(4, 1fr); }
}

.home-card {
  background: var(--c-surface);
  border-radius: var(--r-md);
  padding: 16px;
  text-decoration: none;
  color: var(--c-ink);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 130px;
}

.home-card .home-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.home-card.c1 .home-card-icon { background: #FBEFD7; color: #D4943C; }
.home-card.c2 .home-card-icon { background: #DDEBF1; color: #2F6E8F; }
.home-card.c3 .home-card-icon { background: #E5EFE9; color: #2E8B6A; }
.home-card.c4 .home-card-icon { background: #F5E1DA; color: #B65A47; }

.home-card strong {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.home-card small {
  color: var(--c-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

/* ============================================
   ROZCESTNÍK — IMAGE CARD GRID (Aktivity)
============================================ */

.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0 0;
}

@media (min-width: 720px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1000px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
}

.cat-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
  background: #11243B;
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,36,59,0) 35%, rgba(17,36,59,.85) 100%);
  z-index: 1;
}

.cat-card .label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1rem;
}

.cat-card .label small {
  display: block;
  font-weight: 500;
  opacity: .85;
  font-size: 0.74rem;
  margin-top: 2px;
}

/* ============================================
   MOBILE — BOTTOM NAV (floating pill)
============================================ */

@media (max-width: 600px) {
  body {
    padding-bottom: 90px;
  }

  header {
    order: 2;
    background: transparent;
    border: 0;
    padding: 0;
    position: fixed;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 100;
  }

  main {
    order: 1;
    padding: 14px 14px 30px;
  }

  nav {
    width: 100%;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 8px 6px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(17,36,59,.06);
  }

  nav ul {
    justify-content: space-around;
    gap: 0;
    width: 100%;
  }

  nav ul li {
    flex: 1;
    text-align: center;
  }

  nav a {
    padding: 6px 4px;
    background: transparent;
    border-radius: 14px;
    position: relative;
  }

  nav a:hover { background: transparent; }
  nav a.active { background: transparent; }

  .nav-text { display: none; }

  .nav-icon {
    display: flex;
    color: var(--c-muted);
  }

  nav a.active .nav-icon { color: var(--c-primary); }
  nav a.active .nav-icon i { color: var(--c-accent); }

  nav a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--c-accent);
  }

  .breadcrumb {
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.82rem;
  }

  .breadcrumb a,
  .breadcrumb span,
  .breadcrumb strong {
    white-space: nowrap;
  }

  iframe { height: 320px; }

  #golfMap,
  #plazeMap,
  #mistaMap,
  #restauraceMap,
  #potravinyMap,
  #obchodyGolfMap,
  #obchodyRuzneMap,
  #padelMap {
    height: 360px;
  }

  main h2 { font-size: 1.4rem; }

  .hero-content h1 { font-size: 1.55rem; }

  .page-head h1 { font-size: 1.55rem; }
}

/* ============================================
   LIST PAGE — CHIPS, PLACE CARDS
============================================ */

.chips {
  display: flex;
  gap: 8px;
  margin: 12px 0 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.chips::-webkit-scrollbar { display: none; }

.chip {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--c-surface);
  color: var(--c-ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--c-line);
  cursor: pointer;
  text-decoration: none;
}

.chip.active {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

.place-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.place-list li { margin: 0; }

.place {
  background: var(--c-surface);
  border-radius: var(--r-md);
  padding: 10px;
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: var(--c-ink);
  box-shadow: var(--shadow-sm);
  align-items: center;
}

.place .thumb {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  margin: 0;
  box-shadow: none;
}

.place .thumb-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  font-size: 1.4rem;
}

.place .info {
  flex: 1;
  min-width: 0;
}

.place .info strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
  font-weight: 700;
}

.place .info .lokalita-row {
  font-size: 0.78rem;
  color: var(--c-ink-soft);
  font-weight: 600;
  margin-top: 2px;
}

.place .info .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--c-muted);
  margin-top: 4px;
}

.place .info .meta .stars {
  color: var(--c-accent);
  font-weight: 700;
}

.place .info .meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--c-line);
}

.place .chev {
  color: var(--c-muted);
  font-size: 0.85rem;
}

/* ============================================
   DETAIL PAGE — HERO + CARD
============================================ */

.detail-hero {
  position: relative;
  margin: -22px -18px 0;
  height: 320px;
  overflow: hidden;
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.detail-hero.no-image {
  height: 200px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-sea) 100%);
}

.detail-hero.no-image .hero-section-icon {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.92);
  gap: 8px;
}

.detail-hero.no-image .hero-section-icon i {
  font-size: 2.4rem;
  opacity: 0.85;
}

.detail-hero.no-image .hero-section-icon span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.detail-hero .back-btn,
.detail-hero .fav-btn {
  position: absolute;
  top: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink);
  text-decoration: none;
  z-index: 4;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.detail-hero .back-btn { left: 18px; }
.detail-hero .fav-btn { right: 18px; }

.detail-card {
  background: var(--c-bg);
  margin: -32px -18px 0;
  padding: 24px 18px 8px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  position: relative;
  z-index: 2;
}

.detail-card.no-hero {
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.detail-card .kategorie {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.detail-card .kategorie i {
  font-size: 0.7rem;
  color: var(--c-muted);
}

.detail-card h1 {
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
  font-weight: 700;
}

.detail-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--c-surface);
  color: var(--c-ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.tag.gold {
  background: var(--c-accent-soft);
  color: var(--c-accent-deep);
}

.tag i { font-size: 0.7rem; }

.detail-card p {
  color: var(--c-ink-soft);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.stat-row {
  display: flex;
  gap: 8px;
  margin: 4px 0 14px;
}

.stat {
  flex: 1;
  background: var(--c-surface);
  border-radius: var(--r-md);
  padding: 10px 12px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.stat small {
  color: var(--c-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat strong {
  display: block;
  font-size: 0.95rem;
  margin-top: 2px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.a-btn {
  background: var(--c-surface);
  padding: 14px 8px;
  border-radius: var(--r-md);
  text-align: center;
  text-decoration: none;
  color: var(--c-ink);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.a-btn i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.nav-cta {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.cta {
  flex: 1;
  padding: 14px;
  border-radius: var(--r-md);
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta.primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.cta.secondary {
  background: var(--c-surface);
  color: var(--c-ink);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 600px) {
  .detail-hero {
    margin: -14px -14px 0;
    height: 260px;
  }
  .detail-card {
    margin: -32px -14px 0;
    padding: 22px 14px 8px;
  }
}

