/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: #0C1322;
  color: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── ANIMATIONS ─── */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes glowPulse {
  0%, 100% { opacity: .55; }
  50% { opacity: .85; }
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,15,28,0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 74px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  white-space: nowrap;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: #E8A020; }
.nav-cta {
  background: #E8A020 !important;
  color: #10182b !important;
  font-weight: 700 !important;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  letter-spacing: 0.04em !important;
  transition: filter 0.2s !important;
}
.nav-cta:hover { filter: brightness(1.08); }

/* Hamburger (CSS-only checkbox hack) */
.nav-toggle { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0a0f1c;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0.5rem 1.6rem 1.2rem;
}
.nav-toggle:checked ~ .mobile-menu { display: flex; }
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.mobile-menu-cta {
  color: #E8A020 !important;
  font-weight: 700;
  border-bottom: none !important;
}

/* ─── HERO ─── */
.hero-section {
  position: relative;
  background:
    radial-gradient(125% 90% at 50% 118%, rgba(232,160,32,0.30), rgba(224,116,44,0.13) 34%, rgba(12,19,34,0) 60%),
    linear-gradient(180deg, #0a1020 0%, #0C1322 55%, #0b1426 100%);
  overflow: hidden;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.10;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.2rem 1.6rem 4.8rem;
  display: grid;
  grid-template-columns: 380px 1fr;
  column-gap: 4.5rem;
  align-items: center;
}
.hero-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232,160,32,0.5), transparent);
}

/* Cover */
.cover-wrap {
  position: relative;
  width: 360px;
  justify-self: center;
}
.cover-glow {
  position: absolute;
  inset: -18% -12% -22% -12%;
  background: radial-gradient(closest-side, rgba(232,160,32,0.55), rgba(224,116,44,0.18) 55%, transparent 72%);
  filter: blur(26px);
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}
.cover-img {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 6px;
  box-shadow: 0 48px 90px rgba(0,0,0,0.62), 0 14px 34px rgba(0,0,0,0.45);
  animation: floatY 7s ease-in-out infinite;
  outline: 1px solid rgba(255,255,255,0.06);
  outline-offset: -1px;
}
.cover-badge {
  position: absolute;
  top: 14px;
  left: -10px;
  white-space: nowrap;
  background: #E8A020;
  color: #10182b;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.4);
}

/* Hero content */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #E8A020;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 5rem;
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 1.1rem;
}
.hero-sub {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.86);
  max-width: 30em;
  margin-bottom: 0.5rem;
}
.hero-series {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  max-width: 32em;
  margin-bottom: 1.6rem;
}
.series-name { color: rgba(255,255,255,0.85); }

/* Stars */
.score-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.7rem;
}
.stars-wrap {
  position: relative;
  display: inline-block;
  font-size: 1.35rem;
  letter-spacing: 3px;
  line-height: 1;
}
.stars-empty { color: #33415c; }
.stars-filled {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #E8A020;
}
.score-label {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}
.score-num {
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Playfair Display', serif;
}
.score-sub { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* Buttons */
.btn-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.2rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #E8A020;
  color: #10182b;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.9rem;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(232,160,32,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(232,160,32,0.5);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.95rem 1.7rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.28);
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  background: #10182b;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.95rem 1.9rem;
  border-radius: 50px;
  transition: background 0.2s;
}
.btn-dark:hover { background: #1d2a45; }

/* Pull quote */
.pull-quote {
  position: relative;
  max-width: 34em;
  padding: 1.1rem 1.3rem 1.1rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border-left: 3px solid #E8A020;
  border-radius: 0 10px 10px 0;
}
.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.55;
}
.pull-quote span {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
}

/* ─── MYSTERY ─── */
.mystery-section {
  background: linear-gradient(180deg, #0b1426 0%, #0C1322 100%);
  padding: 5rem 1.6rem;
}
.mystery-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: center;
}
.mystery-grid h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.2rem;
}
.mystery-text {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.74);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.mystery-text em { color: #fff; }

/* ─── SYNOPSIS ─── */
.synopsis-section {
  background: #F5EFE4;
  color: #2A2218;
  padding: 5.5rem 1.6rem;
}
.synopsis-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.kicker-cream {
  color: #C07A18 !important;
}
.synopsis-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.15;
  color: #1d1810;
  margin-bottom: 1.8rem;
}
.synopsis-text {
  font-size: 1.16rem;
  line-height: 1.9;
  color: #43382a;
  margin-bottom: 1.3rem;
}
.synopsis-text strong { color: #1d1810; }
.facts-row {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.6rem;
  align-items: center;
}
.fact { text-align: center; }
.fact-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #C07A18;
}
.fact-lbl {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a7a63;
}
.fact-sep {
  width: 1px;
  height: 2.5rem;
  background: #d9cdb8;
}

/* ─── REVIEWS ─── */
.reviews-section {
  position: relative;
  background: linear-gradient(180deg, #0C1322 0%, #0b1426 100%);
  padding: 5.5rem 1.6rem 5rem;
  overflow: hidden;
}
.reviews-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 300px;
  background: radial-gradient(closest-side, rgba(232,160,32,0.18), transparent 70%);
  pointer-events: none;
}
.reviews-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.4rem;
}
.reviews-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.1;
  color: #fff;
}
.score-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1rem 1.4rem;
}
.score-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: #E8A020;
  line-height: 1;
}
.stars-sm { font-size: 1.05rem; letter-spacing: 2px; }
.score-card-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
}

/* Carousel */
.carousel-wrap { position: relative; }
.review-track {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  padding: 0.4rem 0.2rem 1.2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.review-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 auto;
  width: 380px;
  max-width: 82vw;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.7rem 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.review-stars {
  font-size: 1rem;
  letter-spacing: 2px;
  color: #E8A020;
  margin-bottom: 1rem;
}
.review-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 1.3rem;
  flex: 1;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #E8A020;
  color: #10182b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.review-name { font-size: 0.92rem; font-weight: 700; color: #fff; }
.review-source { font-size: 0.76rem; color: rgba(255,255,255,0.5); }

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
}
.hebban-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.hebban-link:hover { color: #fff; }
.carousel-btns { display: flex; gap: 0.7rem; }
.carousel-btns button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-btns button:hover {
  background: rgba(232,160,32,0.18);
  border-color: #E8A020;
}

/* ─── LAUNCH ─── */
.launch-section {
  background: #F5EFE4;
  color: #2A2218;
  padding: 5rem 1.6rem;
}
.launch-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.launch-img-wrap {
  position: relative;
}
.launch-img-wrap img {
  width: 100%;
  display: block;
  border-radius: 14px;
  box-shadow: 0 26px 60px rgba(0,0,0,0.3);
  outline: 6px solid #fff;
  outline-offset: 0;
}
.launch-badge {
  position: absolute;
  bottom: -14px;
  right: -10px;
  background: #10182b;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.3);
}
.launch-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.13;
  color: #1d1810;
  margin-bottom: 1.2rem;
}
.launch-text {
  font-size: 1.12rem;
  line-height: 1.85;
  color: #43382a;
  margin-bottom: 1.6rem;
}

/* ─── CTA ─── */
.cta-section {
  position: relative;
  background:
    radial-gradient(120% 100% at 50% -10%, rgba(232,160,32,0.28), rgba(224,116,44,0.1) 38%, rgba(11,20,38,0) 62%),
    linear-gradient(180deg, #0b1426, #0C1322);
  padding: 5.5rem 1.6rem;
  overflow: hidden;
}
.cta-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.5rem;
  align-items: center;
}
.cta-cover-wrap {
  position: relative;
  width: 210px;
  justify-self: center;
}
.cta-glow {
  position: absolute;
  inset: -14%;
  background: radial-gradient(closest-side, rgba(232,160,32,0.5), transparent 70%);
  filter: blur(22px);
}
.cta-cover-img {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 6px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  animation: floatY 7s ease-in-out infinite;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 30em;
  margin-bottom: 2rem;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #080d18;
  color: #9aa6bb;
  padding: 3.4rem 1.6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-contact h3 {
  color: #E8A020;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #9aa6bb;
}
.footer-contact a {
  color: #9aa6bb;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #E8A020; }
.footer-socials {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.8rem;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #9aa6bb;
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-socials a:hover { color: #E8A020; border-color: #E8A020; }
.footer-brand {
  text-align: right;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: #6b7890;
  font-style: italic;
}
.footer-bottom {
  max-width: 1180px;
  margin: 1.2rem auto 0;
  font-size: 0.78rem;
  color: #6b7890;
  text-align: center;
}

/* ─── PAGE HERO (biografie / nieuws) ─── */
.page-hero-section {
  background: linear-gradient(180deg, #0a1020 0%, #0b1426 100%);
  padding: 5rem 1.6rem 4rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.05;
  color: #fff;
  margin-top: 0.8rem;
}

/* Bio cover */
.bio-cover img {
  width: 100%;
  max-width: 320px;
  display: block;
  border-radius: 6px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 1.6rem;
    padding: 2.4rem 1.3rem 2.8rem;
  }
  .hero-content {
    align-items: center;
    max-width: 460px;
  }
  .cover-wrap { width: 232px; }
  h1 { font-size: 3.2rem; }
  .score-row { justify-content: center; }
  .btn-row { justify-content: center; }
  .pull-quote { text-align: left; }

  .mystery-section { padding: 3.4rem 1.3rem; }
  .mystery-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .mystery-grid h2 { font-size: 2.1rem; }

  .synopsis-section { padding: 3.4rem 1.3rem; }
  .synopsis-title { font-size: 2.1rem; }

  .reviews-section { padding: 3.4rem 1.3rem; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .reviews-header h2 { font-size: 2.1rem; }

  .launch-section { padding: 3.4rem 1.3rem; }
  .launch-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .launch-badge { bottom: -10px; right: 0; }
  .launch-title { font-size: 2.1rem; }

  .cta-section { padding: 3.4rem 1.3rem; }
  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .cta-title { font-size: 2.1rem; }
  .cta-grid .btn-row { justify-content: center; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand { text-align: left; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.7rem; }
  .cover-wrap { width: 200px; }
}

/* ─── COOKIE BANNER ─── */
#fs-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #10182b;
  border-top: 1px solid rgba(232,160,32,0.25);
  padding: 1.2rem 2rem;
}
.fs-cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.fs-cookie-text { flex: 1; }
.fs-cookie-text strong {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.2rem;
}
.fs-cookie-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.fs-cookie-btns {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.fs-cookie-accept {
  background: #E8A020;
  color: #0C1322;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}
.fs-cookie-accept:hover { background: #d4911a; }
.fs-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}
.fs-cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

@media (max-width: 600px) {
  .fs-cookie-inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .fs-cookie-btns { width: 100%; }
  .fs-cookie-accept, .fs-cookie-decline { flex: 1; text-align: center; }
}
