:root {
  --ink: #222222;
  --muted: #626262;
  --page: #f3f3f1;
  --panel: #ffffff;
  --panel-soft: #f8f8f6;
  --line: #ddddda;
  --accent: #ff1b1c;
  --accent-dark: #c97808;
  --accent-soft: #fff2dc;
  --dark: #222222;
  --shadow: 0 22px 55px rgba(0, 0, 0, .13);
  
  --font-base: 'Roboto', Arial, sans-serif;
  --fs-h1: clamp(2.85rem, 3.6vw, 5.2rem);
  --fs-h2: clamp(2rem, 4vw, 3.2rem);
  --fs-body: 18px;
  
  --max: 1380px;
  --radius: 8px;
  --feature-card-height: 450px;
  --mesh-card-height: 300px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-base);
  font-size: var(--fs-body);
  line-height: 1.55;
  min-width: 320px;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

.icon-sprite {
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}

a {
  color: inherit;
}

.section-wrapper {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 5vw, 4rem);
  overflow: hidden;
}

.section-wrapper::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 27, 28, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.gallery-section::after,
.offer::after,
.story-section::after,
.mesh::after,
.about::after,
.shipping::after {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 84%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(221, 221, 218, 0.8), transparent);
  z-index: 5;
}

.section-content {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.site-header {
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 100;
}

.top-bar {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.top-bar-inner {
  background-color: #333333;
  align-items: center;
  display: flex;
  gap: 10rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
  padding: .38rem clamp(1rem, 3vw, 3rem);
}

.top-bar span {
  color: rgba(255, 255, 255, .86);
  font-size: 1rem;
  font-weight: 700;
}

.top-bar a {
  color: #ff1b1c;
  text-decoration: none;
}

.top-bar a:hover,
.top-bar a:focus-visible {
  color: #fff;
}

.top-bar-tekst {
  color: #fff;
  font-size: 1rem;
}

.nav-row {
  align-items: center;
  display: flex;
  gap: 2rem;
  height: 74px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 90%;
  padding: 0 clamp(1rem, 3vw, 3rem);
}

.brand {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}

#logo {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  justify-content: flex-end;
}

.main-nav a {
  color: rgba(255, 255, 255, .9);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .35rem 0;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a::after {
  background: var(--accent);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
  width: 100%;
}

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

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  position: relative;
  width: 44px;
  z-index: 120;
}

.menu-toggle span {
  background: var(--accent);
  border-radius: 999px;
  height: 4px;
  position: absolute;
  transition: transform .2s ease, opacity .2s ease;
  width: 32px;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-10px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(10px);
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .62) 48%, rgba(0, 0, 0, .9) 100%),
    url("images/banner.webp") center / cover;
  color: #fff;
  display: grid;
  gap: clamp(2rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1fr) 340px;
  min-height: clamp(680px, calc(100vh - 111px), 780px);
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 8vw, 9rem);
}

.hero-copy {
  max-width: 980px;
  min-width: 0;
  width: 100%;
}

.hero h1 {
  color: #fff;
  font-size: var(--fs-h1);
  line-height: 1.04;
  max-width: 1100px;
  text-wrap: balance;
}

.hero-text {
  color: rgba(255, 255, 255, .94);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.28;
  margin-top: 1.5rem;
  max-width: 1100px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.btn {
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 50px;
  padding: .7rem 1.4rem;
  text-decoration: none;
}

.btn.primary {
  background: var(--accent);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.28);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary:hover,
.btn.primary:focus-visible {
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.38);
  transform: scale(1.08);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
}

.phone-preview {
  background: transparent;
  border: 0;
  border-radius: 46px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .34);
  height: 600px;
  justify-self: center;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 300px;
}

.phone-notch {
  display: none;
}

.phone-notch::before,
.phone-notch::after {
  background: #4e4e4e;
  border-radius: 999px;
  content: "";
  position: absolute;
  top: 10px;
}

.phone-notch::before {
  height: 4px;
  left: 38px;
  width: 44px;
}

.phone-notch::after {
  height: 7px;
  right: 33px;
  width: 7px;
}

.phone-screen {
  border-radius: 46px;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.phone-screen video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-section {
  background: linear-gradient(180deg, #ededeb 0%, #f7f7f4 100%);
}

.gallery-shell {
  display: grid;
  gap: 1rem;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  margin: 0 auto;
  max-width: var(--max);
  position: relative;
}

.gallery-stage {
  background: var(--dark);
  border: 10px solid var(--dark);
  border-radius: 18px;
  box-shadow: var(--shadow);
  grid-column: 2;
  overflow: hidden;
  position: relative;
}

.gallery-stage img {
  background: var(--dark);
  height: min(58vw, 720px);
  object-fit: contain;
  width: 100%;
}

.gallery-stage figcaption {
  background: rgba(34, 34, 34, .88);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  bottom: 1rem;
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
  padding: .35rem .7rem;
  position: absolute;
  right: 1rem;
}

.gallery-arrow {
  align-self: center;
  align-items: center;
  background: var(--accent);
  border: 0;
  border-radius: 999px;
  color: var(--dark);
  cursor: pointer;
  display: inline-flex;
  height: 64px;
  justify-content: center;
  width: 64px;
  box-shadow: 0 16px 35px rgba(34, 34, 34, .18);
  transition: background .2s ease, transform .2s ease;
}

.gallery-arrow svg {
  fill: none;
  height: 34px;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
  width: 34px;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  transform: translateY(-2px);
}

.thumb-strip {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
  display: flex;
  gap: .65rem;
  grid-column: 2;
  overflow-x: auto;
  padding: .7rem;
  scrollbar-color: var(--accent) #d3d3d0;
}

.thumb {
  background: var(--dark);
  border: 3px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  flex: 0 0 118px;
  height: 78px;
  overflow: hidden;
  padding: 0;
  transition: border-color .2s ease, transform .2s ease;
}

.thumb.active {
  border-color: var(--accent);
}

.thumb:hover,
.thumb:focus-visible {
  transform: translateY(-2px);
}

.thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}


.section-title {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  z-index: 3;
}

.section-title h2 {
  color: var(--dark);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 auto;
  text-wrap: balance;
  width: 80%;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 150px;          
  height: 4px;       
  background: var(--accent);
  border-radius: 999px; 
  margin: 1.2rem auto 0;
}

.section-title p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  margin-top: 1.4rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

.offer-disclaimer {
  display: inline-block;
  color: #c0392b;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 1.2rem;
  padding: 0.4rem 1rem;
  background: #fdf2f2;
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 4px;
}

.offer {
    background: #fff;
}

.offer-grid {
  align-items: start;
  display: grid;
  gap: clamp(1.4rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, .75fr);
}

.price-table-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-table {
  border-collapse: collapse;
  font-size: .9rem;
  width: 100%;
  table-layout: fixed; 
}

.price-table th:nth-child(1) { width: 35%; }
.price-table th:nth-child(2) { width: 35%; }
.price-table th:nth-child(3) { width: 30%; }

.price-table th {
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  padding: 1rem 1.5rem 1rem 1rem; 
  text-align: left;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.mobile-sort-container {
  display: none;
}

.price-table th::after {
  content: '';
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.15s ease;
  font-size: 0.8rem;
}

.price-table th[data-order="asc"]::after {
  content: '▲';
  opacity: 1;
}

.price-table th[data-order="desc"]::after {
  content: '▼';
  opacity: 1;
}

.price-table td {
  border-bottom: 1px solid var(--line);
  padding: .85rem 1rem;
  text-align: left;
}

.price-table td:last-child {
  color: var(--accent);
  font-weight: 700;
}

.price-table tr:nth-child(even) td {
  background: var(--panel-soft);
}

.calculator {
  background: var(--dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #fff;
  padding: clamp(1.2rem, 3vw, 2rem);
  position: sticky;
  top: 98px;
}

.calculator h3 {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 1.4rem;
}

.calculator label {
  display: block;
  margin-top: 1rem;
}

.calculator span {
  color: rgba(255, 255, 255, .72);
  display: block;
  font-size: .85rem;
  margin-bottom: .35rem;
}

.calculator input {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 6px;
  color: #fff;
  font: inherit;
  padding: .8rem .9rem;
  width: 100%;
}

.calculated-price {
  background: var(--accent);
  border-radius: 6px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 1.5rem;
  padding: .85rem;
  text-align: center;
}

.promo {
  background:
    linear-gradient(135deg, rgba(255, 27, 28, .08), transparent 40%),
    var(--dark);
  color: #fff;
}

.promo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 84%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  z-index: 5;
}

.promo .section-title h2 {
  color: #fff;
}

.promo .section-title p {
  color: rgba(255, 255, 255, .8);
}

.promo p {
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  margin-top: 1.4rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.promo-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 3rem auto 0;
  max-width: 1040px;
}

.promo-cards article {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .28), transparent 44%),
    var(--accent);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  color: #fff;
  padding: clamp(1.3rem, 3vw, 2rem);
  position: relative;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.promo-cards article::before {
  background: var(--dark);
  border-radius: 999px;
  content: "";
  height: 6px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 44%;
}

.promo-cards span {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.promo-cards strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin: .35rem 0;
}

.promo-cards b {
  color: #fff;
  display: block;
  font-size: clamp(1.3rem, 2vw, 1.55rem);
}

.monthly {
  background: #fff;
  text-align: center;
}

.monthly-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 1080px;
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  background: var(--panel);
}

.monthly-card::before {
  background: var(--accent);
  border-radius: 999px;
  content: "";
  height: 10px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: min(360px, 60%);
}

.monthly-price {
  color: var(--accent);
  font-size: clamp(3.4rem, 8vw, 5.6rem);
  font-weight: 700;
  line-height: 1;
  margin: 1rem 0;
  text-shadow: 0 8px 24px rgba(255, 27, 28, .22);
}

.monthly-note {
  color: var(--dark);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 auto;
  max-width: 1060px;
}

.story-section {
  background: #ffffff;
}

.feature-cards {
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.8rem);
}

.feature-card {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .14);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  min-height: var(--feature-card-height);
  overflow: hidden;
}

.story-section,
.mesh,
.about,
.shipping {
  padding-block: clamp(3rem, 5.5vw, 5rem);
}

.story-section .section-title,
.mesh .section-title,
.about .section-title,
.shipping .section-title {
  margin-bottom: clamp(1.8rem, 3.5vw, 3rem);
}

.feature-card img {
  height: 100%;
  min-height: var(--feature-card-height);
  object-fit: cover;
  width: 100%;
}

.feature-card-copy {
  align-self: stretch;
  background:
    linear-gradient(135deg, rgba(255, 27, 28, .12), transparent 48%),
    var(--dark);
  border-left: 7px solid var(--accent);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  padding: clamp(1.35rem, 2.3vw, 2rem);
  position: relative;
}

.feature-card-copy::after {
  background: rgba(255, 27, 28, .15);
  border-radius: 999px;
  bottom: -78px;
  content: "";
  height: 180px;
  position: absolute;
  right: -78px;
  width: 180px;
}

.feature-card-copy h3 {
  color: #fff;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.18;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-align: left;
}

.feature-card-copy p,
.feature-card-copy li {
  color: rgba(255, 255, 255, .9);
  font-size: clamp(.92rem, 1vw, 1rem);
  line-height: 1.5;
  margin-top: .85rem;
  position: relative;
  text-align: left;
  z-index: 1;
}

.feature-card-copy p:first-of-type {
  margin-top: 0;
}

.feature-card-copy .shipping-list {
  color: rgba(255, 255, 255, .9);
  position: relative;
  z-index: 1;
}

.story-section .feature-card,
.about .feature-card,
.shipping .feature-card {
  min-height: var(--feature-card-height);
}

.story-section .feature-card img,
.about .feature-card img,
.shipping .feature-card img {
  height: 100%;
  min-height: 0;
}

.about .feature-card-copy,
.shipping .feature-card-copy {
  padding: clamp(1.25rem, 2vw, 1.8rem);
}

.about .feature-card-copy h3,
.shipping .feature-card-copy h3 {
  font-size: clamp(1.1rem, 1.55vw, 1.45rem);
  margin-bottom: .75rem;
}

.about .feature-card-copy p,
.about .feature-card-copy li,
.shipping .feature-card-copy p,
.shipping .feature-card-copy li {
  font-size: clamp(.9rem, 1vw, 1rem);
  line-height: 1.48;
}

.mesh .feature-cards {
  align-items: stretch;
  grid-auto-rows: 1fr;
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mesh .feature-card {
  height: auto;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  min-height: var(--mesh-card-height);
}

.mesh .feature-card img {
  height: 100%;
  min-height: var(--mesh-card-height);
}

.mesh .feature-card-copy {
  padding: clamp(1rem, 1.45vw, 1.35rem);
}

.mesh .feature-card-copy h3 {
  font-size: clamp(1.2rem, 1.25vw, 1.55rem);
  margin-bottom: .55rem;
}

.mesh .feature-card-copy p,
.mesh .feature-card-copy li {
  font-size: clamp(.92rem, .9vw, 1rem);
  line-height: 1.42;
  margin-top: .55rem;
}

.local-pickup-container {
  background:
    linear-gradient(135deg, rgba(255, 27, 28, .12), transparent 48%),
    var(--dark);
  border: 1px solid rgba(255, 255, 255, .12);
  border-left: 7px solid var(--accent);
  border-radius: 22px;
  box-shadow: var(--shadow);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  overflow: hidden;
  padding: 2.5rem;
  position: relative;
}

.local-pickup-container::after {
  background: rgba(255, 27, 28, .15);
  border-radius: 999px;
  bottom: -78px;
  content: "";
  height: 180px;
  position: absolute;
  right: -78px;
  width: 180px;
}

.local-pickup-container > * {
  position: relative;
  z-index: 1;
}

.local-pickup-content {
  display: flex;
  flex-direction: column;
}

.local-pickup-content .section-title {
  margin-bottom: 1.5rem;
  text-align: left;
}

.local-pickup-content .section-title h2 {
  color: #fff;
  width: 100%;
}

.local-pickup-content .section-title span {
  color: #fff;
}

.local-pickup-lead {
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.local-pickup-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, .88);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.local-pickup-info {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 1.5rem;
}

.local-pickup-info .footer-item {
  color: rgba(255, 255, 255, .88);
  flex: 0 1 auto;
  font-size: 1.1rem;
  gap: .75rem;
  line-height: 1.45;
  margin-bottom: 0;
  min-width: 0;
}

.local-pickup-info .footer-item strong {
  color: #fff;
  font-size: 1.2rem;
}

.local-pickup-info .footer-item p,
.local-pickup-info .footer-item a {
  color: #fff;
  margin: 0 0 .18rem;
}

.local-pickup-info .footer-item a {
  white-space: nowrap;
}

.local-pickup-info .footer-item a:hover {
  color: #fff;
  text-decoration: underline;
}

.local-pickup-map {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
}

.local-pickup-info .footer-icon {
  flex-basis: 48px;
  height: 48px;
  width: 48px;
}

.local-pickup-info .footer-icon svg {
  height: 27px;
  width: 27px;
}

.hero-modern-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 2.2rem;
  padding: 0.8rem 1.6rem;
  position: relative;
  width: 75%;
  
  border: 2px solid transparent; 
  border-radius: 20px; 
  
  background: 
    linear-gradient(#1e1e1e, #1e1e1e) padding-box, 
    linear-gradient(135deg, var(--accent) 0%, rgba(255, 255, 255, 0.4) 100%) border-box;
  
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  
  box-shadow: 
    0 8px 30px rgba(255, 27, 28, 0.14),
    inset 0 0 10px rgba(255, 27, 28, 0.1);
}

.badge-content {
  color: #ffffff; 
  font-family: var(--font-base);
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
  font-weight: 900; 
  letter-spacing: 0.14em; 
  line-height: 1.4;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2); 
}

@media (max-width: 700px) {
  .hero-modern-badge {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.8rem;
    padding: 0.7rem 1.2rem;
    max-width: 95%;
  }
  .badge-content {
    letter-spacing: 0.08em;
    line-height: 1.45;
  }
}

@media (min-width: 992px) {
  .local-pickup-container {
    flex-direction: row;
    align-items: stretch;
    padding: 4rem;
    gap: 4rem;
  }

  .local-pickup-content {
    flex: 1;
  }

  .local-pickup-map {
    flex: 1;
    height: auto;
    min-height: 400px;
  }

  .local-pickup-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.35rem;
  }

  .local-pickup-info .footer-item {
    flex: 1 1 170px;
  }
}

@media (min-width: 1101px) {
  .story-section .feature-card,
  .about .feature-card,
  .shipping .feature-card {
    height: var(--feature-card-height);
    max-height: var(--feature-card-height);
  }

  .about .feature-card,
  .shipping .feature-card {
    grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr);
  }

  .about .feature-card-copy,
  .shipping .feature-card-copy {
    padding: clamp(.95rem, 1.3vw, 1.35rem);
  }

  .about .feature-card-copy h3,
  .shipping .feature-card-copy h3 {
    font-size: clamp(1rem, 1.15vw, 1.22rem);
    line-height: 1.16;
    margin-bottom: .55rem;
  }

  .about .feature-card-copy p,
  .about .feature-card-copy li,
  .shipping .feature-card-copy p,
  .shipping .feature-card-copy li {
    font-size: clamp(.78rem, .84vw, .88rem);
    line-height: 1.34;
    margin-top: .45rem;
  }

  .shipping-list {
    margin: .45rem 0;
  }
}

.content-grid {
  align-items: center;
  display: grid;
  gap: clamp(1.6rem, 4.5vw, 4rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-grid {
  border-radius: 24px;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.02);
}

.content-grid.story-grid img {
  box-shadow:
    0 22px 55px rgba(0, 0, 0, .14),
    0 0 0 1px rgba(255, 27, 28, .16);
}

.story-grid .text-panel {
  align-self: center;
  background:
    linear-gradient(135deg, rgba(255, 27, 28, .15), transparent 45%),
    var(--dark);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .2),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  color: #fff;
  height: auto;
  justify-self: center;
  max-width: 760px;
  overflow: hidden;
  padding: clamp(1.8rem, 3vw, 2.45rem);
  position: relative;
  width: 100%;
}

.story-grid .text-panel::before {
  background: var(--accent);
  border-radius: 999px;
  content: "";
  height: 6px;
  left: clamp(1.8rem, 3vw, 2.45rem);
  position: absolute;
  top: 0;
  width: min(180px, 34%);
}

.story-grid .text-panel::after {
  background: rgba(255, 27, 28, .14);
  border-radius: 999px;
  bottom: -70px;
  content: "";
  height: 160px;
  position: absolute;
  right: -70px;
  width: 160px;
}

.story-grid .text-panel p {
  color: rgba(255, 255, 255, .9);
  position: relative;
  z-index: 1;
}

.content-grid img {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  box-shadow: var(--shadow);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.text-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 6px solid var(--accent);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .07);
  max-width: 760px;
  padding: clamp(1.3rem, 3vw, 2.15rem);
}

.text-panel p {
  color: var(--dark);
  margin-top: 1rem;
  text-align: left;
}

.text-panel p:first-child {
  margin-top: 0;
}

.content-grid:is(.story-grid, .two-col) {
  align-items: stretch;
  column-gap: 0;
  row-gap: clamp(2rem, 5vw, 4rem);
}

.content-grid:is(.story-grid, .two-col) > img,
.content-grid:is(.story-grid, .two-col) > .text-panel {
  min-height: 100%;
}

.content-grid:is(.story-grid, .two-col) > :nth-child(odd) {
  border-radius: 22px 0 0 22px;
}

.content-grid:is(.story-grid, .two-col) > :nth-child(even) {
  border-radius: 0 22px 22px 0;
}

.content-grid:is(.story-grid, .two-col) > img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .16),
    0 0 0 1px rgba(255, 27, 28, .18);
}

.content-grid:is(.story-grid, .two-col) > .text-panel {
  align-self: stretch;
  background:
    linear-gradient(135deg, rgba(255, 27, 28, .16), transparent 46%),
    var(--dark);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  color: #fff;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: center;
  justify-self: stretch;
  max-width: none;
  overflow: hidden;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  position: relative;
  width: 100%;
}

.content-grid:is(.story-grid, .two-col) > .text-panel::before {
  background: var(--accent);
  border-radius: 0;
  bottom: 0;
  content: "";
  height: auto;
  left: 0;
  position: absolute;
  top: 0;
  width: 7px;
}

.content-grid:is(.story-grid, .two-col) > .text-panel:nth-child(odd)::before {
  left: auto;
  right: 0;
}

.content-grid:is(.story-grid, .two-col) > .text-panel::after {
  background: rgba(255, 27, 28, .14);
  border-radius: 999px;
  bottom: -80px;
  content: "";
  height: 180px;
  position: absolute;
  right: -80px;
  width: 180px;
}

.content-grid:is(.story-grid, .two-col) > .text-panel p,
.content-grid:is(.story-grid, .two-col) > .text-panel li {
  color: rgba(255, 255, 255, .9);
  position: relative;
  z-index: 1;
}

.mesh {
  background: #f7f7f4;
}

.mesh .text-panel {
  background:
    linear-gradient(135deg, rgba(255, 27, 28, .15), transparent 45%),
    var(--dark);
}

.about {
  background: linear-gradient(180deg, #ecece8, #f7f7f4);
}

.shipping {
  background: #fff;
}

.shipping-list {
  list-style: none;
  margin: 1rem 0;
}

.shipping-list li {
  margin: .2rem 0;
}

.site-footer {
  background: var(--dark);
  color: #f3f3f3;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem) 1.25rem;
}

.footer-wrapper {
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: var(--max);
  margin: 0 auto 2.8rem;
}

.footer-info-col {
  flex: 1.3;
}

.footer-map-col {
  flex: 1;
  min-height: 350px;
  background: #1a1a1a;
  border: 1px solid #3a3a3a;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.footer-item {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
}

.footer-icon {
  align-items: center;
  background: #ff1b1c;
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 60px;
  height: 60px;
  justify-content: center;
  line-height: 1;
  width: 60px;
}

.footer-icon svg {
  fill: #fff;
  height: 34px;
  width: 34px;
}

.footer-item h2 {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.22;
  margin-bottom: .45rem;
}

.footer-item p,
.footer-item a {
  color: #aab0b7;
}

.footer-item a:hover,
.copyright a:hover {
  color: #fff;
}

.copyright {
  border-top: 1px solid #3a3a3a;
  color: #9aa0a6;
  font-size: .78rem;
  margin: 0 auto;
  max-width: var(--max);
  padding-top: 1rem;
  text-align: center;
}

.copyright a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .footer-wrapper {
    flex-direction: column; 
    gap: 2.5rem;
  }
  
  .footer-info-col,
  .footer-map-col {
    flex: none;
    width: 100%;
  }

  .footer-map-col {
    height: 320px;
    min-height: 0;
  }
}

.floating-phone-btn {
  position: fixed;
  bottom: clamp(1.25rem, 4vw, 2rem);
  right: clamp(1.25rem, 4vw, 2rem);
  width: 60px;
  height: 60px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.floating-phone-btn svg {
  fill: #fff;
  width: 28px;
  height: 28px;
}

.floating-phone-btn:hover,
.floating-phone-btn:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.38);
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: inline-flex;
  }

  .top-bar-tekst {
    display: none;
  }

  .top-bar-inner {
    justify-content: center;
  }

  .nav-row {
    height: 70px;
  }

  .main-nav {
    align-items: center;
    background: rgba(34, 34, 34, .98);
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    flex-direction: column;
    gap: 1.45rem;
    inset: 108px 0 0;
    justify-content: flex-start;
    opacity: 0;
    padding-top: 2.6rem;
    pointer-events: none;
    position: fixed;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    font-size: 1.1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3rem;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
    width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .offer-grid,
  .content-grid,
  .footer-grid,
  .mesh .feature-cards,
  .feature-card,
  .story-section .feature-card,
  .about .feature-card,
  .shipping .feature-card,
  .mesh .feature-card,
  .promo-cards {
    grid-template-columns: 1fr;
  }

  .mesh .feature-cards {
    grid-auto-rows: auto;
  }

  .story-grid {
    background: var(--page);
    padding: 0;
  }

  .content-grid:is(.story-grid, .two-col) {
    row-gap: 1rem;
  }

  .content-grid:is(.story-grid, .two-col) > :nth-child(odd),
  .content-grid:is(.story-grid, .two-col) > :nth-child(even) {
    border-radius: 18px;
  }

  .content-grid:is(.story-grid, .two-col) > img {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
  }

  .content-grid:is(.story-grid, .two-col) > .text-panel::before,
  .content-grid:is(.story-grid, .two-col) > .text-panel:nth-child(odd)::before {
    border-radius: 999px;
    bottom: auto;
    height: 6px;
    left: 50%;
    right: auto;
    top: 0;
    transform: translateX(-50%);
    width: min(180px, 40%);
  }

  .feature-card img {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 0;
  }

  .feature-card,
  .story-section .feature-card,
  .about .feature-card,
  .shipping .feature-card,
  .mesh .feature-card {
    height: auto;
    min-height: 0;
  }

  .story-section .feature-card img,
  .about .feature-card img,
  .shipping .feature-card img,
  .mesh .feature-card img {
    height: auto;
    min-height: 0;
  }

  .feature-card-copy {
    border-left: 0;
    border-top: 7px solid var(--accent);
    justify-content: flex-start;
    overflow: visible;
  }

  .calculator {
    position: static;
  }
}

@media (min-width: 900px) and (max-width: 1100px) {
  body {
    font-size: 21px;
    line-height: 1.6;
  }

  .local-pickup-info .footer-item strong {
    font-size: 1.6rem;
  }

  .local-pickup-container {
    border-left: 0;
    border-top: 7px solid var(--accent);
    flex-direction: column;
  }
  .local-pickup-content .section-title h2 {
    font-size: 2.8rem;
  }
  .local-pickup-lead {
    font-size: 1.5rem;
  }
  .local-pickup-text {
    font-size: 1.5rem;
  }
  .local-pickup-info .footer-item {
    font-size: 1.5rem;
  }

  .nav-row {
    height: 85px;
  }

  .main-nav {
    inset: 123px 0 0;
    gap: 2rem;
    padding-top: 3.5rem;
  }

  .main-nav a {
    font-size: 1.4rem;
  }

  .floating-phone-btn {
    width: 120px;
    height: 120px;
  }

  .floating-phone-btn svg {
    width: 60px;
    height: 60px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-text {
    font-size: 1.5rem;
  }

  .top-bar span {
    font-size: 1.2rem;
  }

  .section-title h2 {
    font-size: 2.8rem;
  }

  .section-title p,
  .promo p {
    font-size: 1.4rem;
  }

  .feature-card-copy h3 {
    font-size: 1.65rem;
  }

  .feature-card-copy p,
  .feature-card-copy li,
  .text-panel p {
    font-size: 1.4rem;
  }

  .mesh .feature-card-copy h3 {
    font-size: 1.9rem;
    line-height: 1.3;
    text-align: left;
  }

  .mesh .feature-card-copy p,
  .mesh .feature-card-copy li {
    font-size: 1.4rem;
    line-height: 1.55;
    text-align: left;
  }

  .price-table th,
  .price-table td {
    font-size: 1.2rem;
    padding: 1.3rem;
  }
}

@media (min-width: 701px) and (max-width: 899px) {
  body {
    font-size: 19px;
    line-height: 1.6;
  }

  .local-pickup-container {
    border-left: 0;
    border-top: 7px solid var(--accent);
  }
  .local-pickup-content .section-title h2 {
    font-size: 2.35rem;
  }
  .local-pickup-lead {
    font-size: 1.25rem;
  }
  .local-pickup-text {
    font-size: 1.2rem;
  }
  .local-pickup-info .footer-item {
    font-size: 1.2rem;
  }

  .local-pickup-info .footer-item strong {
    font-size: 1.4rem;
  }

  .nav-row {
    height: 80px;
  }

  .main-nav {
    inset: 118px 0 0;
    gap: 1.75rem;
    padding-top: 3rem;
  }

  .main-nav a {
    font-size: 1.25rem;
  }

  .floating-phone-btn {
    width: 80px;
    height: 80px;
  }

  .floating-phone-btn svg {
    width: 32px;
    height: 32px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 1.25rem;
  }

  .top-bar span {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 2.35rem;
  }

  .section-title p,
  .promo p {
    font-size: 1.2rem;
  }

  .feature-card-copy h3 {
    font-size: 1.45rem;
  }

  .feature-card-copy p,
  .feature-card-copy li,
  .text-panel p {
    font-size: 1.05rem;
  }

  .mesh .feature-card-copy h3 {
    font-size: 1.45rem;
    line-height: 1.3;
    text-align: left;
  }

  .mesh .feature-card-copy p,
  .mesh .feature-card-copy li {
    font-size: 1.05rem;
    line-height: 1.5;
    text-align: left;
  }

  .price-table th,
  .price-table td {
    font-size: 1.1rem;
    padding: 1.1rem;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .local-pickup-container {
    gap: 1.8rem;
    padding: 2.5rem 1.25rem;
    border-left: 0;
    border-top: 7px solid var(--accent);
    text-align: center;
  }
  .local-pickup-content .section-title span {
    display: none;
  }
  .local-pickup-content .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .local-pickup-content .section-title h2 {
    font-size: 1.85rem;
    line-height: 1.2;
    text-align: center;
    width: 100%;
  }
  .local-pickup-content .section-title h2::after {
    margin-left: auto;
    margin-right: auto;
  }
  .local-pickup-info .footer-item .local-pickup-info-contact {
    font-size: 1.2rem;
  }
  .local-pickup-lead {
    font-size: 1.05rem;
    text-align: center;
    width: 100%;
  }
  .local-pickup-text {
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 1.5rem;
    width: 100%;
  }
  .local-pickup-info {
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    width: 100%;
  }
  .local-pickup-info .footer-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 1.2rem;
    gap: 0.5rem;
  }
  .local-pickup-info .footer-item p {
    text-align: center;
  }
  .local-pickup-info .footer-icon {
    margin: 0 auto;
    flex-basis: 44px;
    height: 44px;
    width: 44px;
  }
  .local-pickup-info .footer-icon svg {
    height: 25px;
    width: 25px;
  }
  .local-pickup-map {
    height: 320px;
    box-shadow: none;
  }

  .section-wrapper {
    padding: 3.5rem 1rem;
  }

  .top-bar-inner {
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: .45rem;
    padding-top: .45rem;
  }

  .nav-row {
    height: 68px;
  }

  #logo {
    height: 40px;
  }

  .main-nav {
    inset: 106px 0 0;
  }

  .hero {
    background:
      linear-gradient(rgba(0, 0, 0, .74), rgba(0, 0, 0, .86)),
      url("images/banner.webp") center / cover;
    padding: 2.1rem 1rem 3rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.65rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    text-wrap: normal;
  }

  .hero-text {
    font-size: clamp(1rem, 4.7vw, 1.2rem);
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .phone-preview {
    height: 470px;
    width: min(250px, 80vw);
  }

  .gallery-section {
    padding: 2rem .75rem 3rem;
  }

  .gallery-shell {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-stage {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .gallery-stage img {
    height: 370px;
  }

  .gallery-arrow {
    grid-row: 2;
    height: 46px;
    justify-self: stretch;
    width: auto;
  }

  .thumb-strip {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .thumb {
    flex-basis: 88px;
    height: 62px;
  }

  .mobile-sort-container {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.6rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  }

  .mobile-sort-container label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
  }

  .mobile-sort-container select {
    flex: 1;
    font-family: var(--font-base);
    font-size: 0.9rem;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    outline: none;
    min-height: 44px;
  }

  .mobile-sort-container select:focus {
    border-color: var(--accent);
  }

  .price-table thead {
    display: none;
  }

  .price-table tr {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin: 0 0 .75rem;
    overflow: hidden;
  }

  .price-table tr:nth-child(even) td {
    background: #fff;
  }

  .price-table td {
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    display: flex;
    gap: .8rem;
    justify-content: flex-start;
    min-height: 44px;
    padding: .75rem .9rem;
    text-align: left;
  }

  .price-table td::before {
    color: var(--muted);
    content: attr(data-label);
    flex: 0 0 108px;
    font-weight: 700;
    text-align: left;
  }

  .section-title strong {
    margin-left: auto;
    margin-right: auto;
  }

  .offer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .section-title p,
  .feature-card-copy p,
  .feature-card-copy li,
  .text-panel p,
  .promo p,
  .shipping-list li {
    text-align: left;
  }

  .section-wrapper,
  .section-content,
  .text-panel,
  .feature-card-copy,
  .shipping-list,
  .calculator,
  .offer-grid,
  .content-grid {
    text-align: center;
  }

  .feature-card-copy p,
  .feature-card-copy li,
  .shipping-list li {
    text-align: center;
  }

  .hero h1,
  .hero-text,
  .offer .section-title h2,
  .offer-disclaimer,
  .monthly-card h2,
  .monthly-price,
  .monthly-note,
  .monthly-subtitle {
    text-align: center;
  }

  .offer .section-title p {
    text-align: left;
  }

  .price-table,
  .price-table td,
  .price-table td::before {
    text-align: left;
  }

  .monthly-price {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .footer-item {
    align-items: flex-start;
    display: flex;
    text-align: left;
  }

  .footer-icon {
    margin: 0;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: .84rem;
  }

  .phone-preview {
    height: 495px;
  }

  .section-wrapper {
    padding-left: .85rem;
    padding-right: .85rem;
  }
}

@media (max-width: 700px) {
  .section-title h2 {
    width: 100%;
  }

  .feature-card-copy h3 {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .price-table-wrap {
    max-height: 480px; 
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; 
    border: 2px solid var(--line);
    padding: 0.5rem;
    background: var(--panel-soft);
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--line);
  }

  .price-table-wrap::-webkit-scrollbar {
    width: 6px;
  }

  .price-table-wrap::-webkit-scrollbar-track {
    background: var(--line);
    border-radius: 999px;
  }

  .price-table-wrap::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 999px;
  }

  .price-table tr:last-child {
    margin-bottom: 0;
  }

  @media (max-width: 1100px) {  
    .top-bar span {
      font-size: 0.95rem;
    }
  }
}

.offer-dark-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;      
  margin-bottom: 3.5rem; 
  width: 70%;
  margin-left: auto;    
  margin-right: auto;  
}

.offer-dark-item {
  background: #222222;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem;
  text-align: center;
}

.offer-dark-icon {
  background: rgba(255, 27, 28, 0.15);
  border-radius: 50%;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  width: 54px;
  margin: 0 auto 1.2rem auto;
}

.offer-dark-item h3 {
  color: #ffffff;
  font-family: var(--font-base);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.6rem 0;
}

.offer-dark-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .offer-dark-badges {
    grid-template-columns: 1fr 1fr; 
    grid-column: 1 / -1;    
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .offer-dark-badges {
    width: 100%;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  background: #ffffff;
  border: 1px solid #ff0000;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 1.5rem;
  color: #333333;
  font-family: var(--font-base);
}

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner-text p {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #333333;
}

.cookie-banner-text a {
  color: #ff0000;
  text-decoration: underline;
}

.cookie-banner-preferences {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner-preferences label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.cookie-banner-preferences input[type="checkbox"] {
  accent-color: #ff0000;
  cursor: pointer;
}

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

.cookie-btn {
  font-family: var(--font-base);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-btn.btn-primary {
  background: #ff0000;
  color: #ffffff;
}

.cookie-btn.btn-primary:hover {
  background: #cc0000;
}

.cookie-btn.btn-secondary {
  background: #f4f4f4;
  color: #333333;
  border-color: #cccccc;
}

.cookie-btn.btn-secondary:hover {
  background: #e0e0e0;
  border-color: #bbbbbb;
}

.cookie-settings-trigger {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 9998;
  background: #ffffff;
  color: #333333;
  border: 1px solid #cccccc;
  padding: 5px 10px;
  font-family: var(--font-base);
  font-size: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.cookie-settings-trigger:hover {
  opacity: 1;
  background: #f4f4f4;
  border-color: #ff0000;
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 120px;
    padding: 1rem;
    width: 85%;
  }
  .cookie-banner-preferences {
    flex-direction: column;
    gap: 0.5rem;
  }
  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}