:root {
  --ink: #18211f;
  --muted: #66736d;
  --line: #dde5df;
  --surface: #f7f9f6;
  --panel: #ffffff;
  --accent: #0f8b6f;
  --accent-strong: #0a5e4d;
  --warm: #f2b84b;
  --danger: #b84040;
  --shadow: 0 18px 50px rgba(24, 33, 31, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
}

body.age-locked {
  overflow: hidden;
}

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

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 78% 20%, rgba(242, 184, 75, 0.26), transparent 30%),
    linear-gradient(135deg, rgba(13, 24, 22, 0.92), rgba(10, 94, 77, 0.88)),
    rgba(13, 24, 22, 0.92);
}

.age-gate[hidden] {
  display: none;
}

.age-gate-card {
  position: relative;
  width: min(560px, 100%);
  overflow: hidden;
  border-radius: 8px;
  padding: 34px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 247, 0.98)),
    #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.age-gate-card::after {
  content: "18+";
  position: absolute;
  right: -10px;
  bottom: -28px;
  color: rgba(15, 139, 111, 0.08);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.age-gate-logo {
  display: block;
  width: min(260px, 70%);
  max-height: 130px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 14px rgba(24, 33, 31, 0.16));
}

.age-gate-sign {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 82px;
  aspect-ratio: 1;
  border: 6px solid #d83a2e;
  border-radius: 50%;
  background: #fff;
  color: #d83a2e;
  font-weight: 900;
}

.age-gate-sign::after {
  content: "";
  position: absolute;
  width: 118%;
  height: 6px;
  border-radius: 999px;
  background: #d83a2e;
  transform: rotate(-28deg);
}

.age-gate-sign span {
  font-size: 1.6rem;
}

.age-gate-card h2 {
  position: relative;
  margin-bottom: 14px;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1;
}

.age-gate-card p:not(.eyebrow) {
  position: relative;
  max-width: 440px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.age-gate-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.age-gate-actions button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.age-accept {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 139, 111, 0.24);
}

.age-decline {
  background: #f0f4f1;
  color: var(--ink);
}

.site-header {
  min-height: 92vh;
  color: #fff;
  background:
    radial-gradient(circle at 76% 28%, rgba(242, 184, 75, 0.32), transparent 28%),
    linear-gradient(112deg, rgba(13, 24, 22, 0.98), rgba(27, 51, 46, 0.94) 48%, rgba(229, 235, 228, 0.92)),
    url("https://images.unsplash.com/photo-1527780552374-3b1c2463e9f4?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.nav-actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.nav-actions a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-actions a:hover,
.nav-actions a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 184, 75, 0.72);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.nav-actions a:hover::after,
.nav-actions a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  align-items: center;
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto;
  min-height: calc(92vh - 88px);
  padding: 48px 24px 110px;
}

.hero-copy {
  max-width: 640px;
}

.hero-logo {
  display: block;
  width: min(430px, 88vw);
  max-height: 230px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 22px;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.42));
}

.hero-panel {
  display: grid;
  gap: 12px;
  align-self: center;
  justify-self: end;
  width: min(330px, 100%);
}

.hero-panel span {
  border-left: 4px solid var(--warm);
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(6px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--warm);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 7vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
  line-height: 1.7;
}

.hero-values {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 610px;
  margin: 0 0 34px;
}

.hero-values span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--warm);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(8px);
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--warm);
  color: #1f1a0c;
  font-weight: 900;
}

.section,
.catalogue,
.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 24px;
}

.showcase {
  overflow: hidden;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.showcase-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: showcase-scroll 34s linear infinite;
}

.showcase:hover .showcase-track {
  animation-play-state: paused;
}

.showcase-slide {
  overflow: hidden;
  width: clamp(240px, 28vw, 390px);
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(24, 33, 31, 0.08);
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@keyframes showcase-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.compliance,
.footer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: start;
}

.compliance p,
.footer p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.delivery {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: 38px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px;
  border-bottom: 1px solid var(--line);
}

.delivery::before {
  content: "";
  position: absolute;
  inset: 34px auto auto -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 26px solid rgba(15, 139, 111, 0.08);
}

.delivery::after {
  content: "LIVRAISON";
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: rgba(15, 139, 111, 0.055);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.delivery h2 {
  max-width: 720px;
  text-transform: uppercase;
}

.delivery-copy,
.delivery-info {
  position: relative;
  z-index: 1;
}

.delivery-subtitle {
  max-width: 580px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.5;
}

.delivery-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.delivery-steps span {
  border-radius: 8px;
  padding: 9px 11px;
  background: rgba(15, 139, 111, 0.1);
  color: var(--accent-strong);
  font-weight: 900;
}

.delivery-info {
  display: grid;
  gap: 16px;
}

.delivery-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(24, 33, 31, 0.06);
  color: var(--accent-strong);
  font-weight: 900;
  text-transform: uppercase;
}

.delivery-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--warm);
  color: #1f1a0c;
  font-size: 1.3rem;
}

.delivery-badge {
  display: grid;
  justify-items: center;
  gap: 2px;
  border-radius: 8px;
  padding: 22px;
  background: var(--accent-strong);
  color: #fff;
  box-shadow: var(--shadow);
}

.delivery-badge span {
  font-weight: 900;
  text-transform: uppercase;
}

.delivery-badge strong {
  color: var(--warm);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.95;
}

.delivery-areas {
  display: grid;
  gap: 8px;
}

.delivery-areas span {
  position: relative;
  border-radius: 8px;
  padding: 11px 14px 11px 42px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--accent-strong);
  font-weight: 900;
  text-transform: uppercase;
}

.delivery-areas span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--warm);
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(242, 184, 75, 0.2);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  padding: 0 16px;
  background: #2cc44d;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(44, 196, 77, 0.2);
}

.catalogue {
  border-top: 1px solid var(--line);
}

.catalogue-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.search {
  display: grid;
  gap: 8px;
  min-width: min(360px, 100%);
  color: var(--muted);
  font-weight: 800;
}

.search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.filter.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.catalogue-status {
  min-height: 24px;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.page-button,
.page-contact {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.page-button:not(:disabled):hover,
.page-contact:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.page-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.page-current {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(15, 139, 111, 0.1);
  color: var(--accent-strong);
  font-weight: 900;
}

.page-contact {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

.page-contact:hover {
  color: #fff;
  background: var(--accent-strong);
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 24px rgba(24, 33, 31, 0.06);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #edf2ee;
}

.product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #fff;
}

.product-image-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--muted);
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(15, 139, 111, 0.1), rgba(242, 184, 75, 0.16)),
    #eef3ef;
}

.availability {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 8px;
  padding: 7px 9px;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
}

.availability.out {
  background: var(--danger);
}

.product-body {
  padding: 16px;
}

.category {
  margin-bottom: 7px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 50px;
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.description-panel {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.description-toggle {
  justify-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 34px;
  padding: 0 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.description {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.variants {
  display: grid;
  gap: 8px;
  min-height: 28px;
  margin: 10px 0 12px;
}

.variants-toggle {
  justify-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 34px;
  padding: 0 10px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.variants-list {
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.variants-list[hidden] {
  display: none;
}

.variant-row {
  display: grid;
  gap: 2px;
  font-size: 0.86rem;
  line-height: 1.35;
}

.variant-row strong {
  color: var(--ink);
}

.variant-row span {
  color: var(--muted);
}

.product-meta {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.price {
  font-size: 1.18rem;
}

.compliance {
  position: relative;
  overflow: hidden;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(15, 139, 111, 0.1), rgba(251, 183, 65, 0.14)),
    #f8fbf7;
}

.compliance::after {
  content: "MAJEUR";
  position: absolute;
  right: 22px;
  bottom: -26px;
  color: rgba(15, 139, 111, 0.07);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.age-sign {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(112px, 16vw, 160px);
  aspect-ratio: 1;
  border: 8px solid #d83a2e;
  border-radius: 50%;
  background: #fff;
  color: #d83a2e;
  box-shadow: 0 20px 42px rgba(24, 33, 31, 0.14);
}

.age-sign::after {
  content: "";
  position: absolute;
  width: 118%;
  height: 8px;
  border-radius: 999px;
  background: #d83a2e;
  transform: rotate(-28deg);
}

.age-sign span {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 0;
}

.age-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.age-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 4rem);
}

.age-copy p:last-child {
  max-width: 680px;
  margin-bottom: 0;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.25fr);
  gap: 24px 32px;
  align-items: stretch;
  border-top: 1px solid var(--line);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 48px 24px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 183, 65, 0.28), transparent 68%);
  pointer-events: none;
}

.footer-head {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(15, 139, 111, 0.12), rgba(251, 183, 65, 0.16));
  border: 1px solid rgba(15, 139, 111, 0.14);
  box-shadow: 0 18px 42px rgba(24, 33, 31, 0.07);
}

.footer-logo {
  display: block;
  width: min(310px, 100%);
  max-height: 160px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 12px 16px rgba(24, 33, 31, 0.18));
}

.footer-intro {
  margin: 0;
  max-width: 440px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.footer-badges span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #fff;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(24, 33, 31, 0.07);
}

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

.contact-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top right, rgba(251, 183, 65, 0.12), transparent 55%);
  box-shadow: 0 12px 30px rgba(24, 33, 31, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 139, 111, 0.28);
  box-shadow: 0 18px 38px rgba(24, 33, 31, 0.1);
}

.contact-icon {
  display: grid;
  place-items: center;
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--accent-strong);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12), 0 10px 18px rgba(15, 139, 111, 0.18);
}

.instagram-icon {
  background:
    radial-gradient(circle at 32% 100%, #fed373 0 22%, transparent 23%),
    radial-gradient(circle at 18% 100%, #f15245 0 34%, transparent 35%),
    radial-gradient(circle at 75% 12%, #833ab4 0 28%, transparent 29%),
    linear-gradient(135deg, #405de6, #c13584 48%, #fd1d1d 72%, #fcb045);
}

.instagram-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 3px solid #fff;
  border-radius: 7px;
}

.instagram-icon::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: -8px 8px 0 -2px #fff;
}

.contact-item strong {
  color: var(--ink);
}

.contact-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.contact-item a {
  color: var(--accent-strong);
  font-weight: 900;
}

.footer-actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.secondary,
.whatsapp-footer {
  background: var(--accent);
  color: #fff;
}

.whatsapp-footer {
  background: linear-gradient(135deg, #24c857, #0f8b6f);
  box-shadow: 0 14px 30px rgba(36, 200, 87, 0.22);
}

@media (max-width: 760px) {
  .site-header {
    min-height: auto;
  }

  .age-gate-card {
    padding: 26px 18px;
  }

  .age-gate-logo {
    width: min(220px, 68%);
  }

  .age-gate-sign {
    top: 18px;
    right: 18px;
    width: 68px;
    border-width: 5px;
  }

  .age-gate-sign span {
    font-size: 1.25rem;
  }

  .age-gate-actions button {
    flex: 1 1 100%;
  }

  .nav,
  .catalogue-head,
  .delivery,
  .footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .compliance {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .age-sign {
    width: 118px;
  }

  .nav-actions {
    justify-content: start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
    gap: 28px;
    padding: 34px 18px 64px;
  }

  .hero-panel {
    display: grid;
    justify-self: stretch;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-panel span {
    min-height: 54px;
    display: flex;
    align-items: center;
  }

  .section,
  .catalogue,
  .footer {
    padding: 54px 18px;
  }

  .showcase {
    padding: 18px 0;
  }

  .showcase-slide {
    width: 270px;
  }

  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .filter {
    flex: 0 0 auto;
  }

  .pagination {
    justify-content: stretch;
  }

  .page-button,
  .page-contact,
  .page-current {
    flex: 1 1 100%;
    justify-content: center;
  }

  .secondary {
    justify-self: start;
  }

  .contact-grid,
  .footer-actions {
    grid-template-columns: 1fr;
  }

  .footer::before {
    display: none;
  }

  .footer-actions {
    grid-column: 1;
    justify-content: stretch;
  }

  .footer-actions .primary-link {
    flex: 1 1 100%;
  }
}
