/* ===========================================
   DARK TRUMPS GAMES — Design System
   =========================================== */

:root {
  --bg: #0a0a0a;
  --bg-panel: #161616;
  --bg-panel-raised: #1d1d1d;
  --white: #f5f5f5;
  --off-white: #fafafa;
  --grey: #8a8a8a;
  --grey-light: #a8a8a8;
  --grey-dim: #5e5e5e;
  --red: #ff4336;
  --red-dark: #e8392d;
  --teal: #3dccc0;
  --teal-dark: #1a8f86;
  --border: #2a2a2a;
  --border-light: #e5e5e5;

  --font-display: "Oswald", Helvetica, Arial, Lucida, sans-serif;
  --font-body: "Oswald", Helvetica, Arial, Lucida, sans-serif;

  --max-width: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-dark);
}

.script-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--red-dark);
}

.lede {
  font-size: 1.15rem;
  color: var(--grey);
  max-width: 640px;
}

/* ---------- Layout ---------- */

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.pole-divider {
  width: 2px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.section--tight {
  padding: 40px 0;
}

/* ---------- Top bar / age gate strip ---------- */

.age-strip {
  background: var(--red-dark);
  color: var(--white);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 16px;
}

/* ---------- Header ---------- */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0a0a0a;
  border-bottom: 1px solid var(--border);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo-mark img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--grey-light);
}

.nav-cta {
  background: var(--white);
  color: var(--bg) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  background: var(--red-dark);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 760px) {
  .nav-links { 
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 76%;
    background: var(--bg-panel);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 1px solid var(--border);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: block; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: #ffffff;
  color: #0a0a0a;
  border-radius: 50px;
  font-weight: 600;
}

.btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--white);
}

.btn-block {
  width: 100%;
}

/* ---------- Hero ---------- */

.hero {
  padding: 0;
  background: #0a0a0a;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  max-width: 100%;
  min-height: 540px;
}

.hero-copy {
  padding: 56px 56px 56px 40px;
}

.hero-img-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-img-wrap img {
  border-radius: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-price-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.hero-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
}

.hero-quote {
  margin-top: 28px;
  font-style: italic;
  color: var(--grey-light);
  font-size: 1.15rem;
}

.hero-quote strong {
  color: var(--white);
  font-style: normal;
}

.hero-img-mobile {
  display: none;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-copy {
    padding: 36px 24px;
  }
  .hero-img-wrap img {
    height: auto;
  }
  .hero-img-desktop {
    display: none;
  }
  .hero-img-mobile {
    display: block;
    width: 100vw;
    height: auto;
    object-fit: cover;
    margin-left: calc(-50vw + 50%);
  }
  .hero-img-wrap {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
  }
}

/* ---------- Trust strip ---------- */

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  padding: 28px 0;
  font-size: 0.86rem;
  color: var(--grey);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip span { color: var(--red); }

/* ---------- Cards / grid panels ---------- */

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 760px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Newsletter band ---------- */

.newsletter-band {
  background: var(--bg-panel);
  border-radius: 10px;
  padding: 48px;
  text-align: center;
  border: 1px solid var(--border);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 26px auto 0;
}

.newsletter-form input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: var(--white);
  opacity: 0.85;
}

.newsletter-form input:focus {
  outline: 2px solid var(--red-dark);
  outline-offset: 1px;
}

@media (max-width: 540px) {
  .newsletter-form { flex-direction: column; }
}

/* ---------- FAQ ---------- */

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--red-dark);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--grey);
  margin-top: 14px;
  max-width: 700px;
}

.faq-item p + p { margin-top: 10px; }

/* ---------- Footer ---------- */

footer.site-footer {
  padding: 56px 0 36px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--grey);
  font-size: 0.88rem;
}

.footer-links a:hover { color: var(--white); }

.footer-socials {
  display: flex;
  gap: 18px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-light);
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  color: var(--white);
  border-color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--grey-dim);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ---------- Generic content page ---------- */

.content-page h1 { margin-bottom: 8px; }
.content-page .eyebrow { margin-bottom: 16px; display: block; }
.content-page .lede { margin-bottom: 0; }

.prose p {
  color: var(--grey);
  margin-bottom: 18px;
  max-width: 700px;
}

.prose strong { color: var(--white); }

.quote-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}

.quote-card p:first-child {
  font-style: italic;
  color: var(--white);
  margin-bottom: 14px;
}

.quote-card .quote-byline {
  font-size: 0.85rem;
  color: var(--grey-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Forms ---------- */

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--grey);
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--red-dark);
  outline-offset: 1px;
}

/* ---------- Utility ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--grey);
}

.warning-box {
  background: var(--bg-panel);
  border-left: 3px solid var(--red-dark);
  border-radius: 4px;
  padding: 24px 28px;
}

.warning-box h4 {
  color: var(--red-dark);
  margin-bottom: 10px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.warning-box p {
  color: var(--grey);
  font-size: 0.92rem;
}

::selection {
  background: var(--red-dark);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--red-dark);
  outline-offset: 2px;
}

/* ---------- Red highlight banner (promo strip) ---------- */

.promo-strip {
  display: block;
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 14px 16px;
  transition: background 0.2s ease;
}

.promo-strip:hover {
  background: var(--red-dark);
}

/* ---------- Red highlighted text blocks (hero style) ---------- */

.flagship-heading {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: 0;
}

.highlight-block {
  display: inline-block;
  background: var(--red);
  color: #000000;
  font-weight: 700;
  font-size: 2rem;
  padding: 2px 12px;
  margin-bottom: 4px;
  line-height: 1.05;
  border-radius: 8px;
  text-transform: uppercase;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-break: break-word;
}

.highlight-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  margin: 0 0 24px;
  max-width: 100%;
  width: 100%;
}

/* ---------- Diagonal cut section (Chaos Guide style hero) ---------- */

.diagonal-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 80px 0 120px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
  margin-bottom: -60px;
}

@media (max-width: 760px) {
  .diagonal-hero { clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%); padding-bottom: 90px; }
}

/* ---------- Icon feature grid (Classic/New Games) ---------- */

.icon-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.icon-feature .icon-box {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.icon-feature h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--bg);
}

.icon-feature p {
  color: var(--grey);
  font-size: 0.92rem;
}

.icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

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

.light-section {
  background: var(--off-white);
  color: var(--bg);
  padding: 64px 0 40px;
}

.smart-box {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 40px 44px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

.smart-box p {
  color: #333333;
  margin-bottom: 16px;
}

.smart-box p:last-child {
  margin-bottom: 0;
}

.smart-box strong {
  color: var(--bg);
}

.smart-box a {
  color: var(--bg);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.smart-box a:hover {
  color: var(--red);
}

.light-section h2 {
  color: var(--bg);
  margin-bottom: 28px;
}

/* ---------- Accordion rules (Chaos Guide game modes) ---------- */

.rules-accordion {
  background: var(--off-white);
  padding: 0 0 64px;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-item > summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-weight: 700;
  color: var(--bg);
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f4f4f4;
}

.accordion-item > summary::-webkit-details-marker { display: none; }

.accordion-item > summary::after {
  content: "●";
  color: var(--grey-light);
  font-size: 0.6rem;
}

.accordion-item[open] > summary {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
}

.accordion-body {
  padding: 26px 26px 30px;
  color: var(--bg);
}

.accordion-body p {
  color: #444;
  margin-bottom: 14px;
}

.accordion-body h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 20px 0 10px;
  color: var(--bg);
}

.accordion-body ul {
  margin-bottom: 14px;
}

.accordion-body ul li {
  color: #444;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  font-size: 0.94rem;
}

.accordion-body ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--grey-light);
}

.accordion-body hr {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 18px 0;
}

.accordion-body .drink-line {
  background: #f8f8f8;
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: #444;
}

.players-meta {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 14px;
}

/* ---------- Teal gradient CTA band ---------- */

.teal-cta-band {
  background: linear-gradient(120deg, #0a0a0a 0%, var(--red) 160%);
  padding: 64px 0;
}

.teal-cta-band .cta-card {
  background: var(--white);
  border-radius: 10px;
  padding: 48px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.teal-cta-band .cta-card h2 {
  color: var(--bg);
  margin-bottom: 14px;
}

.teal-cta-band .cta-card p {
  color: var(--grey);
  margin-bottom: 26px;
}

.btn-dark {
  background: var(--bg);
  color: var(--white);
}

.btn-dark:hover {
  background: #222;
}

/* ---------- Review cards (Product page) ---------- */

.review-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 26px;
  color: var(--bg);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bg);
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.review-role {
  font-size: 0.8rem;
  color: var(--teal-dark);
}

.review-stars {
  color: #f5a623;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.review-card p.review-text {
  color: #444;
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.review-date {
  font-size: 0.78rem;
  color: var(--grey-light);
}

/* ---------- Product tabs ---------- */

.product-tabs {
  background: var(--off-white);
  border-radius: 8px;
  overflow: hidden;
  color: var(--bg);
}

.tab-headers {
  display: flex;
  border-bottom: 1px solid var(--border-light);
}

.tab-headers button {
  background: none;
  border: none;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tab-headers button.active {
  color: var(--bg);
  border-bottom-color: var(--red);
}

.tab-panel {
  padding: 32px;
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel p {
  color: #444;
  margin-bottom: 14px;
}

.tab-panel ul li {
  color: #444;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.tab-panel ul li::before {
  position: absolute;
  left: 0;
}

.perfect-for li::before { content: "✓"; color: var(--bg); font-weight: 700; }
.not-for li::before { content: "✕"; color: var(--red); font-weight: 700; }

/* ---------- Cookie Consent Banner ---------- */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--bg-panel-raised);
  border-top: 1px solid var(--border);
  padding: 22px 24px;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 240px;
  color: var(--grey-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: var(--white);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--white);
  color: var(--bg);
}

.cookie-btn-accept:hover {
  background: #f0f0f0;
}

.cookie-btn-reject {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}

.cookie-btn-reject:hover {
  border-color: var(--white);
}

.cookie-btn-settings {
  background: none;
  color: var(--grey-light);
  text-decoration: underline;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 11px 4px;
}

.cookie-settings-panel {
  display: none;
  max-width: var(--max-width);
  margin: 16px auto 0;
}

.cookie-settings-panel.visible {
  display: block;
}

.cookie-category-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.cookie-category-row:first-child {
  border-top: none;
}

.cookie-category-info h5 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.cookie-category-info p {
  color: var(--grey-light);
  font-size: 0.82rem;
  max-width: 520px;
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-toggle-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--red);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background: var(--grey-dim);
  cursor: not-allowed;
}

.cookie-settings-save {
  margin-top: 16px;
}

#cookiePreferencesLink {
  cursor: pointer;
}

@media (max-width: 700px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-actions {
    justify-content: stretch;
  }
  .cookie-banner-actions .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
