/* ═══════════════════════════════════════════════
   TEMPLE GIRL KIDS — Home (matches reference mockup)
   Scoped under .home-page
   ═══════════════════════════════════════════════ */

.home-page {
  --dark: #1C0A00;
  --dark-brown: #2A1508;
  --brown: #3D1E0F;
  --amber: #E8722A;
  --amber-light: #F59E4B;
  --gold: #C8956C;
  --cream: #FFF8F0;
  --text-light: #F5E6D8;
  --text-muted: #A89080;
  --text-dark: #2A1508;

  font-family: 'Nunito', sans-serif;
  color: var(--text-light);
  background: var(--dark);
}

.home-page h1,
.home-page h2,
.home-page h3 {
  font-family: 'Rozha One', serif;
  font-weight: 400;
}

.home-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav on home */
.home-page nav.top-nav {
  background: rgba(28, 10, 0, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 149, 108, 0.1);
}
.home-page .top-nav-links a {
  color: var(--gold);
  font-weight: 600;
}
.home-page .top-nav-links a:hover,
.home-page .top-nav-links a.active {
  color: var(--amber);
}
.home-page .logo-text {
  font-family: 'Rozha One', serif;
  color: var(--cream);
}

/* Footer on home */
.home-page .tg-main-footer {
  background: var(--dark);
  border-top: 1px solid rgba(200, 149, 108, 0.1);
}
.home-page .tg-main-footer-logo {
  font-family: 'Rozha One', serif;
}
.home-page .tg-main-footer-links a {
  color: var(--gold);
}
.home-page .tg-main-footer-links a:hover {
  color: var(--amber);
}
.home-page .tg-main-footer-copy {
  color: var(--text-muted);
}

/* Subscribe button */
.home-page .btn-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232, 114, 42, 0.3);
}
.home-page .btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 114, 42, 0.4);
}

/* Store badges */
.home-page .store-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.home-page .store-badges--center {
  justify-content: center;
  margin-top: 20px;
}
.home-page .store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  text-decoration: none;
  line-height: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.home-page .store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.home-page .store-badge-img {
  width: auto;
  display: block;
}
.home-page .store-badge-img--apple {
  height: 40px;
}
.home-page .store-badge-img--google {
  height: 56px;
}

/* ── Hero ───────────────────────────────────────── */
.home-page .hero {
  padding: 32px 0 64px;
  position: relative;
  overflow: hidden;
}
.home-page nav.top-nav {
  padding-bottom: 0;
}
.home-page .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232, 114, 42, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.home-page .hero .container {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.home-page .hero-content {
  flex: 1;
}
.home-page .hero-visual {
  flex: 0 0 380px;
}
.home-page .hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(232, 114, 42, 0.15);
  border: 1px solid rgba(232, 114, 42, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.home-page .hero h1 {
  font-size: 56px;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 8px;
}
.home-page .hero h1 em {
  font-style: italic;
  color: var(--amber);
  display: block;
  font-family: 'Rozha One', serif;
}
.home-page .hero-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 24px 0 36px;
  max-width: 520px;
}
.home-page .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.home-page .hero-photo {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), #9B59B6, var(--amber-light));
  padding: 6px;
  position: relative;
  margin: 0 auto;
}
.home-page .hero-photo::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(200, 149, 108, 0.15);
  pointer-events: none;
}
.home-page .hero-photo-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--brown);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page .hero-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ── Proof strip ────────────────────────────────── */
.home-page .proof-strip {
  padding: 40px 0;
  border-top: 1px solid rgba(200, 149, 108, 0.1);
  border-bottom: 1px solid rgba(200, 149, 108, 0.1);
  background: rgba(42, 21, 8, 0.5);
}
.home-page .proof-strip .container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.home-page .proof-item {
  text-align: center;
}
.home-page .proof-number {
  font-family: 'Rozha One', serif;
  font-size: 36px;
  color: var(--amber);
  line-height: 1;
}
.home-page .proof-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ── Free story / audio ─────────────────────────── */
.home-page .free-story {
  padding: 56px 0 64px;
  background: var(--dark);
  position: relative;
}
.home-page .free-story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(232, 114, 42, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.home-page .free-story .container {
  position: relative;
  text-align: center;
  z-index: 1;
}
.home-page .free-story-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.home-page .free-story h2 {
  font-size: 34px;
  color: var(--cream);
  margin-bottom: 24px;
}
.home-page .story-player {
  max-width: 520px;
  margin: 0 auto;
  background: var(--dark-brown);
  border: 1px solid rgba(200, 149, 108, 0.15);
  border-radius: 20px;
  padding: 24px 28px 28px;
  text-align: center;
}
.home-page .story-player-art {
  width: min(72vw, 220px);
  aspect-ratio: 1;
  border-radius: 14px;
  margin: 0 auto 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.home-page .story-player-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-page .story-player-category {
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.home-page .story-player-title {
  font-family: 'Rozha One', serif;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 2px;
  line-height: 1.25;
}
.home-page .story-player-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.4;
}
.home-page .story-player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}
.home-page .play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  box-shadow: 0 4px 20px rgba(232, 114, 42, 0.4);
  transition: transform 0.2s;
}
.home-page .play-btn:hover {
  transform: scale(1.08);
}
.home-page .play-btn.is-playing .play-icon {
  display: none;
}
.home-page .play-btn.is-playing::after {
  content: '❚❚';
  font-size: 22px;
  letter-spacing: -4px;
}
.home-page .skip-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200, 149, 108, 0.1);
  border: 1px solid rgba(200, 149, 108, 0.2);
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
}
.home-page .progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(200, 149, 108, 0.15);
  border-radius: 2px;
  margin-bottom: 8px;
  cursor: pointer;
}
.home-page .progress-fill {
  width: 0%;
  height: 100%;
  background: var(--amber);
  border-radius: 2px;
  transition: width 0.1s linear;
}
.home-page .progress-times {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
.home-page #home-audio {
  display: none;
}
.home-page .post-story-cta {
  max-width: 520px;
  margin: 28px auto 0;
  padding: 22px 24px;
  background: rgba(232, 114, 42, 0.08);
  border: 1px solid rgba(232, 114, 42, 0.2);
  border-radius: 16px;
  display: none;
}
.home-page .post-story-cta.is-visible {
  display: block;
  animation: postStoryCtaIn 0.5s ease forwards;
}
@keyframes postStoryCtaIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-page .post-story-cta p {
  font-family: 'Rozha One', serif;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.35;
}
.home-page .post-story-cta .btn-subscribe {
  margin: 0 auto;
  display: flex;
  padding: 14px 32px;
  font-size: 16px;
}
.home-page .post-story-cta .store-badges {
  margin-top: 14px;
}

/* ── Why ────────────────────────────────────────── */
.home-page .why-section {
  padding: 100px 0;
  background: var(--cream);
  color: var(--text-dark);
}
.home-page .section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 16px;
}
.home-page .section-label--amber {
  color: var(--amber);
}
.home-page .section-title {
  font-size: 42px;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 60px;
}
.home-page .why-section .section-title,
.home-page .faq-section .section-title {
  color: var(--text-dark);
}
.home-page .features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.home-page .feature-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.home-page .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.home-page .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232, 114, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.home-page .feature-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.home-page .feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #6B5C52;
}

/* ── Stories picks ──────────────────────────────── */
.home-page .stories-section {
  padding: 100px 0;
  background: var(--dark);
}
.home-page .stories-section .section-title {
  color: var(--cream);
}
.home-page .stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.home-page .story-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--dark-brown);
  border: 1px solid rgba(200, 149, 108, 0.12);
  border-radius: 16px;
  transition: border-color 0.2s;
}
.home-page .story-card:hover {
  border-color: rgba(200, 149, 108, 0.3);
}
.home-page .story-card-art {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
}
.home-page .story-card-category {
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.home-page .story-card-title {
  font-family: 'Rozha One', serif;
  font-size: 18px;
  color: var(--cream);
  margin: 4px 0;
}
.home-page .story-card-subtitle {
  font-size: 13px;
  color: var(--text-muted);
}
.home-page .story-card-duration {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  background: rgba(232, 114, 42, 0.12);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
}
.home-page .see-all {
  display: block;
  text-align: center;
  margin-top: 40px;
  color: var(--amber);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}
.home-page .see-all:hover {
  color: var(--amber-light);
}

/* ── Meet ───────────────────────────────────────── */
.home-page .meet-section {
  padding: 100px 0;
  background: var(--cream);
  color: var(--text-dark);
}
.home-page .meet-section .container {
  display: flex;
  align-items: center;
  gap: 80px;
}
.home-page .meet-photo {
  flex: 0 0 320px;
  height: 400px;
  border-radius: 24px;
  background: var(--brown);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page .meet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-page .meet-content {
  flex: 1;
}
.home-page .meet-content h2 {
  font-size: 38px;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.home-page .meet-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #6B5C52;
  margin-bottom: 16px;
}
.home-page .meet-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.home-page .meet-stat {
  text-align: center;
}
.home-page .meet-stat-number {
  font-family: 'Rozha One', serif;
  font-size: 28px;
  color: var(--amber);
}
.home-page .meet-stat-label {
  font-size: 12px;
  font-weight: 700;
  color: #6B5C52;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── How it works ───────────────────────────────── */
.home-page .how-section {
  padding: 100px 0;
  background: var(--dark-brown);
}
.home-page .how-section .section-title {
  color: var(--cream);
}
.home-page .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.home-page .step {
  text-align: center;
  padding: 40px 24px;
  background: var(--dark);
  border-radius: 20px;
  border: 1px solid rgba(200, 149, 108, 0.1);
}
.home-page .step-number {
  font-family: 'Rozha One', serif;
  font-size: 48px;
  color: rgba(232, 114, 42, 0.2);
  margin-bottom: 16px;
  line-height: 1;
}
.home-page .step-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.home-page .step h3 {
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 12px;
}
.home-page .step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ── FAQ ────────────────────────────────────────── */
.home-page .faq-section {
  padding: 100px 0;
  background: var(--cream);
  color: var(--text-dark);
}
.home-page .faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.home-page .faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px 0;
}
.home-page .faq-q {
  font-family: 'Rozha One', serif;
  font-size: 20px;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.home-page .faq-q::after {
  content: '+';
  font-size: 24px;
  color: var(--amber);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  flex-shrink: 0;
}
.home-page .faq-a {
  font-size: 15px;
  line-height: 1.7;
  color: #6B5C52;
  margin-top: 12px;
  display: none;
}
.home-page .faq-item.open .faq-a {
  display: block;
}
.home-page .faq-item.open .faq-q::after {
  content: '−';
}

/* ── Final CTA ──────────────────────────────────── */
.home-page .final-cta {
  padding: 100px 0;
  background: var(--dark);
  text-align: center;
  position: relative;
}
.home-page .final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232, 114, 42, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.home-page .final-cta .container {
  position: relative;
  z-index: 1;
}
.home-page .final-cta-icon {
  font-size: 56px;
  margin-bottom: 24px;
}
.home-page .final-cta h2 {
  font-size: 42px;
  color: var(--cream);
  margin-bottom: 16px;
}
.home-page .final-cta p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.home-page .final-cta .btn-subscribe {
  margin: 0 auto;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .home-page .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-page .container {
    padding: 0 20px;
  }

  .home-page .hero {
    padding: 24px 0 48px;
  }
  .home-page .hero .container {
    flex-direction: column-reverse;
    gap: 32px;
    text-align: center;
  }
  .home-page .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }
  .home-page .hero h1 em {
    font-size: 28px;
  }
  .home-page .hero-badge {
    font-size: 11px;
    margin-bottom: 16px;
  }
  .home-page .hero-visual {
    flex: none;
  }
  .home-page .hero-photo {
    width: 200px;
    height: 200px;
  }
  .home-page .hero-photo::after {
    inset: -12px;
  }
  .home-page .hero-body {
    font-size: 16px;
    margin: 16px auto 28px;
    max-width: 100%;
  }
  .home-page .hero-actions {
    align-items: center;
    width: 100%;
  }
  .home-page .btn-subscribe {
    width: 100%;
    max-width: 320px;
  }
  .home-page .store-badges {
    justify-content: center;
  }

  .home-page .proof-strip {
    padding: 28px 0;
  }
  .home-page .proof-strip .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    justify-items: center;
  }
  .home-page .proof-number {
    font-size: 28px;
  }
  .home-page .proof-label {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .home-page .free-story {
    padding: 40px 0 48px;
  }
  .home-page .free-story h2 {
    font-size: 26px;
    margin-bottom: 18px;
  }
  .home-page .story-player {
    padding: 18px 20px 22px;
    border-radius: 16px;
  }
  .home-page .story-player-art {
    width: min(65vw, 180px);
    border-radius: 12px;
    margin-bottom: 12px;
  }
  .home-page .story-player-title {
    font-size: 20px;
  }
  .home-page .story-player-subtitle {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .home-page .play-btn {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
  .home-page .post-story-cta .store-badges {
    flex-direction: column;
    align-items: center;
  }
  .home-page .post-story-cta {
    padding: 18px 20px;
    margin-top: 22px;
  }
  .home-page .post-story-cta p {
    font-size: 18px;
  }
  .home-page .post-story-cta .btn-subscribe {
    width: 100%;
    max-width: 280px;
  }

  .home-page .why-section {
    padding: 60px 0;
  }
  .home-page .section-title {
    font-size: 28px;
    margin-bottom: 36px;
  }
  .home-page .section-label {
    font-size: 11px;
  }
  .home-page .features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-page .feature-card {
    padding: 24px 20px;
  }

  .home-page .stories-section {
    padding: 60px 0;
  }
  .home-page .stories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-page .story-card {
    padding: 20px;
    gap: 16px;
  }
  .home-page .story-card-art {
    width: 72px;
    height: 72px;
    font-size: 36px;
  }

  .home-page .meet-section {
    padding: 60px 0;
  }
  .home-page .meet-section .container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .home-page .meet-photo {
    flex: none;
    width: 100%;
    height: 300px;
  }
  .home-page .meet-content h2 {
    font-size: 28px;
  }
  .home-page .meet-stats {
    justify-content: center;
  }

  .home-page .how-section {
    padding: 60px 0;
  }
  .home-page .steps {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }

  .home-page .faq-section {
    padding: 60px 0;
  }
  .home-page .faq-q {
    font-size: 18px;
  }

  .home-page .final-cta {
    padding: 60px 0;
  }
  .home-page .final-cta h2 {
    font-size: 28px;
  }
  .home-page .final-cta .btn-subscribe {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 380px) {
  .home-page .hero h1 {
    font-size: 26px;
  }
  .home-page .hero h1 em {
    font-size: 23px;
  }
  .home-page .hero-photo {
    width: 160px;
    height: 160px;
  }
  .home-page .story-player-art {
    width: min(60vw, 160px);
  }
  .home-page .store-badges {
    flex-direction: column;
    align-items: center;
  }
  .home-page .store-badge-img--apple {
    height: 36px;
  }
  .home-page .store-badge-img--google {
    height: 50px;
  }
  .home-page .meet-stats {
    flex-direction: column;
    gap: 16px;
  }
}

/* Category grid (stories page when home.css loaded) */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  display: block;
  background: var(--cat-bg, #1C0A00);
  border-radius: 24px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cat-accent);
  opacity: 0.08;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.cat-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}
.cat-card-name {
  font-family: 'Rozha One', serif;
  font-size: 18px;
  color: #F5E6C8;
  margin-bottom: 4px;
}
.cat-card-count {
  font-size: 11px;
  color: var(--cat-accent);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.cat-card-temples {
  font-size: 11px;
  color: rgba(245, 230, 200, 0.4);
  line-height: 1.5;
}
.cat-card-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 20px;
  color: var(--cat-accent);
  opacity: 0.4;
}
@media (max-width: 900px) {
  .cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .cats-grid {
    grid-template-columns: 1fr;
  }
}
