/* Daily Bible App: Marketing Site */

:root {
  --primary: #4a90db;
  --primary-light: #6ba8e8;
  --primary-dark: #3570b8;
  --bg-deep: #020617;
  --bg-surface: #0f172a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --text: #e5e7eb;
  --text-muted: #94a3b8;
  --text-subtle: #cbd5e1;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: #1e293b;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  --max-width: 1140px;
  --header-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary-light); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  color: var(--text-subtle);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-desktop a:hover { color: var(--text); }

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-download:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.site-header a.lang-switch {
  display: none;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-subtle) !important;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.lang-switch:hover {
  border-color: var(--primary);
  color: var(--text) !important;
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 36px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-subtle);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  font-family: inherit;
}

.lang-dropdown-toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
}

.lang-dropdown-toggle:hover,
.lang-dropdown.open .lang-dropdown-toggle {
  border-color: var(--primary);
  color: var(--text);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 72px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  z-index: 120;
}

.lang-dropdown-menu[hidden] {
  display: none;
}

.lang-dropdown.open .lang-dropdown-menu {
  display: block;
}

.lang-dropdown-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-subtle) !important;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s, color 0.15s;
}

.lang-dropdown-menu a:hover,
.lang-dropdown-menu a.is-active {
  background: rgba(99, 102, 241, 0.12);
  color: var(--text) !important;
}

.nav-mobile .lang-dropdown {
  width: 100%;
}

.nav-mobile .lang-dropdown-toggle {
  width: 100%;
  justify-content: center;
}

.nav-mobile .lang-dropdown-menu {
  position: static;
  width: 100%;
  margin-top: 4px;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--text-subtle);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
}

/* ── Hero ── */
.hero {
  padding: 64px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content { text-align: left; }

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(74, 144, 219, 0.15);
  border: 1px solid rgba(74, 144, 219, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-subtle);
  margin: 0 0 12px;
  line-height: 1.7;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.store-badge {
  display: inline-block;
  transition: transform 0.2s, opacity 0.2s;
}

.store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.store-badge img { height: 52px; width: auto; }

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-phone {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74, 144, 219, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* ── Social proof strip ── */
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 80px;
}

.proof-item {
  text-align: center;
}

.proof-item strong {
  display: block;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 4px;
}

.proof-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Sections ── */
section { margin-bottom: 88px; }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  margin-bottom: 10px;
}

/* ── Feature groups ── */
.feature-group { margin-bottom: 48px; }

.feature-group h3 {
  font-size: 1.1rem;
  color: var(--text-subtle);
  margin: 0 0 20px;
  padding-left: 4px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: background 0.2s, border-color 0.2s;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(74, 144, 219, 0.2);
}

.card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.card h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.card .pro-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 2px 8px;
  background: rgba(74, 144, 219, 0.2);
  color: var(--primary-light);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── Screenshots ── */
.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.screenshot-item {
  text-align: center;
}

.screenshot-item img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  border-radius: 20px;
  border: 2px solid var(--border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s;
}

.screenshot-item:hover img { transform: translateY(-4px); }

.screenshot-item figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Why choose ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: linear-gradient(135deg, rgba(74, 144, 219, 0.08) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.why-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.why-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Pro section ── */
.pro-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.pro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.pro-intro h2 { margin: 0 0 14px; font-size: 1.75rem; }

.pro-intro p {
  color: var(--text-muted);
  margin: 0 0 20px;
}

.pro-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pro-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-subtle);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pro-list li::before {
  content: "✓";
  color: var(--primary-light);
  font-weight: 700;
  flex-shrink: 0;
}

.pro-list li strong { color: var(--text); }

.pro-free-note {
  margin-top: 20px;
  padding: 16px;
  background: rgba(74, 144, 219, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-subtle);
}

/* ── Testimonials ── */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review blockquote {
  margin: 0 0 16px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-subtle);
  font-style: italic;
}

.review cite {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 500;
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--primary-light);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── CTA band ── */
.cta-band {
  text-align: center;
  padding: 64px 40px;
  background: linear-gradient(135deg, rgba(74, 144, 219, 0.15) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(74, 144, 219, 0.25);
  border-radius: var(--radius);
  margin-bottom: 64px;
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: 1.75rem;
}

.cta-band p {
  color: var(--text-muted);
  margin: 0 0 28px;
  font-size: 1.05rem;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border-strong);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 12px 0 0;
  max-width: 280px;
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.footer-col a {
  display: block;
  color: var(--text-subtle);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--primary-light); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Legal pages ── */
.legal-page {
  padding: 48px 0 80px;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2rem;
  margin: 0 0 8px;
}

.legal-content > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
  color: var(--text);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 24px 0 10px;
  color: var(--text-subtle);
}

.legal-content p,
.legal-content li {
  color: var(--text-subtle);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.4rem;
  margin: 12px 0;
}

.legal-content a { color: var(--primary-light); }

.legal-back {
  display: inline-block;
  margin-top: 40px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.legal-back:hover { color: var(--primary-light); }

/* ── Guides & articles ── */
.article-page { padding: 40px 0 80px; }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--primary-light); }

.article-content {
  max-width: 720px;
  margin: 0 auto;
}

.article-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.article-lead {
  font-size: 1.1rem;
  color: var(--text-subtle);
  line-height: 1.75;
  margin-bottom: 32px;
}

.article-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 40px;
}

.article-toc h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.article-toc ol {
  margin: 0;
  padding-left: 1.2rem;
}

.article-toc li {
  margin: 6px 0;
  font-size: 0.95rem;
}

.article-toc a {
  color: var(--text-subtle);
  text-decoration: none;
}

.article-toc a:hover { color: var(--primary-light); }

.article-content h2 {
  font-size: 1.35rem;
  margin: 40px 0 14px;
  color: var(--text);
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.article-content h3 {
  font-size: 1.1rem;
  margin: 28px 0 10px;
  color: var(--text-subtle);
}

.article-content p,
.article-content li {
  color: var(--text-subtle);
  font-size: 0.98rem;
  line-height: 1.8;
}

.article-content ul,
.article-content ol {
  padding-left: 1.4rem;
  margin: 14px 0;
}

.article-content blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--primary);
  background: rgba(74, 144, 219, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-subtle);
  font-style: italic;
}

.article-cta {
  margin: 40px 0;
  padding: 28px;
  background: linear-gradient(135deg, rgba(74, 144, 219, 0.12) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(74, 144, 219, 0.25);
  border-radius: var(--radius);
}

.article-cta h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--text);
}

.article-cta p {
  margin: 0 0 16px;
  font-size: 0.95rem;
}

.guides-hero {
  text-align: center;
  padding: 48px 0 56px;
}

.guides-hero h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin: 0 0 14px;
}

.guides-hero p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.guide-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.guide-card-link .card {
  height: 100%;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.guide-card-link:hover .card {
  background: var(--bg-card-hover);
  border-color: rgba(74, 144, 219, 0.3);
  transform: translateY(-2px);
}

.guide-card-link .read-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-light);
}

.related-guides {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.related-guides h2 {
  font-size: 1.15rem;
  margin: 0 0 16px;
}

.related-guides ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-guides li {
  margin: 10px 0;
}

.related-guides a {
  color: var(--primary-light);
  text-decoration: none;
  font-size: 0.95rem;
}

.related-guides a:hover { text-decoration: underline; }

/* ── 404 ── */
.error-page {
  text-align: center;
  padding: 120px 24px;
}

.error-page h1 {
  font-size: 5rem;
  margin: 0;
  color: var(--primary);
  font-weight: 800;
}

.error-page p {
  color: var(--text-muted);
  margin: 16px 0 32px;
  font-size: 1.1rem;
}

/* ── Mobile redirect banner ── */
.redirect-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  z-index: 200;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
}

.redirect-banner.show { display: flex; }

.redirect-banner a {
  color: var(--primary-light);
  font-weight: 600;
}

.redirect-dismiss {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { text-align: center; }
  .hero-visual { order: -1; }
  .hero-phone { max-width: 240px; }
  .store-buttons { justify-content: center; }
  .pro-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: block; }
  section { margin-bottom: 64px; }
  .pro-section { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .hero { padding: 40px 0 56px; }
  .proof-strip { gap: 20px; }
  .screenshot-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ── Cookie consent (EU) ── */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-strong);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.cookie-consent-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-subtle);
  flex: 1;
  min-width: 220px;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.cookie-btn-accept {
  background: var(--primary);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: var(--primary-light);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
}

.cookie-btn-decline:hover {
  color: var(--text);
  border-color: var(--text-muted);
}
