:root {
  --bg: #f3efe8;
  --paper: #fffaf2;
  --text: #241f1a;
  --muted: #6d6359;
  --line: #ddd1c3;
  --accent: #8a321b;
  --accent-strong: #692513;
  --dark: #17120f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
iframe {
  width: 100%;
  display: block;
  border: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 78px;
  background: rgba(255, 250, 242, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.navbar {
  max-width: 1240px;
  min-height: 78px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent);
}

.header-call {
  text-decoration: none;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.header-call:hover {
  background: var(--accent-strong);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.2rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  min-height: 78vh;
  max-height: 85vh;
  width: 100%;
  background-color: #120f0d;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)),
    url("images/IMG_4982.jpeg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 1rem;
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  margin: 0 0 0.8rem 0;
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  line-height: 1.12;
}

.hero p {
  margin: 0 0 1.2rem 0;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

main section {
  padding: 1.2rem 1.25rem;
}

main section > h2 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  margin: 0 0 1.4rem 0;
}

.cards-grid {
  display: grid;
  gap: 1rem;
}

.cards-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid.dishes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1rem;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.icon {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.info-card h3,
.dish-card h3 {
  margin: 0.3rem 0 0.5rem 0;
}

.info-card p,
.dish-card p {
  margin: 0;
  color: var(--muted);
}

.dish-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.dish-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dish-card div {
  padding: 0.9rem;
}

.section-cta {
  margin-top: 1.2rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: center;
}

.split-layout img {
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.value-props {
  background: transparent;
}

.reviews {
  background: var(--paper);
}

.featured {
  background: transparent;
}

.daily-dishes {
  background: var(--paper);
}

.about-preview,
.location {
  background: var(--paper);
}

.reservation-cta {
  text-align: center;
  background: var(--dark);
  color: #fff;
}

.reservation-cta p {
  color: #ddd;
}

.location-copy p {
  margin: 0 0 0.8rem 0;
}

.location iframe {
  min-height: 340px;
  border-radius: 10px;
}

.reviews-note {
  margin-top: -0.5rem;
  color: var(--muted);
}

.cards-grid.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem;
}

.review-card p {
  margin: 0;
}

.review-rating {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.review-user {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta {
  text-decoration: none;
  display: inline-block;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.cta:hover {
  background: var(--accent-strong);
}

.cta.secondary {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.site-footer {
  background: linear-gradient(135deg, #2a1e18 0%, #3b2a21 45%, #51372a 100%);
  border-top: 1px solid #6f4d3a;
  padding: 2.6rem 1.25rem 1.1rem 1.25rem;
  color: #f6eadb;
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-grid section {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 1rem;
  backdrop-filter: blur(2px);
}

.site-footer h2 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd8a9;
}

.site-footer ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.site-footer p {
  margin: 0.35rem 0;
}

.site-footer a {
  color: #fff3e2;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffd8a9;
}

.site-footer li + li {
  margin-top: 0.4rem;
}

.site-footer .cta.secondary {
  border-color: #ffd8a9;
  color: #ffd8a9;
}

.site-footer .cta.secondary:hover {
  background: #ffd8a9;
  color: #3a271d;
}

.copyright {
  max-width: 1240px;
  margin: 1.15rem auto 0 auto;
  color: #e5c8aa;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 0.9rem;
}

.mobile-call {
  display: none;
}

.about-page main section {
  padding: clamp(1.4rem, 2.2vw, 2rem) 1.25rem;
}

.about-page .text-limit {
  max-width: 720px;
}

.about-page .centered {
  margin: 0 auto;
  text-align: center;
}

.about-hero {
  min-height: 45vh;
  max-height: 60vh;
  width: 100%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
    url("images/IMG_5043.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.about-hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.about-story,
.about-philosophy,
.about-signature,
.about-atmosphere,
.about-location {
  background: var(--paper);
}

.about-gallery-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.about-gallery-grid img {
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-v2 main {
  background: linear-gradient(180deg, #f8f3ec 0%, #f3ece1 100%);
}

.about-v2 main section {
  padding: clamp(1.8rem, 2.8vw, 2.8rem) 1.25rem;
}

.about-v2 .about2-hero {
  background: transparent;
}

.about2-hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.about2-hero-grid > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(1.2rem, 2vw, 1.8rem);
}

.about2-kicker {
  margin: 0 0 0.6rem 0;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.about2-hero-grid h1 {
  margin: 0 0 0.8rem 0;
  font-size: clamp(1.5rem, 3.3vw, 2.7rem);
  line-height: 1.15;
}

.about2-hero-grid img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.about2-band {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.about2-band p {
  margin: 0;
  text-align: center;
  background: #efe4d3;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem;
  font-weight: 700;
  color: #4c3a2e;
}

.about2-story,
.about2-kitchen,
.about2-atmosphere,
.about2-location {
  max-width: 1240px;
  margin: 0 auto;
}

.about2-story h2,
.about2-kitchen h2,
.about2-atmosphere h2,
.about2-location h2 {
  margin-top: 0;
}

.about2-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.about2-story-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem;
}

.about2-story-grid h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.about2-kitchen-wrap {
  background: #2c221d;
  color: #f5ede3;
  border-radius: 12px;
  padding: clamp(1rem, 2vw, 1.7rem);
}

.about2-kitchen-wrap p,
.about2-kitchen-wrap li {
  color: #e9dbcb;
}

.about2-signature {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0.9rem;
  align-items: stretch;
}

.about2-signature img {
  border-radius: 12px;
  min-height: 320px;
  object-fit: cover;
}

.about2-signature-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about2-gallery-row {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.about2-gallery-row img {
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-page main {
  background: #f7f3ec;
}

.menu-page main section {
  padding: clamp(1.6rem, 2.4vw, 2.4rem) 1.25rem;
}

.menu-hero {
  min-height: 48vh;
  max-height: 62vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("images/IMG_5042.jpeg")
      center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}

.menu-hero-content {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.menu-hero h1 {
  margin: 0 0 0.8rem 0;
  font-size: clamp(1.6rem, 3.7vw, 3rem);
  line-height: 1.15;
}

.menu-center-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.menu-categories,
.menu-daily,
.menu-seasonal {
  max-width: 1240px;
  margin: 0 auto;
}

.menu-seasonal .split-layout {
  align-items: start;
}

.menu-seasonal .split-layout img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 360px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.menu-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.menu-cat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem;
}

.menu-cat-card h3 {
  margin-top: 0;
}

.menu-note {
  margin-top: 1rem;
  color: var(--muted);
}

.daily-slider {
  margin-top: 1rem;
  display: block;
}

.daily-slider-viewport {
  overflow: visible;
}

.daily-slider-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  transition: none;
}

.daily-slider-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.daily-slider-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.daily-slider-card p {
  margin: 0;
  padding: 0.7rem;
  font-weight: 700;
  text-align: center;
}

.reservation-page main {
  background: #f7f3ec;
}

.reservation-page main section {
  padding: clamp(1.6rem, 2.4vw, 2.4rem) 1.25rem;
}

.reservation-hero {
  min-height: 44vh;
  max-height: 58vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)),
    url("images/IMG_4978.jpeg") center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}

.reservation-hero-content {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.reservation-contact {
  max-width: 920px;
  margin: 0 auto;
}

.reservation-contact-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.reservation-contact-box p {
  margin: 0.5rem 0;
}

.reservation-steps,
.reservation-when,
.reservation-location {
  max-width: 1240px;
  margin: 0 auto;
}

.reservation-steps {
  max-width: 760px;
  text-align: center;
}

.reservation-steps ul,
.reservation-when ul {
  padding-left: 1.15rem;
}

.reservation-steps ul {
  list-style-position: inside;
  padding-left: 0;
}

.reservation-location iframe {
  min-height: 340px;
  border-radius: 10px;
}

body.cookie-modal-open {
  overflow: hidden;
}

.cookie-consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  margin: 0 auto;
  width: min(980px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.98);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.cookie-consent-banner[hidden] {
  display: none;
}

.cookie-consent-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent-content h2 {
  margin: 0 0 0.3rem 0;
  font-size: 1.1rem;
}

.cookie-consent-content p {
  margin: 0;
  color: var(--muted);
}

.cookie-consent-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.62rem 0.95rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.cookie-btn:focus-visible,
.cookie-settings-trigger:focus-visible,
.cookie-modal-close:focus-visible,
.cookie-switch input:focus-visible + .cookie-switch-track {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.cookie-btn-primary {
  background: var(--accent);
  color: #fff;
}

.cookie-btn-primary:hover {
  background: var(--accent-strong);
}

.cookie-btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
}

.cookie-btn-secondary:hover {
  background: #f5ede3;
}

.cookie-btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--text);
}

.cookie-btn-ghost:hover {
  color: var(--accent);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 18, 15, 0.55);
}

.cookie-modal-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: min(88vh, 740px);
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.25);
  transform: translateY(14px);
  transition: transform 0.18s ease;
}

.cookie-modal.is-visible .cookie-modal-dialog {
  transform: translateY(0);
}

.cookie-modal-dialog h2 {
  margin: 0 0 0.4rem 0;
}

.cookie-modal-dialog > p {
  margin: 0 0 1rem 0;
  color: var(--muted);
}

.cookie-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  border: 0;
  background: #efe4d3;
  color: var(--text);
  border-radius: 999px;
  width: 2rem;
  height: 2rem;
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
}

.cookie-category-list {
  display: grid;
  gap: 0.7rem;
}

.cookie-category-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
}

.cookie-category-item h3 {
  margin: 0 0 0.15rem 0;
}

.cookie-category-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.cookie-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch-track {
  position: relative;
  width: 2.8rem;
  height: 1.55rem;
  border-radius: 999px;
  background: #cec1b2;
  transition: background-color 0.18s ease;
}

.cookie-switch-track::after {
  content: "";
  position: absolute;
  top: 0.14rem;
  left: 0.14rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.18s ease;
}

.cookie-switch input:checked + .cookie-switch-track {
  background: var(--accent);
}

.cookie-switch input:checked + .cookie-switch-track::after {
  transform: translateX(1.24rem);
}

.cookie-switch-locked {
  opacity: 0.85;
}

.cookie-switch-text {
  font-weight: 700;
  color: var(--muted);
}

.cookie-modal-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-settings-footer {
  max-width: 1240px;
  margin: 0.75rem auto 0 auto;
  display: flex;
  justify-content: flex-end;
}

.cookie-settings-trigger {
  border: 1px solid rgba(255, 216, 169, 0.75);
  background: transparent;
  color: #ffd8a9;
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cookie-settings-trigger:hover {
  background: rgba(255, 216, 169, 0.15);
}

@media (max-width: 1024px) {
  .cards-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid.three,
  .about-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about2-hero-grid,
  .about2-signature,
  .about2-story-grid,
  .about2-band,
  .about2-gallery-row,
  .menu-cat-grid {
    grid-template-columns: 1fr;
  }

  .daily-slider {
    display: block;
  }

  .daily-slider-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-consent-banner {
    grid-template-columns: 1fr;
    width: min(640px, calc(100% - 2rem));
  }

  .cookie-consent-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 1.25rem 1rem 1.25rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header.nav-open .nav-panel {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .brand-logo {
    height: 42px;
    max-width: 190px;
  }

  .split-layout,
  .cards-grid.three,
  .cards-grid.dishes,
  .cards-grid.reviews-grid,
  .about-gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  main section {
    padding: 1rem 1rem;
  }

  .hero {
    min-height: 74vh;
  }

  .mobile-call {
    display: inline-block;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
    z-index: 30;
    text-decoration: none;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  }

  body {
    padding-bottom: 3.9rem;
  }

  .cookie-consent-banner {
    bottom: 4.8rem;
    width: calc(100% - 1.5rem);
    left: 0.75rem;
    right: 0.75rem;
  }

  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1 1 auto;
    text-align: center;
  }

  .cookie-category-item {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .cookie-settings-footer {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .daily-slider-track {
    grid-template-columns: 1fr;
  }
}
