/* ============================================
   misz-masz — Wojsławice, Rynek 39
   Tokeny: granat / czerwień / żółty jak na plakietce logo
   ============================================  */
    
:root {
  --navy: #1C2170;
  --navy-deep: #12154A;
  --red: #E42313;
  --red-deep: #B81A0D;
  --yellow: #FFD54A;
  --yellow-soft: #FFE9A8;
  --cream: #FFF8E7;
  --ink: #2B2B2B;
  --grey-trim: #6E6E6E;
  --white: #FFFFFF;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Baloo 2", "Comic Sans MS", sans-serif;
  --font-mono: "Space Mono", monospace;

  --radius: 18px;
  --shadow-badge: 4px 6px 0 var(--navy-deep);
  --shadow-soft: 0 10px 30px rgba(28, 33, 112, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 17px;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

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

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--red-deep);
  background: var(--yellow);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  border: 2px solid var(--navy);
  margin-bottom: 14px;
}

/* ============ HEADER ============ */

.site-header {
  background: var(--navy);
  border-bottom: 6px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }

.brand-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-family: var(--font-mono);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  opacity: 0.85;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.site-nav a:hover { color: var(--yellow); }

.nav-cta {
  background: var(--red);
  padding: 8px 18px;
  border-radius: 999px;
  border: 2px solid var(--yellow);
}
.nav-cta:hover { color: var(--white) !important; background: var(--red-deep); }

.hours-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--yellow-soft);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 5px 12px;
}
.hours-badge.hours-open { color: #1B6E1B; background: #DFF5DD; border-color: #1B6E1B; }
.hours-badge.hours-closed { color: var(--white); background: var(--red); border-color: var(--yellow); }

.hours-table { width: 100%; border-collapse: collapse; font-family: var(--font-mono); font-size: 0.88rem; }
.hours-table td { padding: 6px 4px; border-bottom: 1px dashed rgba(0,0,0,0.15); color: var(--ink); }
.hours-table td:first-child { font-weight: 700; color: var(--navy); }
.hours-table td:last-child { text-align: right; }

.nav-toggle-input { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
    display: none;
    border-bottom: 6px solid var(--red);
  }
  .nav-toggle-input:checked ~ .site-nav { display: flex; }
  .nav-cta { align-self: flex-start; }
  .brand { gap: 8px; }
  .brand-badge { width: 44px; height: 44px; }
  .brand-name { font-size: 1.2rem; }
  .brand-sub { font-size: 0.58rem; letter-spacing: 0.08em; }
}

/* ============ HERO ============ */

.hero {
  background: var(--navy);
  background-image: radial-gradient(circle at 85% 20%, rgba(255,213,74,0.18), transparent 45%),
                     radial-gradient(circle at 10% 90%, rgba(228,35,19,0.25), transparent 40%);
  color: var(--white);
  padding: 72px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-badge-wrap { order: -1; margin: 0 auto; }
}

.hero h1 { color: var(--white); }
.hero h1 span { color: var(--yellow); }

.hero-lead {
  font-size: 1.15rem;
  color: var(--yellow-soft);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

@media (max-width: 860px) {
  .hero-actions { justify-content: center; }
}

.btn {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 3px solid var(--navy-deep);
  display: inline-block;
  cursor: pointer;
  box-shadow: var(--shadow-badge);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover {
  text-decoration: none;
  transform: translate(2px, 3px);
  box-shadow: 1px 2px 0 var(--navy-deep);
}

.btn-primary { background: var(--red); color: var(--white); border-color: var(--yellow); }
.btn-primary:hover { color: var(--white); }
.btn-secondary { background: var(--yellow); color: var(--navy); }
.btn-secondary:hover { color: var(--navy); }

.hero-badge-wrap {
  display: flex;
  justify-content: center;
}

.hero-badge {
  width: min(280px, 60vw);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.35));
  animation: spin-in 900ms ease-out;
}

@keyframes spin-in {
  from { transform: rotate(-8deg) scale(0.9); opacity: 0; }
  to { transform: rotate(0deg) scale(1); opacity: 1; }
}

/* ============ SECTIONS ============ */

section { padding: 64px 0; }
.section-alt { background: var(--yellow-soft); }
.section-center { text-align: center; }

/* Category "hangtags" — signature element */

.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.tag-card {
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-badge);
  position: relative;
  transition: transform 0.15s ease;
}
.tag-card:nth-child(odd) { transform: rotate(-1.2deg); }
.tag-card:nth-child(even) { transform: rotate(1.2deg); }
.tag-card:hover { transform: rotate(0deg) translateY(-4px); }

.tag-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 24px;
  width: 18px;
  height: 18px;
  background: var(--red);
  border: 2px solid var(--navy);
  border-radius: 50%;
}

.tag-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.tag-card h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.tag-card p {
  font-size: 0.92rem;
  color: var(--ink);
  margin: 0;
}

/* Info strip */

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

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

.info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  border: 3px solid var(--navy-deep);
}

.info-card .eyebrow { background: var(--red); color: var(--white); border-color: var(--yellow); }

.info-card h3 { color: var(--yellow); }
.info-card p { color: var(--yellow-soft); margin: 0; }
.info-card a { color: var(--white); text-decoration: underline; }

/* CTA banner (like the red banner on the logo) */

.cta-banner {
  background: var(--red);
  border-top: 6px solid var(--navy);
  border-bottom: 6px solid var(--navy);
  padding: 46px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--yellow); }
.cta-banner p { color: var(--white); font-size: 1.05rem; }

/* ============ PAGE HEADER (subpages) ============ */

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--yellow-soft); max-width: 60ch; margin: 0 auto; }

/* ============ O NAS ============ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }

.about-badge {
  background: var(--yellow);
  border: 4px solid var(--navy);
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-shadow: var(--shadow-badge);
  max-width: 340px;
  margin: 0 auto;
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.value-list li {
  background: var(--white);
  border-left: 6px solid var(--red);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
}
.value-list strong { color: var(--navy); }

/* ============ DOJAZD ============ */

.map-wrap {
  border: 4px solid var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-badge);
  margin-top: 30px;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.route-card {
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-badge);
}
.route-card .eyebrow { margin-bottom: 10px; }

/* ============ KONTAKT ============ */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-badge);
  margin-bottom: 20px;
}
.contact-card h3 { margin-bottom: 8px; }
.contact-card a { font-family: var(--font-mono); font-size: 1.05rem; }

form.contact-form {
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-badge);
  display: grid;
  gap: 16px;
}

.contact-form label {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
  display: block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid var(--grey-trim);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--cream);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  outline: none;
}

.contact-form button {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: var(--red);
  color: var(--white);
  border: 3px solid var(--navy);
  border-radius: 999px;
  padding: 14px 22px;
  cursor: pointer;
  box-shadow: var(--shadow-badge);
  justify-self: start;
}
.contact-form button:hover {
  transform: translate(2px, 3px);
  box-shadow: 1px 2px 0 var(--navy-deep);
}

.form-note {
  font-size: 0.82rem;
  color: var(--grey-trim);
}

.form-status {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: 8px;
  display: none;
}
.form-status.visible { display: block; }
.form-status.ok { background: #DFF5DD; color: #1B6E1B; border: 2px solid #1B6E1B; }
.form-status.err { background: #FCE0DD; color: var(--red-deep); border: 2px solid var(--red-deep); }

/* ============ GALERIA ============ */

.gallery-board {
  background: #C9A876;
  background-image: radial-gradient(rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 8px 8px;
  border-radius: var(--radius);
  border: 4px solid var(--navy);
  padding: 40px 30px;
  margin-top: 30px;
}

.gallery-grid {
  display: none;
}

.carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 460px;
  margin: 0 auto;
}

.carousel-track {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

/* każdy slajd leży w tym samym miejscu (inset:0); JS przełącza tylko klasę is-active,
   dzięki czemu zmiana zdjęcia nie zależy od wyliczania szerokości/transform całego toru */
.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.carousel-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* obrót polaroidu wg pozycji slajdu, nie samego .polaroid (który jest jedynym dzieckiem, więc nth-child na nim zawsze trafiał w 1) */
.carousel-slide:nth-child(3n+1) .polaroid { transform: rotate(-3deg); }
.carousel-slide:nth-child(3n+2) .polaroid { transform: rotate(2deg); }
.carousel-slide:nth-child(3n+3) .polaroid { transform: rotate(-1deg); }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}

.carousel-counter {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--navy);
  min-width: 52px;
  text-align: center;
}

.carousel-arrow {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid var(--navy);
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-badge);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover { background: var(--red); color: var(--white); border-color: var(--yellow); }

.carousel-hint {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--navy);
  margin-top: 14px;
}

/* domyślnie (i jako fallback) tekst o muśnięciu; na urządzeniach z myszką (hover + dokładny wskaźnik) zamieniamy na tekst o kliknięciu */
.carousel-hint-desktop { display: none; }
.carousel-hint-mobile { display: block; }

@media (hover: hover) and (pointer: fine) {
  .carousel-hint-mobile { display: none; }
  .carousel-hint-desktop { display: block; }
}

@media (max-width: 600px) {
  .carousel-arrow { width: 44px; height: 44px; font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  section { padding: 44px 0; }
  .hero { padding: 48px 0 64px; }
  .page-hero { padding: 40px 0 44px; }
  .cta-banner { padding: 36px 0; }
  .gallery-board { padding: 24px 14px; }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18, 21, 74, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--yellow);
  background: var(--red);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { background: var(--red-deep); }
.polaroid {
  width: 100%;
  background: var(--white);
  padding: 12px 12px 46px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  position: relative;
}
.polaroid:hover { transform: rotate(0deg) scale(1.03); z-index: 2; transition: transform 0.15s ease; }

.polaroid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--cream);
}

.polaroid figcaption {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink);
  text-align: center;
  margin-top: 10px;
}

.polaroid::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 60px;
  height: 22px;
  background: rgba(255,213,74,0.85);
  border: 1px solid rgba(0,0,0,0.1);
}

.gallery-empty {
  text-align: center;
  color: var(--navy);
  font-family: var(--font-mono);
  padding: 30px;
}

/* ============ PROMO BANNER (home) ============ */

.promo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 14px 20px;
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 1rem;
  border-bottom: 4px solid var(--yellow);
  animation: pulse-banner 1.8s ease-in-out infinite;
}
.promo-banner:hover { text-decoration: none; background: var(--red-deep); }
.promo-banner-icon { font-size: 1.3rem; }

@keyframes pulse-banner {
  0%, 100% { box-shadow: 0 0 0 rgba(228,35,19,0); }
  50% { box-shadow: 0 0 22px rgba(228,35,19,0.55); }
}

@media (max-width: 700px) {
  .promo-banner { font-size: 0.82rem; padding: 12px 14px; }
}

/* ============ KUPONY ============ */

.coupon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.coupon-card {
  background: var(--white);
  border: 3px dashed var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-badge);
  position: relative;
  transform: rotate(-1deg);
}
.coupon-card:nth-child(even) { transform: rotate(1deg); }

.coupon-badge {
  background: var(--red);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 2.6rem;
  text-align: center;
  padding: 18px 10px 10px;
  letter-spacing: 0.02em;
}

.coupon-body {
  padding: 18px 22px 8px;
  text-align: center;
}
.coupon-body h3 { margin-bottom: 8px; }
.coupon-body p { font-size: 0.92rem; }

.coupon-perforation {
  border-top: 3px dashed var(--grey-trim);
  margin: 0 18px;
  position: relative;
}
.coupon-perforation::before,
.coupon-perforation::after {
  content: "";
  position: absolute;
  top: -11px;
  width: 20px;
  height: 20px;
  background: var(--cream);
  border-radius: 50%;
}
.coupon-perforation::before { left: -30px; }
.coupon-perforation::after { right: -30px; }

.coupon-footer {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--grey-trim);
  padding: 12px 16px 20px;
   }
.coupon-empty {
  text-align: center;
  background: var(--white);
  border: 4px dashed var(--navy);
  border-radius: var(--radius);
  padding: 60px 30px;
  margin-top: 20px;
}
.coupon-empty-icon {
  font-size: 3.2rem;
  display: block;
  margin-bottom: 14px;
}
.coupon-empty h2 { margin-bottom: 10px; }
.coupon-empty p {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 26px;
}

/* ============ FOOTER ============ */

.site-footer {
  background: var(--navy-deep);
  color: var(--yellow-soft);
  padding: 50px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

.footer-brand { display: flex; gap: 12px; align-items: flex-start; }
.footer-badge { width: 46px; height: 46px; border-radius: 50%; }
.footer-brand p { color: var(--white); font-family: var(--font-display); font-size: 1.05rem; margin: 0; text-transform: uppercase; }
.footer-brand span { font-family: var(--font-body); text-transform: none; font-size: 0.78rem; color: var(--yellow-soft); }

.footer-label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--yellow);
  display: block;
  margin-bottom: 10px;
}

.footer-col a { color: var(--yellow-soft); }
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  padding: 18px 24px;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255,255,255,0.6);
}

/* ============ BANER RODO / COOKIES ============ */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: var(--navy-deep);
  border-top: 4px solid var(--yellow);
}
.cookie-banner[hidden] { display: none; }

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
}

.cookie-banner-inner p {
  color: var(--yellow-soft);
  font-size: 0.88rem;
  margin: 0;
  flex: 1 1 320px;
}

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

.cookie-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid var(--yellow);
}

.cookie-btn-solid { background: var(--red); color: var(--white); }
.cookie-btn-solid:hover { background: var(--red-deep); }

.cookie-btn-outline { background: transparent; color: var(--yellow); }
.cookie-btn-outline:hover { background: var(--yellow); color: var(--navy-deep); }

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

@media (max-width: 480px) {
  .cookie-banner-inner { padding: 14px 16px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1 1 auto; text-align: center; }
}
