/* ============================================================
   CASERIZE.COM — Master Stylesheet
   Fonts: Outfit (headings) + Inter (body)
   Palette: Red #E63946, Pink #F4A0AB, White #FFFFFF, Soft Pink #FFF5F6
   ============================================================ */

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

/* ── CSS Variables ─────────────────────── */
:root {
  --c-red: #E63946;
  --c-red-dark: #C62833;
  --c-red-light: #F25C69;
  --c-pink: #F4A0AB;
  --c-pink-light: #FADDE1;
  --c-pink-bg: #FFF5F6;
  --c-white: #FFFFFF;
  --c-text: #2B2D33;
  --c-text-light: #6B6E76;
  --c-border: #F0D4D8;
  --c-border-light: #FAE8EB;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 2px 12px rgba(230,57,70,0.08);
  --shadow-lg: 0 8px 32px rgba(230,57,70,0.12);
  --max-w: 1160px;
  --transition: 0.25s ease;
}

/* ── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-red-dark); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.25; color: var(--c-text); }

/* ── Utility ───────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--alt { background: var(--c-pink-bg); }
.text-center { text-align: center; }

.page-hero {
  background: linear-gradient(170deg, var(--c-pink-bg) 0%, var(--c-white) 100%);
  padding: 56px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--c-border-light);
}
.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-red);
  margin-bottom: 10px;
}
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--c-text-light);
  font-size: 1.05rem;
}

/* ── Header ────────────────────────────── */
.site-header-inner {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border-light);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--c-red);
  letter-spacing: -0.5px;
}
.nav-list {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--c-text);
  padding: 6px 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--c-red);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--c-red); }
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1010;
}
.hamburger-line {
  width: 26px; height: 3px;
  background: var(--c-red);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

@media(max-width:767px){
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--c-white);
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transition: right 0.35s ease;
    padding: 80px 32px 40px;
    z-index: 1000;
  }
  .main-nav.open { right: 0; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-link {
    display: block;
    padding: 14px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--c-border-light);
  }
}

/* ── Footer ────────────────────────────── */
.site-footer-inner {
  background: var(--c-text);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.footer-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 20px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-logo .logo-text { color: var(--c-white); font-size: 1.25rem; }
.footer-logo .logo-icon rect { stroke: var(--c-pink); }
.footer-logo .logo-icon circle:first-of-type { fill: var(--c-pink); }
.footer-desc { color: rgba(255,255,255,0.6); line-height: 1.6; font-size: 0.85rem; }
.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 14px;
}
.footer-nav li { margin-bottom: 8px; }
.footer-nav a { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.footer-nav a:hover { color: var(--c-pink); }
.footer-contact-line { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 6px; }

.footer-regulators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(158, 158, 158, 0.1);
  flex-wrap: wrap;
  background: #e8f5e9;
}
.footer-regulators img {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity var(--transition);
  }
.footer-regulators img:hover { opacity: 1; }

.footer-badge-row { text-align: center; padding: 20px 0 10px; }
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 3px solid var(--c-red);
  color: var(--c-red);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
}

.footer-disclaimer {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
}
.footer-disclaimer p { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.7; text-align: center; }
.footer-disclaimer a { color: var(--c-pink); }

.footer-bottom { text-align: center; padding-top: 18px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

@media(max-width:767px){
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}
@media(min-width:768px) and (max-width:1023px){
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ── Intro Section ─────────────────────── */
.intro {
  background: linear-gradient(170deg, var(--c-pink-bg) 0%, var(--c-white) 60%);
  padding: 72px 0 56px;
  text-align: center;
}
.intro h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--c-red);
  margin-bottom: 14px;
}
.intro .subtitle {
  font-size: 1.15rem;
  color: var(--c-text-light);
  max-width: 640px;
  margin: 0 auto 20px;
}
.intro .mission {
  font-size: 0.98rem;
  color: var(--c-text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.divider-wave {
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath d='M0 20Q300 0 600 20T1200 20V40H0Z' fill='%23ffffff'/%3E%3C/svg%3E") center/cover no-repeat;
}
.divider-wave--alt {
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath d='M0 20Q300 0 600 20T1200 20V40H0Z' fill='%23FFF5F6'/%3E%3C/svg%3E") center/cover no-repeat;
}

/* ── Rating Cards ──────────────────────── */
.rating-section { padding: 56px 0; }
.rating-section .section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 36px;
  color: var(--c-text);
}
.offers-list { display: flex; flex-direction: column; gap: 20px; max-width: 820px; margin: 0 auto; }

.offer-card {
  display: grid;
  grid-template-columns: 48px 130px 1fr auto auto;
  align-items: center;
  gap: 20px;
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.offer-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.offer-rank {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-red);
  text-align: center;
  width: 44px; height: 44px;
  line-height: 44px;
  border-radius: 50%;
  background: var(--c-pink-bg);
  flex-shrink: 0;
}
.offer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-logo-wrap img {
  width: 120px;
  height: 60px;
  object-fit: contain;
}
.offer-info { min-width: 0; }
.offer-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.offer-bonus {
  font-size: 0.88rem;
  color: var(--c-text-light);
}
.offer-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.score-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-white);
  background: linear-gradient(135deg, var(--c-red), var(--c-red-light));
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(230,57,70,0.25);
}
.score-label {
  font-size: 0.7rem;
  color: var(--c-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.offer-actions { display: flex; flex-direction: column; gap: 8px; }
.btn-see-more,
.btn-operator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.btn-see-more {
  background: var(--c-pink-bg);
  color: var(--c-red);
  border: 1px solid var(--c-border);
}
.btn-see-more:hover { background: var(--c-pink-light); color: var(--c-red-dark); }
.btn-operator {
  background: var(--c-red);
  color: var(--c-white);
}
.btn-operator:hover { background: var(--c-red-dark); }

.offer-disclaimer {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--c-text-light);
  text-align: center;
  border-top: 1px solid var(--c-border-light);
  padding-top: 12px;
  margin-top: 4px;
}

@media(max-width:767px){
  .offer-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
    padding: 20px;
  }
  .offer-rank { margin: 0 auto; }
  .offer-logo-wrap { justify-content: center; }
  .offer-score { flex-direction: row; justify-content: center; gap: 8px; }
  .offer-actions { flex-direction: row; justify-content: center; }
}
@media(min-width:768px) and (max-width:1023px){
  .offer-card {
    grid-template-columns: 44px 110px 1fr auto;
    gap: 14px;
  }
  .offer-actions { grid-column: 1 / -1; flex-direction: row; justify-content: center; }
}

/* ── Pre-footer Blocks ─────────────────── */
.pre-footer {
  background: var(--c-pink-bg);
  padding: 52px 0;
}
.pf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
.pf-block {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--c-border-light);
}
.pf-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pf-block p { font-size: 0.88rem; color: var(--c-text-light); line-height: 1.7; }
.pf-block a { color: var(--c-red); font-weight: 500; }
@media(max-width:767px){ .pf-grid { grid-template-columns: 1fr; } }

/* ── Offer Detail Page ─────────────────── */
.offer-detail { padding: 48px 0; }
.od-header { text-align: center; margin-bottom: 36px; }
.od-header img { width: 200px; height: 100px; object-fit: contain; margin: 0 auto 16px; }
.od-header h1 { font-size: 2rem; font-weight: 800; color: var(--c-red); margin-bottom: 8px; }
.od-desc { max-width: 660px; margin: 0 auto 32px; text-align: center; color: var(--c-text-light); line-height: 1.75; font-size: 0.97rem; }
.od-details {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 28px;
}
.od-detail-item {
  background: var(--c-pink-bg);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  text-align: center;
  border: 1px solid var(--c-border-light);
}
.od-detail-label { font-size: 0.75rem; color: var(--c-text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.od-detail-value { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--c-text); }
.od-cta { text-align: center; margin-bottom: 16px; }
.od-cta .btn-operator { padding: 12px 36px; font-size: 0.95rem; }
.od-disclaimer { text-align: center; font-size: 0.8rem; color: var(--c-text-light); margin-bottom: 24px; }
.od-back { text-align: center; margin-bottom: 40px; }
.od-back a { font-weight: 600; font-size: 0.92rem; color: var(--c-red); }
.od-back a:hover { color: var(--c-red-dark); }
@media(max-width:600px){
  .od-details { grid-template-columns: 1fr 1fr; }
}

/* ── Regulators Row ────────────────────── */
.regulators-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 0;
  flex-wrap: wrap;
}
.regulators-row img { height: 50px; width: auto; object-fit: contain; opacity: 0.65; transition: opacity var(--transition); }
.regulators-row img:hover { opacity: 1; }

/* ── Legal / Content Pages ─────────────── */
.legal-content { max-width: 780px; margin: 0 auto; padding: 40px 20px 56px; }
.legal-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--c-red); margin: 32px 0 12px; }
.legal-content h3 { font-size: 1.1rem; font-weight: 600; margin: 24px 0 8px; }
.legal-content p { margin-bottom: 14px; color: var(--c-text-light); line-height: 1.75; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { list-style: disc; margin-bottom: 6px; color: var(--c-text-light); line-height: 1.65; }
.legal-content a { color: var(--c-red); font-weight: 500; }
.legal-date { font-size: 0.85rem; color: var(--c-text-light); margin-bottom: 24px; }

/* ── About Page ────────────────────────── */
.about-values {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin: 28px 0;
}
.value-card {
  background: var(--c-pink-bg);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--c-border-light);
}
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--c-red); }
.value-card p { font-size: 0.88rem; color: var(--c-text-light); }
@media(max-width:767px){ .about-values { grid-template-columns: 1fr; } }

/* ── Contact Form ──────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 36px; margin-top: 28px; }
.contact-info-block h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--c-text); }
.contact-info-block p { font-size: 0.92rem; color: var(--c-text-light); margin-bottom: 10px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--c-text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--c-white);
  color: var(--c-text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.form-check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--c-red);
  width: 18px; height: 18px;
}
.form-check label { font-size: 0.84rem; color: var(--c-text-light); }
.btn-submit {
  padding: 13px 28px;
  background: var(--c-red);
  color: var(--c-white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition);
  position: relative;
}
.btn-submit:hover { background: var(--c-red-dark); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-submit .spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--c-white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto;
}
.btn-submit.loading .spinner { display: inline-block; }
.btn-submit.loading .btn-text { visibility: hidden; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-success {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
}
.form-success.show { display: block; }
.form-error-msg {
  font-size: 0.78rem;
  color: var(--c-red);
  display: none;
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: var(--c-red); }
.form-group.error .form-error-msg { display: block; }

@media(max-width:767px){
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Responsible Gaming ────────────────── */
.rg-resources {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  margin: 24px 0;
}
.rg-resource {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-pink-bg);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--c-border-light);
  text-decoration: none;
  transition: box-shadow var(--transition);
}
.rg-resource:hover { box-shadow: var(--shadow); }
.rg-resource img { height: 40px; width: auto; object-fit: contain; flex-shrink: 0; }
.rg-resource span { font-weight: 600; font-size: 0.92rem; color: var(--c-text); }
@media(max-width:600px){ .rg-resources { grid-template-columns: 1fr; } }

/* ── Age Verification Popup ────────────── */
.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(43,45,51,0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-overlay.hidden { display: none; }
.age-modal {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  position: relative;
}
.age-modal .age-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 4px solid var(--c-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-red);
  margin: 0 auto 18px;
  background: var(--c-pink-bg);
}
.age-modal h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; color: var(--c-text); }
.age-modal p { font-size: 0.9rem; color: var(--c-text-light); margin-bottom: 24px; line-height: 1.65; }
.age-buttons { display: flex; gap: 12px; justify-content: center; }
.btn-age-confirm {
  padding: 12px 32px;
  background: var(--c-red);
  color: var(--c-white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-age-confirm:hover { background: var(--c-red-dark); }
.btn-age-exit {
  padding: 12px 32px;
  background: transparent;
  color: var(--c-text-light);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-age-exit:hover { border-color: var(--c-red); color: var(--c-red); }

/* ── Cookie Banner ─────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9000;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 20px 24px;
  max-width: 380px;
  width: calc(100% - 40px);
}
.cookie-banner.hidden { display: none; }
.cookie-banner h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--c-text);
}
.cookie-banner p { font-size: 0.82rem; color: var(--c-text-light); line-height: 1.6; margin-bottom: 14px; }
.cookie-banner a { color: var(--c-red); font-weight: 500; }
.btn-cookie-accept {
  padding: 10px 22px;
  background: var(--c-red);
  color: var(--c-white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-cookie-accept:hover { background: var(--c-red-dark); }

/* ── Scrollbar ─────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--c-pink-bg); }
::-webkit-scrollbar-thumb { background: var(--c-pink); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-red-light); }

/* ── Print ─────────────────────────────── */
@media print {
  .site-header-inner, .site-footer-inner, .age-overlay, .cookie-banner { display: none !important; }
}