/* ==========================================================================
   Balayı Rehberi — Shared tokens & base
   ========================================================================== */

:root {
  /* Palette — soft pink + deep navy (balayivillasi inspired) */
  --cream: #FDF9F9;
  --powder: #FDF1F2;
  --powder-2: #F9E2E6;
  --sand: #F3DFE3;
  --ink: #221A52;
  --ink-2: #3A2F6B;
  --muted: #989FB5;
  --line: #F3DFE3;
  --line-2: #EAD0D5;

  /* Accent */
  --wine: #D84D64;
  --wine-ink: #AB3549;
  --wine-soft: #FDF1F2;
  --gold: #FFBA52;

  /* Tokens */
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;
  --r-pill: 999px;
  --shadow-1: 0 1px 2px rgba(34,26,82,.04), 0 8px 24px rgba(34,26,82,.06);
  --shadow-2: 0 2px 4px rgba(34,26,82,.05), 0 18px 40px rgba(34,26,82,.09);

  /* Font stacks */
  --font-display: "Poppins", "Helvetica Neue", system-ui, sans-serif;
  --font-body: "Montserrat", "Helvetica Neue", system-ui, -apple-system, sans-serif;

  /* Card density */
  --card-pad: 18px;
  --card-gap: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
 .site-header .logo { max-width: 100px!important; }
/* Typography */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.display i, h1 i, h2 i, h3 i { font-style: normal; color: var(--wine); font-weight: 600; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 500;
}

/* Layout */
.page { max-width: 1440px; margin: 0 auto; background: var(--cream); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* Hamburger toggle button (visible on mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 38px; height: 38px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

body.nav-open { overflow: hidden; }

/* ===== Responsive breakpoints ===== */
@media (max-width: 1280px) {
  .site-header { padding: 18px 28px; }
  .container { padding: 0 28px; }
}
@media (max-width: 1080px) {
  .site-header { padding: 16px 22px; }
  .container { padding: 0 22px; }
  /* Hide desktop nav, show hamburger; nav becomes drawer */
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 22px 80px;
    overflow-y: auto;
    z-index: 998;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 14px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }
  .nav .nav-ico { width: 28px; height: 28px; }
  .nav .nav-ico svg { width: 14px; height: 14px; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .site-footer .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .container { padding: 0 16px; }
  .site-header { padding: 12px 16px; gap: 8px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
  .section-head h2 { font-size: 26px; }
  .section-head p, .section-head .more { font-size: 14px; }
  .cat-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .city-card.tall { grid-row: auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .blog-row { grid-template-columns: 1fr; }
  .site-footer .container { grid-template-columns: 1fr; }
  .header-actions { gap: 6px; flex-shrink: 0; }
  .header-actions .icon-btn-search,
  .header-actions .icon-btn-user { display: none !important; }
  .header-cta { display: none !important; }
  .site-header .logo { max-width: 100px!important; font-size: 15px; gap: 6px; flex-shrink: 1; min-width: 0; overflow: hidden; }
  .site-header .logo .mark { width: 24px; height: 24px; font-size: 11px; flex-shrink: 0; }
  .site-header .logo b, .site-header .logo i { white-space: nowrap; }
  .site-header .logo i { display: none; } /* hide italic part on tiny screens to save space */
  .nav-toggle { width: 36px; height: 36px; padding: 8px; }
  /* Buttons */
  .btn-lg { padding: 12px 22px; font-size: 14px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* =================== Buttons =================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 500; font-size: 14px;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--wine); color: #fff; }
.btn-primary:hover { background: var(--wine-ink); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: #fff; }
.btn-light { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-light:hover { border-color: var(--ink); }
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* =================== Header =================== */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 22px 40px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.site-header > * { min-width: 0; }
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
}
.logo .mark {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--wine);
  display: grid; place-items: center;
  color: #fff; font-size: 13px; font-style: italic;
  font-family: var(--font-display);
}
.logo b { font-weight: 400; }
.logo i { font-style: italic; color: var(--wine); }

.nav { display: flex; gap: 18px; align-items: center; }
.nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  transition: color .15s;
}
.nav .nav-ico {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--powder);
  color: var(--wine);
  transition: background .15s, color .15s;
}
.nav .nav-ico svg { width: 13px; height: 13px; }
.nav a:hover, .nav a.active { color: var(--wine); }
.nav a.active { font-weight: 600; }
.nav a.active .nav-ico,
.nav a:hover .nav-ico { background: var(--wine); color: #fff; }

@media (max-width: 1280px) {
  .nav { gap: 14px; }
  .nav a { font-size: 12px; gap: 5px; }
  .nav .nav-ico { width: 20px; height: 20px; }
  .nav .nav-ico svg { width: 11px; height: 11px; }
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  transition: all .15s;
}
.icon-btn:hover { color: var(--wine); border-color: var(--wine); }

/* =================== Footer =================== */
.site-footer {
  background: #fff;
  color: var(--ink);
  padding: 72px 0 0;
  font-size: 14px;
  border-top: 1px solid var(--line);
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr auto;
  gap: 40px;
  align-items: flex-start;
}
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-footer a {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 400;
  transition: color .15s;
}
.site-footer a:hover { color: var(--wine); }

/* Brand column */
.site-footer .brand-col { padding-right: 12px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink) !important;
}
.footer-logo .mark {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--wine);
  color: var(--wine);
  display: grid; place-items: center;
}
.footer-logo .mark svg { fill: var(--wine); stroke: var(--wine); }
.footer-logo .logo-text b { font-weight: 700; color: var(--ink); display: block; }
.footer-logo .logo-text i { font-style: normal; color: var(--ink-2); font-size: 13px; letter-spacing: .15em; font-weight: 500; }

.footer-addr {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 14px;
  font-size: 14px;
}
.footer-mail {
  display: inline-block;
  color: var(--muted) !important;
  margin-bottom: 28px;
  font-size: 14px;
}
.footer-mail:hover { color: var(--wine) !important; }

.footer-call {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.footer-call .call-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--wine);
  color: var(--wine);
  display: grid; place-items: center;
}
.footer-call .call-text small {
  display: block;
  font-size: 11px;
  color: var(--wine);
  letter-spacing: .12em;
  text-transform: lowercase;
  margin-bottom: 2px;
}
.footer-call .call-text strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.footer-social .social-label {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.site-footer .socials { display: flex; gap: 10px; }
.site-footer .socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: #fff;
  color: var(--ink-2);
  display: grid; place-items: center;
  transition: all .15s;
}
.site-footer .socials a:hover { border-color: var(--wine); color: var(--wine); }

/* Payment column */
.footer-payment {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.taksit-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px 22px;
  border: 2px solid var(--wine);
  border-radius: 4px;
  text-align: center;
  position: relative;
  min-width: 180px;
}
.taksit-top, .taksit-bot {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.taksit-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--wine);
  line-height: 1;
  margin: 4px 0;
}
.taksit-box::after {
  content: "+";
  position: absolute;
  bottom: -16px; right: 50%;
  transform: translateX(50%);
  width: 24px; height: 24px;
  background: #fff;
  color: var(--wine);
  font-size: 22px;
  font-weight: 700;
  display: grid; place-items: center;
}

.secure-pay {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 500;
}
.secure-pay svg { color: var(--wine); }

.card-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.card-logos span {
  padding: 4px 6px;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: center;
  background: #fff;
}

/* Bottom partner brand row */
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 48px auto 0;
  padding: 28px 40px;
  border-top: 1px solid var(--line);
}
.partner-brands {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.partner { font-weight: 500; }
.partner-bold { color: var(--wine); font-weight: 700; }
.partner-sep {
  width: 1px;
  height: 18px;
  background: var(--line-2);
}

.footer-badges { display: flex; align-items: center; gap: 16px; }
.tursab-badge, .eticaret-badge {
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: #fff;
  font-size: 11px;
  line-height: 1.3;
}
.tursab-badge strong, .eticaret-badge strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.tursab-badge small, .eticaret-badge small { color: var(--muted); font-size: 10px; }
.tursab-no { color: var(--wine); font-size: 11px; margin-top: 2px; }
.tursab-no b { font-weight: 700; }
.eticaret-badge strong { color: var(--wine); }

/* Copyright strip */
.footer-copyright {
  background: var(--powder);
  padding: 18px 0;
  margin-top: 0;
}
.footer-copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }
  .footer-payment { grid-column: 1 / -1; flex-direction: row; align-items: center; flex-wrap: wrap; }
}
@media (max-width: 720px) {
  .site-footer { padding: 48px 0 0; }
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-payment { flex-direction: column; align-items: flex-start; }
  .footer-bottom-row { padding: 20px 24px; }
  .partner-brands { gap: 12px; font-size: 13px; }
  .footer-copyright .container { flex-direction: column; gap: 6px; text-align: center; }
}

/* =================== Cards =================== */
.card {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.card .media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--powder-2);
  overflow: hidden;
}
.card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .media img { transform: scale(1.04); }
.card .badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(251,247,242,.95);
  color: var(--ink); font-size: 11px;
  padding: 5px 10px; border-radius: var(--r-pill);
  letter-spacing: .04em; font-weight: 500;
  backdrop-filter: blur(4px);
}
.card .badge.wine { background: var(--wine); color: #fff; }
.card .fav {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: all .15s;
  backdrop-filter: blur(4px);
}
.card .fav:hover, .card .fav.on { color: var(--wine); background: #fff; }
.card .body { padding: var(--card-pad); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card .meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); }
.card .meta .loc { display: flex; align-items: center; gap: 4px; }
.card h3 { font-size: 19px; line-height: 1.25; }
.card .desc { color: var(--ink-2); font-size: 13px; line-height: 1.5; margin: 0; }
.card .footer {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 12px; margin-top: auto; border-top: 1px solid var(--line);
}
.card .price .from { font-size: 11px; color: var(--muted); display: block; }
.card .price .amount { font-family: var(--font-display); font-size: 22px; color: var(--wine); }
.card .price .per { font-size: 11px; color: var(--muted); }
.card .rating { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--ink); }
.card .rating .star { color: var(--gold); }

/* Compact mode */
body.density-compact {
  --card-pad: 14px;
  --card-gap: 16px;
}
body.density-compact .card h3 { font-size: 17px; }
body.density-compact .card .price .amount { font-size: 19px; }

/* Sans-only mode */
body.type-sans {
  --font-display: "Inter", system-ui, sans-serif;
}
body.type-sans h1, body.type-sans h2, body.type-sans h3 { font-weight: 600; letter-spacing: -0.02em; }
body.type-sans h1 i, body.type-sans h2 i, body.type-sans h3 i { font-style: normal; color: var(--wine); font-weight: 500; }

/* =================== Section headers =================== */
.section { padding: 88px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.section-head .title { max-width: 560px; }
.section-head .title .eyebrow { margin-bottom: 12px; display: block; }
.section-head h2 { font-size: 42px; line-height: 1.1; }
.section-head p { color: var(--ink-2); margin: 12px 0 0; max-width: 480px; }
.section-head .more { font-size: 13px; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; }

/* =================== Utilities =================== */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--card-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--card-gap); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--card-gap); }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--line);
  font-size: 13px; color: var(--ink-2);
  transition: all .15s;
}
.chip:hover, .chip.on { border-color: var(--wine); color: var(--wine); background: var(--wine-soft); }

/* SVG icons */
.i { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.i-sm { width: 14px; height: 14px; }
.i-lg { width: 22px; height: 22px; }

/* WhatsApp floater */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.35);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.06); }

/* Language switcher (header) */
.lang-switch { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; height: 32px; }
.lang-switch a { padding: 0 12px; height: 100%; display: inline-flex; align-items: center; font-size: 12px; font-weight: 500; color: var(--ink-2); text-decoration: none; transition: all .15s ease; }
.lang-switch a:hover { background: var(--cream); color: var(--ink); }
.lang-switch a.active { background: var(--wine); color: #fff; }
@media (max-width: 720px) { .lang-switch { display: none; } }

/* Newsletter form (footer) */
.newsletter-form { margin-top: 18px; }
.newsletter-form label { display: block; font-size: 12px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.newsletter-form .nl-row { display: flex; gap: 6px; background: rgba(255,255,255,.08); border-radius: 999px; padding: 4px; align-items: center; }
.newsletter-form input { flex: 1; background: transparent; border: 0; padding: 8px 14px; color: #fff; font-size: 13px; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form button { width: 36px; height: 36px; border-radius: 50%; border: 0; background: var(--wine); color: #fff; cursor: pointer; display: grid; place-items: center; transition: transform .18s ease; }
.newsletter-form button:hover { transform: scale(1.05); }
.newsletter-form .nl-help, .newsletter-form .nl-msg { display: block; font-size: 11.5px; margin-top: 8px; line-height: 1.4; }
.newsletter-form .nl-help { color: rgba(255,255,255,.55); }
.newsletter-form .nl-success { color: #8edcb1; }
.newsletter-form .nl-error { color: #ff9aaa; }

/* Cookie / KVKK consent banner */
.cookie-consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9999; background: #fff; color: #2A1F1B; border: 1px solid #E4D3C0; border-radius: 14px; box-shadow: 0 12px 40px rgba(0,0,0,.18); max-width: 720px; margin: 0 auto; padding: 16px 20px; animation: cookieIn .35s ease both; }
@keyframes cookieIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.cookie-consent .cookie-inner { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.cookie-consent .cookie-text { flex: 1; min-width: 240px; }
.cookie-consent .cookie-text strong { display: block; font-family: 'Fraunces', serif; font-size: 15px; margin-bottom: 4px; }
.cookie-consent .cookie-text p { font-size: 13px; line-height: 1.5; margin: 0; color: #5b5147; }
.cookie-consent .cookie-text a { color: #6B1E2B; text-decoration: underline; }
.cookie-consent .cookie-actions { display: flex; gap: 8px; }
@media (max-width: 600px) {
    .cookie-consent { left: 8px; right: 8px; bottom: 8px; padding: 14px; }
    .cookie-consent .cookie-actions { width: 100%; }
    .cookie-consent .cookie-actions .btn { flex: 1; justify-content: center; }
}
