:root {
  --bg: #faf3f0;
  --bg-soft: #fff8f6;
  --surface: #ffffff;
  --surface-soft: #fff6f2;
  --surface-dark: #121218;
  --accent: #c91e31;
  --accent-strong: #941424;
  --accent-soft: rgba(201, 30, 49, 0.12);
  --accent-glow: rgba(201, 30, 49, 0.24);
  --gold: #d9b46b;
  --ink: #13151c;
  --text: #171921;
  --text-soft: #646b78;
  --line: rgba(23, 25, 33, 0.1);
  --line-strong: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 22px 56px rgba(16, 18, 24, 0.08);
  --shadow-medium: 0 26px 72px rgba(16, 18, 24, 0.14);
  --shadow-red: 0 22px 56px rgba(201, 30, 49, 0.2);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 30, 49, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(217, 180, 107, 0.09), transparent 20%),
    linear-gradient(180deg, #fff9f7 0%, var(--bg) 42%, #fffaf8 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 25, 33, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 33, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 76%);
  pointer-events: none;
  z-index: -1;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1600;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(217, 180, 107, 0.92);
  outline-offset: 3px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 4px;
  z-index: 1400;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent), var(--gold));
  box-shadow: 0 0 18px var(--accent-glow);
}

.section,
.site-footer {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 84px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(23, 25, 33, 0.08);
  background: rgba(255, 251, 249, 0.92);
  backdrop-filter: blur(20px) saturate(1.1);
  box-shadow: 0 10px 28px rgba(16, 18, 24, 0.05);
  transition:
    min-height 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.site-header.scrolled {
  min-height: 76px;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(23, 25, 33, 0.1);
  box-shadow: 0 16px 36px rgba(16, 18, 24, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo-shell {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  line-height: 1;
}

.brand-copy small {
  color: var(--text-soft);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-home-link,
.secondary-menu-toggle {
  display: none;
}

.mobile-whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1450;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: #128c7e;
  color: #fff;
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.28);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mobile-whatsapp-fab:hover,
.mobile-whatsapp-fab:focus-visible {
  background: #0f7d71;
  box-shadow: 0 20px 40px rgba(18, 140, 126, 0.34);
  transform: translateY(-2px);
}

.mobile-whatsapp-fab i {
  font-size: 1.3rem;
}

.back-to-top {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1450;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 30, 49, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent);
  box-shadow: 0 16px 34px rgba(16, 18, 24, 0.14);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  box-shadow: 0 20px 40px rgba(16, 18, 24, 0.2);
  transform: translateY(-2px);
}

.site-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 4px;
  margin-left: auto;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(201, 30, 49, 0.08);
  color: var(--accent);
  transform: translateY(-1px);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-red);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(201, 30, 49, 0.24);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 26px rgba(16, 18, 24, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

main {
  padding-top: 84px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 36px;
  width: 100%;
  min-height: calc(100vh - 84px);
  min-height: calc(100svh - 84px);
  padding: clamp(36px, 6vw, 74px) clamp(18px, 4vw, 52px) 64px;
  background:
    radial-gradient(circle at right top, rgba(201, 30, 49, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 32%),
    linear-gradient(135deg, #160f14 0%, #221219 52%, #7d1222 100%);
  border-radius: 0 0 42px 42px;
  box-shadow: 0 42px 110px rgba(16, 18, 24, 0.18);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 100%);
  background-size: 60px 60px;
  opacity: 0.18;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto 0 clamp(18px, 4vw, 52px);
  width: min(420px, 38vw);
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--accent), var(--gold), transparent);
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 680px;
  padding-top: clamp(10px, 2vw, 24px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.section-heading .eyebrow {
  border-color: rgba(201, 30, 49, 0.14);
  background: #fff;
  color: var(--accent);
  box-shadow: 0 12px 28px rgba(201, 30, 49, 0.08);
}

.hero h1,
.section-heading h2,
.item h3,
.promo-card h3,
.location-card h3,
.contact-card h3,
.panel-intro strong,
.hero-quick-card strong,
.highlight-card strong,
.staff-showcase figcaption strong {
  font-family: "Sora", sans-serif;
}

.hero h1 {
  max-width: 12ch;
  margin: 22px 0 0;
  color: #fff;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 36rem;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

.hero-microcopy {
  max-width: 38rem;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.cta,
.cta-outline,
.cta-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

.cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: var(--shadow-red);
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 30px 68px rgba(201, 30, 49, 0.28);
}

.cta-outline {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(10px);
}

.cta-outline:hover,
.cta-outline:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 32px;
}

.highlight-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.highlight-card strong {
  color: #fff;
  font-size: 1rem;
}

.highlight-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-panel {
  display: grid;
  gap: 18px;
  align-self: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: rgba(255, 250, 248, 0.96);
  box-shadow: 0 28px 70px rgba(15, 18, 24, 0.18);
}

.panel-intro {
  display: grid;
  gap: 10px;
}

.panel-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(201, 30, 49, 0.08);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-intro strong {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}

.panel-intro p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.staff-showcase {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, var(--surface-soft));
  overflow: hidden;
}

.staff-showcase img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f4e7e4;
}

.staff-showcase figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
  border-top: 1px solid var(--line);
}

.staff-showcase figcaption strong {
  font-size: 1rem;
}

.staff-showcase figcaption span {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.hero-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-quick-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 18, 24, 0.05);
}

.hero-quick-card i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(201, 30, 49, 0.1);
  color: var(--accent);
  font-size: 1.1rem;
}

.hero-quick-card div {
  display: grid;
  gap: 5px;
}

.hero-quick-card strong {
  font-size: 0.96rem;
  line-height: 1.2;
}

.hero-quick-card span {
  color: var(--text-soft);
  font-size: 0.87rem;
  line-height: 1.45;
}

.panel-contact {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(32, 179, 87, 0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.08), rgba(255, 255, 255, 0.95));
  text-decoration: none;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.panel-contact:hover,
.panel-contact:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(32, 179, 87, 0.28);
  box-shadow: 0 20px 45px rgba(32, 179, 87, 0.12);
}

.panel-contact i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 1.32rem;
  box-shadow: 0 14px 26px rgba(32, 179, 87, 0.18);
}

.panel-contact div {
  display: grid;
  gap: 4px;
}

.panel-contact span {
  color: #237648;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-contact strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: var(--ink);
}

.trust-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 54px rgba(16, 18, 24, 0.16);
}

.trust-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: flex-start;
  gap: 14px;
  min-height: 124px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(217, 180, 107, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.trust-item::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px 80px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201, 30, 49, 0.52), transparent);
  opacity: 0.72;
}

.trust-item i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(145deg, var(--accent), var(--accent-strong)),
    var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(201, 30, 49, 0.2);
  font-size: 1.08rem;
}

.trust-item strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.18;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.52;
}

.section {
  margin-top: 30px;
}

.section-frame {
  padding: 40px;
  border: 1px solid rgba(23, 25, 33, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 247, 0.92));
  box-shadow: var(--shadow-soft);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-heading p {
  max-width: 62ch;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.72;
}

#offerte .section-heading {
  margin-bottom: 24px;
}

#offerte .section-heading p {
  max-width: none;
}

.items,
.location-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.item,
.promo-card,
.location-card,
.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.item:hover,
.promo-card:hover,
.location-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 30, 49, 0.18);
  box-shadow: var(--shadow-medium);
}

.item {
  min-height: 220px;
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(201, 30, 49, 0.12), rgba(201, 30, 49, 0.04));
}

.icon {
  color: var(--accent);
  font-size: 1.4rem;
}

.item h3,
.promo-card h3,
.location-card h3,
.contact-card h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.item p,
.promo-card p,
.location-card p {
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.review-widget-shell {
  width: 100%;
  min-height: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.wordpress-review-widget {
  width: 100%;
  min-height: 0;
}

.review-widget-embed {
  min-width: 0;
}

.review-widget-embed > * {
  min-width: 0;
  max-width: 100%;
}

.review-widget-embed :is(img, iframe) {
  max-width: 100%;
}

.review-widget-embed > :first-child {
  max-width: 100%;
}

.review-rating-summary {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(23, 25, 33, 0.08);
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
}

.review-rating-summary strong {
  color: var(--ink);
}

.review-rating-summary span {
  color: #f5b301;
}

.review-widget-placeholder {
  display: grid;
  place-items: center;
  min-height: 236px;
  padding: 24px;
  border: 1px dashed rgba(21, 25, 34, 0.18);
  border-radius: 20px;
  background: rgba(21, 25, 34, 0.03);
  color: var(--text-soft);
  text-align: center;
}

.review-widget-placeholder strong {
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.review-widget-placeholder p {
  max-width: 42ch;
  margin: 8px 0 0;
  line-height: 1.6;
}

.promo-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.promo-featured {
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top right, rgba(201, 30, 49, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff, #fff6f2);
  border-color: rgba(201, 30, 49, 0.16);
}

.promo-layout .promo-card {
  display: grid;
  grid-template-rows: auto minmax(3.7rem, auto) minmax(5.4rem, auto) 1fr;
  gap: 14px;
}

.promo-featured h3 {
  max-width: 18ch;
  font-size: clamp(1.36rem, 2vw, 1.62rem);
  line-height: 1.14;
}

.promo-featured p {
  max-width: 48ch;
  margin-top: 2px;
}

.promo-layout .promo-card:not(.promo-featured) h3 {
  max-width: 18ch;
  font-size: clamp(1.36rem, 2vw, 1.62rem);
  line-height: 1.14;
}

.promo-layout .promo-card:not(.promo-featured) p {
  max-width: 48ch;
  margin-top: 2px;
}

.promo-tag,
.location-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(201, 30, 49, 0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.promo-tag.soft {
  background: rgba(23, 25, 33, 0.06);
  color: var(--text);
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-self: end;
  margin-top: 0;
}

.promo-featured .promo-actions {
  padding-top: 8px;
}

.promo-layout .promo-card:not(.promo-featured) .promo-actions {
  padding-top: 8px;
}

.promo-cta {
  width: fit-content;
}

.cta-soft {
  border: 1px solid rgba(201, 30, 49, 0.18);
  background: #fff;
  color: var(--accent);
}

.cta-soft:hover,
.cta-soft:focus-visible {
  transform: translateY(-3px);
  background: rgba(201, 30, 49, 0.08);
  border-color: rgba(201, 30, 49, 0.24);
  box-shadow: 0 20px 45px rgba(201, 30, 49, 0.12);
}

.location-grid {
  align-items: stretch;
}

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

.location-card {
  display: grid;
  grid-template-rows: auto auto minmax(3rem, auto) 1fr auto;
  gap: 14px;
  padding: 32px;
}

.location-store-name {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.location-card h3 {
  max-width: 28ch;
  margin-top: 2px;
}

.location-details {
  display: grid;
  align-content: start;
  gap: 12px;
  margin-top: 0;
  padding-top: 2px;
}

.location-details p {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.location-details i {
  margin-top: 3px;
  color: var(--accent);
  font-size: 0.9rem;
  text-align: center;
}

.accent-card {
  background:
    radial-gradient(circle at top right, rgba(217, 180, 107, 0.22), transparent 34%),
    linear-gradient(140deg, rgba(201, 30, 49, 0.98), rgba(124, 18, 34, 0.98));
  border-color: rgba(255, 255, 255, 0.12);
}

.accent-card h3,
.accent-card p,
.accent-card .location-chip,
.accent-card .text-link {
  color: #fff;
}

.accent-card .location-chip {
  background: rgba(255, 255, 255, 0.14);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 20px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "\2192";
  transition: transform 0.25s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.location-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
  padding-top: 10px;
}

.location-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(201, 30, 49, 0.14);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.location-action-button {
  width: 100%;
}

.location-action-button.call {
  background: rgba(201, 30, 49, 0.07);
}

.location-action-button.map {
  background: #fff;
}

.location-action-button:hover,
.location-action-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(201, 30, 49, 0.24);
  box-shadow: 0 14px 28px rgba(201, 30, 49, 0.12);
}

.location-action-button.map:hover,
.location-action-button.map:focus-visible {
  background: rgba(201, 30, 49, 0.04);
}

.contact-frame {
  background:
    radial-gradient(circle at top right, rgba(201, 30, 49, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff, #fff8f5);
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.whatsapp-contact-card {
  justify-content: space-between;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(145deg, #128c7e, #075e54);
  border-color: rgba(255, 255, 255, 0.12);
}

.whatsapp-contact-card h3,
.whatsapp-contact-card p,
.whatsapp-contact-card .location-chip,
.whatsapp-contact-card .text-link {
  color: #fff;
}

.whatsapp-contact-card p {
  margin: 0;
  line-height: 1.6;
}

.whatsapp-contact-card .location-chip {
  background: rgba(255, 255, 255, 0.14);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.contact-method {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 3px;
  align-items: center;
  min-height: 78px;
  padding: 15px;
  border: 1px solid rgba(23, 25, 33, 0.08);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.contact-method:hover,
.contact-method:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(201, 30, 49, 0.18);
  box-shadow: 0 18px 40px rgba(16, 18, 24, 0.08);
}

.contact-method i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-size: 1.18rem;
}

.contact-method span {
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-method strong {
  overflow-wrap: anywhere;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 30px auto 40px;
  padding: 24px 26px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(201, 30, 49, 0.28), transparent 34%),
    rgba(18, 18, 24, 0.98);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(16, 18, 24, 0.18);
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-copy strong {
  font-size: 1rem;
}

.footer-copy span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer-legal-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
  white-space: nowrap;
}

.footer-legal-line small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  line-height: 1.45;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 700;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff;
}

.reveal,
.reveal-up {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.7s ease,
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--delay, 0s);
}

.reveal-up {
  transform: translateY(18px);
}

.reveal.active,
.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-highlights,
  .trust-band,
  .items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-layout {
    grid-template-columns: 1fr;
  }

  .promo-layout .promo-card {
    grid-template-rows: auto;
  }

  .promo-featured {
    grid-row: auto;
  }
}

@media (max-width: 920px) {
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(16, 18, 24, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: flex-start;
    padding: 0 14px;
  }

  .hero {
    padding: 34px 18px 42px;
    border-radius: 0 0 32px 32px;
  }

  .hero-highlights,
  .hero-quick-grid,
  .items,
  .location-grid,
  .contact-grid,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .trust-band {
    margin-top: 18px;
  }

  .trust-item {
    min-height: auto;
  }

  .section-frame,
  .site-footer {
    border-radius: 26px;
  }
}

@media (max-width: 640px) {
  .section,
  .site-footer {
    width: min(calc(100% - 16px), var(--container));
  }

  .site-header {
    min-height: 78px;
    padding: 12px 16px;
  }

  main {
    padding-top: 78px;
  }

  .brand-copy {
    gap: 3px;
  }

  .brand-copy strong {
    font-size: 0.84rem;
    line-height: 1.08;
  }

  .brand-copy small {
    font-size: 0.68rem;
    line-height: 1.1;
  }

  .hero {
    gap: 24px;
    padding: 26px 16px 36px;
    border-radius: 0 0 26px 26px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .hero-pills {
    display: grid;
    width: 100%;
  }

  .hero-pills span,
  .cta,
  .cta-outline,
  .cta-soft {
    width: 100%;
  }

  .cta-wrap,
  .promo-actions {
    width: 100%;
    flex-direction: column;
  }

  .highlight-card,
  .hero-panel,
  .item,
  .promo-card,
  .location-card,
  .contact-card {
    border-radius: 22px;
  }

  .location-card {
    grid-template-rows: auto;
    gap: 16px;
    padding: 24px;
  }

  .location-card h3 {
    max-width: none;
  }

  .hero-panel {
    padding: 18px;
  }

  .trust-band {
    padding: 10px;
    border-radius: 22px;
  }

  .trust-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 15px;
    border-radius: 18px;
  }

  .trust-item::after {
    inset: auto 15px 12px 71px;
  }

  .trust-item i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .panel-contact {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .panel-contact i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .section-frame {
    padding: 26px 18px;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 22px 16px;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
    width: 100%;
    gap: 8px;
  }

  .footer-nav a,
  .footer-link-button {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    min-width: 130px;
  }

  .footer-legal-line {
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }

  .mobile-whatsapp-fab {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
    min-height: 48px;
    justify-content: center;
    gap: 0;
    padding: 0;
  }

  .mobile-whatsapp-fab span {
    display: none;
  }

  .mobile-whatsapp-fab i {
    font-size: 1.25rem;
  }

  .back-to-top {
    left: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }

  .location-actions {
    grid-template-columns: 1fr;
  }

  .review-widget-shell {
    padding: 16px;
  }

}

@media (max-width: 430px) {
  .site-header {
    gap: 10px;
    padding-inline: 12px;
  }

  .brand {
    gap: 8px;
    max-width: calc(100% - 58px);
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong,
  .brand-copy small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy strong {
    font-size: 0.78rem;
  }

  .brand-copy small {
    font-size: 0.63rem;
  }

  .brand-logo-shell {
    width: 34px;
    height: 34px;
  }

  .hero-quick-card {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 14px;
  }

  .hero-quick-card i {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 0.98rem;
  }

  .contact-method {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 72px;
    padding: 13px;
  }

  .contact-method i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal,
  .reveal-up {
    opacity: 1;
    transform: none;
  }
}

body {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3,
.brand-copy strong,
.toolbar-group strong,
.page-card.is-empty::after,
.fallback-panel h2 {
  font-family: "Segoe UI", Arial, sans-serif;
}

.footer-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--accent);
}

.cookie-banner,
.cookie-preferences-panel {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 99999;
  padding: 16px;
  color: var(--text);
}

.cookie-preferences-panel {
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 18, 23, 0.46);
}

.cookie-banner-card,
.cookie-preferences-card {
  width: min(100%, 980px);
  margin-inline: auto;
  border: 1px solid rgba(15, 18, 23, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 90px rgba(15, 18, 23, 0.22);
}

.cookie-banner-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.cookie-preferences-card {
  display: grid;
  gap: 16px;
  max-width: 680px;
  padding: 22px;
}

.cookie-banner-copy strong,
.cookie-preferences-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.cookie-banner-copy p,
.cookie-preferences-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.cookie-banner-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.cookie-banner-links a,
.legal-document a {
  color: var(--accent);
  font-weight: 800;
}

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

.cookie-primary,
.cookie-secondary {
  min-height: 44px;
  border-radius: 12px;
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer;
}

.cookie-primary {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
}

.cookie-secondary {
  border: 1px solid rgba(15, 18, 23, 0.14);
  background: #fff;
  color: var(--text);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(15, 18, 23, 0.1);
  border-radius: 14px;
  background: #fff;
}

.cookie-toggle small {
  display: block;
  color: var(--text-soft);
  line-height: 1.45;
}

.cookie-toggle input {
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
}

.cookie-toggle.is-disabled {
  opacity: 0.74;
}

.legal-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8f4ee 0%, #efe8dd 100%);
}

.legal-header,
.legal-main {
  width: min(calc(100% - 24px), var(--container));
  margin-inline: auto;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.legal-main {
  padding: 24px 0 44px;
}

.legal-document {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(15, 18, 23, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.legal-document h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1;
}

.legal-document h2 {
  margin: 32px 0 10px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-document p,
.legal-document li {
  color: var(--text-soft);
  line-height: 1.75;
}

.legal-document ul {
  padding-left: 20px;
}

.legal-note {
  margin-top: 32px;
  padding: 18px;
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  background: rgba(190, 24, 50, 0.08);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 14px;
}

.legal-table th,
.legal-table td {
  padding: 12px;
  border: 1px solid rgba(15, 18, 23, 0.1);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: rgba(15, 18, 23, 0.05);
}

.volantino-footer {
  width: min(calc(100% - 24px), var(--container));
  margin-inline: auto;
}

@media (max-width: 760px) {
  .cookie-banner-card {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions,
  .cookie-primary,
  .cookie-secondary {
    width: 100%;
  }

  .legal-header {
    position: sticky;
    top: 8px;
    z-index: 1000;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 42px rgba(15, 18, 23, 0.08);
    backdrop-filter: blur(16px);
  }

  .legal-header .brand {
    min-width: 0;
  }

  .legal-header .brand-logo-shell {
    width: 34px;
    height: 34px;
  }

  .legal-header .brand-copy strong {
    max-width: 34vw;
    overflow: hidden;
    font-size: 0.84rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .legal-header .brand-copy small {
    display: none;
  }

  .mobile-home-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 900;
    text-decoration: none;
  }

  .secondary-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(21, 25, 34, 0.1);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
  }

  .secondary-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin-inline: auto;
    border-radius: 999px;
    background: var(--text);
  }

  .legal-header .volantino-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 8px;
    right: 8px;
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(15, 18, 23, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

  .legal-header.secondary-menu-open .volantino-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .legal-table {
    display: block;
    overflow-x: auto;
  }
}

/* Floating cookie banner. */
.cookie-banner {
  inset: auto 18px 18px auto;
  width: min(370px, calc(100% - 24px));
  padding: 0;
}

.cookie-banner-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
}

.cookie-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(15, 18, 23, 0.12);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.cookie-close::before,
.cookie-close::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 9px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.cookie-close::before {
  transform: rotate(45deg);
}

.cookie-close::after {
  transform: rotate(-45deg);
}

.cookie-banner-copy {
  padding-right: 18px;
}

.cookie-banner-copy strong {
  font-size: 0.98rem;
}

.cookie-banner-copy p {
  font-size: 0.88rem;
  line-height: 1.42;
}

.cookie-banner-links {
  gap: 10px;
  margin-top: 8px;
  font-size: 0.86rem;
}

.cookie-banner-actions {
  justify-content: stretch;
}

.cookie-banner-actions .cookie-primary,
.cookie-banner-actions .cookie-secondary {
  flex: 1 1 0;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 0.82rem;
}

@media (max-width: 760px) {
  .cookie-banner {
    inset: auto 12px 12px 12px;
    width: auto;
  }
}
