/* ============================================================
   goldentable.uk — Prestige Casino UK — Design System
   Palette: #0d0f14 bg | #c9a84c gold | #f0c040 bright gold
   Font: Outfit (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:    #0a0c11;
  --bg-main:    #0d0f14;
  --bg-card:    #13171f;
  --bg-card2:   #191d28;
  --gold:       #c9a84c;
  --gold-bright:#f0c040;
  --gold-dim:   #8a6f30;
  --text:       #f0ede8;
  --text-dim:   #9ca3af;
  --text-faint: #6b7280;
  --green:      #22c55e;
  --red:        #ef4444;
  --border:     rgba(201,168,76,0.18);
  --border-hover: rgba(201,168,76,0.55);
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-gold: 0 0 24px rgba(201,168,76,0.22);
  --transition: 0.25s ease;
  --font: 'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-bright); }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  line-height: 1.25;
  font-weight: 700;
  color: var(--text);
}
h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.25rem, 3vw, 1.9rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.35rem); margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; color: #d1ccc4; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; color: #d1ccc4; }
strong { color: var(--text); font-weight: 600; }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }

/* ── Header / Nav ── */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10,12,17,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.logo svg { width: 32px; height: 32px; }
.logo span { color: var(--text); }

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0;
  margin: 0;
}
nav ul li a {
  color: var(--text-dim);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
nav ul li a:hover, nav ul li a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.nav-cta {
  background: linear-gradient(135deg, #c9a84c, #f0c040) !important;
  color: #0a0c11 !important;
  font-weight: 700 !important;
  padding: 0.45rem 1rem !important;
  border-radius: 8px !important;
  font-size: 0.88rem !important;
  box-shadow: 0 0 14px rgba(201,168,76,0.3);
}
.nav-cta:hover { box-shadow: 0 0 22px rgba(240,192,64,0.5) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ── Hero ── */
.hero {
  background: radial-gradient(ellipse at 60% 0%, rgba(201,168,76,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 0% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
              var(--bg-main);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.4rem;
}
.hero h1 {
  max-width: 820px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(to right, #f5f0e8, #f0c040 50%, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255,255,255,0.18);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn:hover::after { left: 110%; }
.btn-primary {
  background: linear-gradient(135deg, #b8922a, #f0c040 50%, #c9a84c);
  color: #0a0c11;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(201,168,76,0.5); color: #0a0c11; }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--border-hover);
}
.btn-outline:hover { background: rgba(201,168,76,0.08); transform: translateY(-2px); color: var(--gold-bright); }
.btn-lg { padding: 0.9rem 2rem; font-size: 1.05rem; }

/* ── Quick Facts Table ── */
.quick-facts {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
}
.quick-facts table { width: 100%; border-collapse: collapse; }
.quick-facts th, .quick-facts td {
  padding: 0.75rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  font-size: 0.93rem;
}
.quick-facts th {
  width: 38%;
  color: var(--text-dim);
  font-weight: 500;
  background: rgba(201,168,76,0.04);
}
.quick-facts td { color: var(--text); font-weight: 500; }
.quick-facts tr:last-child th,
.quick-facts tr:last-child td { border-bottom: none; }

/* ── Generic Table ── */
.data-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.data-table th {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  color: #d1ccc4;
  font-size: 0.9rem;
}
.data-table tr:hover td { background: rgba(201,168,76,0.04); }
.data-table .check { color: var(--green); font-size: 1rem; }
.data-table .cross  { color: var(--red); font-size: 1rem; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }

/* ── Cards ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.card h3 { color: var(--gold); margin-bottom: 0.4rem; font-size: 1.05rem; }
.card p { font-size: 0.9rem; color: var(--text-dim); margin: 0; }

/* ── Slot Grid ── */
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.1rem; }
.slot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.slot-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(201,168,76,0.25);
  border-color: var(--border-hover);
}
.slot-card img { width: 100%; height: 148px; object-fit: cover; }
.slot-card-body { padding: 0.85rem; }
.slot-card-body h3 { font-size: 0.9rem; color: var(--text); margin-bottom: 0.2rem; }
.slot-provider { font-size: 0.75rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── FAQ ── */
.faq { margin: 2rem 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-q {
  width: 100%;
  background: var(--bg-card);
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after { content: '+'; color: var(--gold); font-size: 1.3rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 1.25rem 1rem;
  background: var(--bg-card);
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 500;
}
.trust-item .icon { font-size: 1.1rem; }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-header h2 { max-width: 650px; margin: 0 auto 0.75rem; }
.section-header p { color: var(--text-dim); max-width: 560px; margin: 0 auto; font-size: 0.95rem; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-faint);
  padding: 0.85rem 0;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-faint); }
.breadcrumb .current { color: var(--gold); }

/* ── Pros/Cons ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.pros, .cons {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
}
.pros h3 { color: var(--green); margin-bottom: 0.75rem; }
.cons h3 { color: #f87171; margin-bottom: 0.75rem; }
.pros li::marker { color: var(--green); }
.cons li::marker { color: #f87171; }

/* ── Steps ── */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}
.step-num {
  counter-increment: step;
  min-width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #b8922a, #f0c040);
  color: #0a0c11;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  content: counter(step);
}
.step-content h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.step-content p { font-size: 0.9rem; color: var(--text-dim); margin: 0; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
}
.cta-banner h2 { margin-bottom: 0.75rem; }
.cta-banner p { color: var(--text-dim); max-width: 500px; margin: 0 auto 1.75rem; }

/* ── Update date ── */
.page-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-faint);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

/* ── Label badges ── */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-gold  { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.badge-green { background: rgba(34,197,94,0.12);  color: #4ade80;    border: 1px solid rgba(34,197,94,0.25); }
.badge-red   { background: rgba(239,68,68,0.12);  color: #f87171;    border: 1px solid rgba(239,68,68,0.25); }

/* ── Footer ── */
footer {
  background: #080a0d;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
}
.footer-brand .logo { font-size: 1.1rem; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.82rem; color: var(--text-faint); line-height: 1.6; }
.footer-nav h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-nav ul { list-style: none; padding: 0; }
.footer-nav ul li { margin-bottom: 0.5rem; }
.footer-nav ul li a { font-size: 0.85rem; color: var(--text-dim); }
.footer-nav ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 1.25rem 0;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-legal {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.legal-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 600;
}
.footer-disclaimer { font-size: 0.78rem; color: var(--text-faint); line-height: 1.65; max-width: 780px; margin-bottom: 1rem; }
.footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.78rem; color: var(--text-faint); }
.footer-links a:hover { color: var(--gold); }

/* ── Highlight box ── */
.info-box {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.info-box strong { color: var(--gold); }

.warn-box {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.2);
  border-left: 3px solid #ef4444;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.92rem;
  color: var(--text-dim);
}

/* ── Category tabs ── */
.cat-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.cat-tab {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.cat-tab:hover, .cat-tab.active {
  background: rgba(201,168,76,0.1);
  border-color: var(--border-hover);
  color: var(--gold);
}

/* ── Stat boxes ── */
.stats-row { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0; }
.stat-box {
  flex: 1;
  min-width: 120px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  text-align: center;
}
.stat-val { font-size: 1.6rem; font-weight: 800; color: var(--gold); line-height: 1.1; }
.stat-lbl { font-size: 0.77rem; color: var(--text-dim); margin-top: 0.25rem; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 4px; }

/* ── Utilities ── */
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }
.text-dim    { color: var(--text-dim); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gap-1 { gap: 0.5rem; }
.flex { display: flex; }
.items-center { align-items: center; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.3s ease both; }

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.shimmer {
  background: linear-gradient(90deg, transparent 25%, rgba(201,168,76,0.15) 50%, transparent 75%);
  background-size: 400px 100%;
  animation: shimmer 2.5s infinite;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,12,17,0.97); border-bottom: 1px solid var(--border); padding: 1rem; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0.25rem; }
  nav ul li a { display: block; padding: 0.7rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pros-cons { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-row { flex-direction: column; }
}
@media (max-width: 480px) {
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.5rem; }
}

/* ── FAQ JS toggle ── */

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: -100%; /* Default hidden */
  left: 0;
  width: 100%;
  background: rgba(13, 15, 20, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 9999;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.6);
  transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.mobile-sticky-cta.visible {
  bottom: 0;
}
.mobile-sticky-cta .btn {
  width: 100%;
  margin: 0;
  font-size: 1.1rem;
  padding: 0.9rem;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
  animation: pulse-glow-cta 2s infinite;
}

@keyframes pulse-glow-cta {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }
}
