/* CSS Variables - Matching Original */
:root {
  --color-background: 252, 252, 252;
  --gradient-background: #fcfcfc;
  --color-foreground: 0, 0, 0;
  --color-shadow: 2, 9, 18;
  --color-button: 220, 38, 38;
  --color-button-text: 252, 252, 252;
  --color-secondary-button: 252, 252, 252;
  --color-secondary-button-text: 2, 9, 18;
  --color-link: 2, 9, 18;
  --color-badge-foreground: 0, 0, 0;
  --color-badge-background: 252, 252, 252;
  --color-badge-border: 0, 0, 0;
  
  /* Fonts */
  --font-body-family: "Anonymous Pro", monospace, sans-serif;
  --font-body-style: normal;
  --font-body-weight: 400;
  --font-body-weight-bold: 700;
  --font-heading-family: "Avenir Next", sans-serif;
  --font-heading-style: normal;
  --font-heading-weight: 500;
  --font-body-scale: 1.05;
  --font-heading-scale: 1.19;
  
  /* Spacing */
  --page-width: 130rem;
  --page-width-margin: 0rem;
  
  /* Product Cards */
  --product-card-image-padding: 0.0rem;
  --product-card-corner-radius: 0.0rem;
  --product-card-text-alignment: center;
  --product-card-border-width: 0.0rem;
  --product-card-border-opacity: 0.1;
  --product-card-shadow-opacity: 0.0;
}

body.dark-mode {
  --color-background: 26, 26, 26;
  --gradient-background: #1a1a1a;
  --color-foreground: 232, 232, 232;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: calc(var(--font-body-scale) * 62.5%);
  height: 100%;
}

body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100%;
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.06rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  color: rgba(var(--color-foreground), 0.75);
  background-color: rgb(var(--color-background));
  transition: background 0.3s, color 0.3s;
}

@media screen and (min-width: 750px) {
  body {
    font-size: 1.6rem;
  }
}

.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 5rem;
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .page-width {
    padding: 0 3rem;
  }
}

@media screen and (max-width: 749px) {
  .page-width {
    padding: 0 1.5rem;
  }
}

.gradient {
  background: var(--gradient-background);
}

.color-background-1 {
  background-color: rgb(var(--color-background));
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  letter-spacing: calc(var(--font-heading-scale) * 0.06rem);
  color: rgba(var(--color-foreground), 1);
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
  word-break: break-word;
}

.h1 {
  font-size: calc(var(--font-heading-scale) * 4rem);
}

@media screen and (min-width: 750px) {
  .h1 {
    font-size: calc(var(--font-heading-scale) * 5.2rem);
  }
}

.h2 {
  font-size: calc(var(--font-heading-scale) * 3rem);
}

@media screen and (min-width: 750px) {
  .h2 {
    font-size: calc(var(--font-heading-scale) * 4rem);
  }
}

.h5 {
  font-size: calc(var(--font-heading-scale) * 1.8rem);
}

.caption-large {
  font-size: 1.3rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  letter-spacing: 0.04rem;
}

/* Grid System */
.grid {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.grid--gapless {
  gap: 0;
}

.grid--1-col {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 750px) {
  .grid--3-col-tablet {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid__item {
  list-style: none;
}

.isolate {
  isolation: isolate;
}

/* Links */
.full-unstyled-link {
  text-decoration: none;
  color: inherit;
}

.full-unstyled-link:hover {
  color: inherit;
}

.underline-links-hover a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

/* Media */
.media {
  display: block;
  background-color: rgb(var(--color-background));
}

.media--transparent {
  background-color: transparent;
}

.ratio {
  display: block;
  position: relative;
}

.ratio::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card--media .ratio::before {
  padding-bottom: 0;
}

.card--media .ratio {
  position: relative;
  padding-bottom: 0;
  height: auto;
}

/* Utilities */
.rte {
  margin: 0;
}

.body {
  font-size: 1.6rem;
}

.title {
  font-size: inherit;
  margin: 0;
}

/* Header */
.header-wrapper {
  background-color: rgb(var(--color-background));
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.section-header {
  position: sticky;
  margin-bottom: 0.6rem;
}

@media screen and (min-width: 750px) {
  .section-header {
    margin-bottom: 0.8rem;
  }
}

.header {
  display: grid;
  grid-template-areas: 'left-icons heading icons';
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 0.6rem 3rem;
}

@media screen and (min-width: 990px) {
  .header {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    grid-template-areas: 'heading navigation icons';
    grid-template-columns: auto 1fr auto;
    column-gap: 2rem;
  }
}

.header--middle-left {
  grid-template-areas: 'navigation heading icons';
  grid-template-columns: auto 1fr auto;
}

@media screen and (min-width: 990px) {
  .header--middle-left {
    grid-template-areas: 'heading navigation icons';
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: rgba(var(--color-foreground), 0.75);
  grid-area: left-icons;
}

.menu-toggle svg {
  width: 2.2rem;
  height: 2.2rem;
}

@media screen and (min-width: 990px) {
  .menu-toggle {
    display: none !important;
  }
}

@media screen and (max-width: 989px) {
  .menu-toggle {
    display: block;
  }
}

.header__heading {
  margin: 0;
  line-height: 0;
  grid-area: heading;
  justify-self: center;
}

@media screen and (min-width: 990px) {
  .header__heading {
    justify-self: start;
  }
}

.header__heading-link {
  display: inline-block;
  text-decoration: none;
  word-break: break-word;
}

.header__heading-logo {
  width: 100%;
  max-width: 24rem;
}

@media screen and (max-width: 989px) {
  .header__heading-logo {
    max-width: 16rem;
  }
}

/* Logo Dark Mode Switching */
.logo-dark {
  display: none;
}

body.dark-mode .logo-light {
  display: none;
}

body.dark-mode .logo-dark {
  display: block;
}

.header__heading a {
  display: flex;
}

.header__heading a .logo-dark,
.header__heading a .logo-light {
  width: 100%;
  max-width: 100%;
}

.image-with-text__media .logo-dark,
.image-with-text__media .logo-light {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
}

.header__inline-menu {
  grid-area: navigation;
  display: none;
}

@media screen and (min-width: 990px) {
  .header__inline-menu {
    display: block;
  }
}

.list-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-menu--inline {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.header__menu-item {
  color: rgba(var(--color-foreground), 0.75);
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}

.header__menu-item:hover {
  color: rgb(var(--color-button));
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.header__nav > ul > li {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 180px;
  box-shadow: var(--shadow-md);
  margin-top: 0.5rem;
}

.header__nav > ul > li:hover .submenu {
  display: block;
}

.submenu li {
  list-style: none;
}

.submenu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.header__icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  grid-area: icons;
  justify-self: end;
}

.header__icon {
  color: rgba(var(--color-foreground), 0.75);
  transition: color 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 4.4rem;
  padding: 0;
}

.header__icon svg {
  width: 2.2rem;
  height: 2.2rem;
}

.header__icon:hover {
  color: rgb(var(--color-button));
}

.small-hide {
  display: none !important;
}

@media screen and (min-width: 750px) {
  .small-hide {
    display: block !important;
  }
}

.dark-mode-toggle {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s;
}

.dark-mode-toggle:hover {
  background: rgb(var(--color-button));
  border-color: rgb(var(--color-button));
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: rgb(var(--color-background));
  z-index: 1000;
  transition: left 0.3s ease;
  box-shadow: 0.4rem 0 2rem rgba(var(--color-shadow), 0.2);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu__content {
  padding: 2rem;
  background: rgb(var(--color-background));
  height: 100%;
}

.mobile-menu__close {
  background: none;
  border: none;
  font-size: 3rem;
  cursor: pointer;
  color: rgba(var(--color-foreground), 0.75);
  margin-bottom: 2rem;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.mobile-menu__close:hover {
  color: rgb(var(--color-button));
}

.mobile-menu nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu nav a {
  display: block;
  padding: 1.2rem 0;
  color: rgba(var(--color-foreground), 0.75);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  transition: color 0.2s;
  font-size: 1.5rem;
}

.mobile-menu nav a:hover {
  color: rgb(var(--color-button));
}


/* Hero Section - Image with Text */
.image-with-text {
  padding: 0;
  margin-bottom: 3rem;
}

.image-with-text__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0;
}

@media screen and (min-width: 750px) {
  .image-with-text__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .image-with-text__media-item--large {
    grid-column-start: span 2;
  }
}

.image-with-text--overlap .image-with-text__text-item {
  margin-top: 0;
}

@media screen and (min-width: 750px) {
  .image-with-text--overlap .image-with-text__text-item {
    margin: 0;
  }
}

.image-with-text__media-item {
  position: relative;
}

.image-with-text__media {
  min-height: 25rem;
  overflow: hidden;
  background-color: rgb(var(--color-background));
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 750px) {
  .image-with-text__media {
    min-height: 40rem;
  }
}

.image-with-text__media--small {
  height: 30rem;
}

@media screen and (min-width: 750px) {
  .image-with-text__media--small {
    height: 40rem;
  }
}

.image-with-text__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 40rem;
  max-height: 40rem;
}

/* Responsive image optimization */
img {
  max-width: 100%;
  height: auto;
}

/* Ensure product images maintain aspect ratio */
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

/* Feature card images */
.feature-card img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.image-with-text__text-item {
  display: flex;
  align-items: center;
}

.image-with-text__content {
  padding: 4rem 2.5rem;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .image-with-text__content {
    padding: 5rem;
  }
  
  .image-with-text__content--small {
    padding: 3rem;
  }
}

.image-with-text__content--desktop-center {
  text-align: center;
  justify-content: center;
}

.image-with-text__heading {
  margin-bottom: 2rem;
}

.image-with-text__text {
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

/* Rich Text Section */
.rich-text {
  padding: 3rem 0;
  text-align: center;
}

.rich-text__content {
  max-width: 800px;
  margin: 0 auto;
}

.rich-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.rich-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Products Section */
.products-section {
  padding: 0;
  margin: 0;
}

.collection__title {
  margin-bottom: 1.5rem;
  margin-top: 0;
  padding-top: 2rem;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .collection__title {
    margin-bottom: 1.5rem;
    padding-top: 2.4rem;
  }
}

.title-wrapper--no-top-margin {
  margin-top: 0;
  padding-top: 0;
}

.inline-richtext {
  margin: 0;
  padding: 0;
}

.slider-mobile-gutter {
  margin: 0;
  padding: 0;
}

.page-width-desktop {
  margin: 0 auto;
  padding-left: 5rem;
  padding-right: 5rem;
  max-width: var(--page-width);
}

@media screen and (max-width: 989px) {
  .page-width-desktop {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.collection {
  padding: 0;
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5rem;
  row-gap: 1.5rem;
  margin: 0 auto;
  padding: 0;
  justify-content: center;
}

.grid--2-col-tablet-down {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (min-width: 750px) {
  .grid--2-col-tablet-down {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid--4-col-desktop {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .product-grid {
    column-gap: 2rem;
    row-gap: 2rem;
    max-width: 120rem;
    margin: 0 auto;
  }
}

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 90rem;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 100%;
    margin: 0 auto;
  }
}

/* Product Card */
.card-wrapper {
  color: inherit;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.card {
  text-decoration: none;
  text-align: var(--product-card-text-alignment);
}

.card:not(.ratio) {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card--standard {
  position: relative;
}

.card--standard.card--media {
  display: grid;
}

.card__inner {
  width: 100%;
}

.card--standard .card__inner {
  background-color: rgb(var(--color-background));
  border-radius: var(--product-card-corner-radius);
  border: calc(var(--product-card-border-width) * 1px) solid rgba(var(--color-foreground), var(--product-card-border-opacity));
  box-shadow: 0 0 0 calc(var(--product-card-shadow-visible) * 0.1rem) rgba(var(--color-shadow), var(--product-card-shadow-opacity));
  position: relative;
}

.card--card .card__inner {
  background: rgb(var(--color-background));
  border-radius: var(--product-card-corner-radius);
  padding: var(--product-card-image-padding);
  position: relative;
}

.card__media {
  overflow: hidden;
  position: relative;
  border-radius: calc(var(--product-card-corner-radius) - var(--product-card-border-width) * 1px);
  height: 26rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 750px) {
  .card__media {
    height: 30rem;
  }
}

@media screen and (max-width: 480px) {
  .card__media {
    height: 22rem;
  }
  
  .card__content {
    padding: 0.8rem 0.5rem;
  }
  
  .card__heading {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  
  .price-item--regular {
    font-size: 1.3rem;
  }
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.card__content {
  padding: 1rem 0.8rem;
  width: 100%;
}

.card__information {
  padding: 0;
}

.card__heading {
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
}

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

.card__heading a:hover {
  color: rgb(var(--color-button));
}

.card-information {
  text-align: var(--product-card-text-alignment);
  margin: 0;
}

.price {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: var(--product-card-text-alignment);
  font-family: var(--font-heading-family);
  font-size: 1.4rem;
  letter-spacing: 0.06rem;
}

.price__container {
  display: inherit;
  flex-direction: inherit;
  align-items: inherit;
  flex-wrap: inherit;
  justify-content: inherit;
}

.price-item {
  color: rgba(var(--color-foreground), 0.75);
}

.price-item--regular {
  font-size: 1.6rem;
}

/* Features Section */
.features-section {
  padding: 2.5rem 0 2rem;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2.5rem auto 2rem;
  max-width: 120rem;
  padding: 0 2rem;
}

.feature-card {
  background-color: rgb(var(--color-background));
  border-radius: 1.2rem;
  box-shadow: 0 0.2rem 1.2rem rgba(var(--color-shadow), 0.06);
  padding: 1.2rem 1rem 1.5rem 1rem;
  text-align: center;
  width: 30rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 0.6rem 2.4rem rgba(var(--color-shadow), 0.13);
  transform: translateY(-0.4rem) scale(1.03);
}

.feature-card img {
  max-width: 8rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0.2rem 0.8rem rgba(var(--color-shadow), 0.08));
}

.feature-card h3 {
  font-size: calc(var(--font-heading-scale) * 1.6rem);
  margin-bottom: 0.75rem;
  color: rgba(var(--color-foreground), 1);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-card a {
  color: rgb(var(--color-button));
  text-decoration: none;
}

.feature-card a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq {
  max-width: 80rem;
  margin: 3rem auto;
  background-color: rgb(var(--color-background));
  border-radius: 0.8rem;
  box-shadow: 0 0.2rem 0.8rem rgba(var(--color-shadow), 0.04);
  padding: 2.5rem;
}

.faq h2 {
  margin-bottom: 2rem;
  text-align: center;
}

.faq details {
  margin-bottom: 1.5rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.1);
  padding-bottom: 1.5rem;
}

.faq details:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq summary {
  font-weight: var(--font-body-weight-bold);
  cursor: pointer;
  padding: 1rem 0;
  font-size: 1.6rem;
  color: rgba(var(--color-foreground), 0.9);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  font-size: 2rem;
  font-weight: bold;
  color: rgb(var(--color-button));
  transition: transform 0.2s;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq summary:hover {
  color: rgb(var(--color-button));
}

.faq details p {
  padding: 1rem 0 0.5rem 0;
  line-height: 1.8;
  color: rgba(var(--color-foreground), 0.75);
  font-size: 1.5rem;
}

.faq details a {
  color: rgb(var(--color-button));
  text-decoration: none;
}

.faq details a:hover {
  text-decoration: underline;
}

/* WhatsApp Section */
.whatsapp-section {
  padding: 4rem 0;
  text-align: center;
}

.whatsapp-content {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  padding: 3rem 2rem;
  border-radius: 16px;
  color: white;
}

.whatsapp-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.whatsapp-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.95);
}

/* Button Styles */
.button {
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 1.5rem 3rem;
  text-decoration: none;
  background-color: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  min-width: 12rem;
  min-height: 4.5rem;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  text-align: center;
  vertical-align: middle;
  word-break: break-word;
}

.button:hover {
  background-color: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  opacity: 0.85;
}

.button--primary {
  background-color: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
}

.button--primary:hover {
  background-color: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  opacity: 0.85;
}

.button--whatsapp {
  background: #25d366;
  color: white;
  font-size: 1.6rem;
}

.button--whatsapp:hover {
  opacity: 0.9;
}

/* WhatsApp Button Section */
.whatsapp-button-section {
  background: rgb(var(--color-background));
  padding: 1rem 0;
  text-align: center;
  margin: 0 auto;
}

.button--whatsapp-header {
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  border: none;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  min-width: auto;
  min-height: auto;
  transition: all 0.3s ease;
}

.button--whatsapp-header:hover {
  opacity: 0.85;
}

/* Footer */
.footer {
  margin-top: 0px;
}

.section-footer-padding {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

@media screen and (min-width: 750px) {
  .section-footer-padding {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}

.footer__content-top {
  padding-top: 0;
}

.footer__blocks-wrapper {
  margin: 0;
  padding: 0;
}

.grid {
  display: grid;
  grid-gap: var(--grid-mobile-vertical-spacing) var(--grid-mobile-horizontal-spacing);
}

@media screen and (min-width: 750px) {
  .grid {
    grid-gap: var(--grid-desktop-vertical-spacing) var(--grid-desktop-horizontal-spacing);
  }
}

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

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

@media screen and (min-width: 750px) {
  .grid--4-col-tablet {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.grid__item {
  list-style: none;
}

.footer-block {
  display: block;
  margin-top: 0;
}

.footer-block__heading {
  margin-bottom: 2rem;
  margin-top: 0;
  font-size: 1.5rem;
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
  color: rgba(var(--color-foreground), 1);
}

@media screen and (min-width: 990px) {
  .footer-block__heading {
    margin-bottom: 2.4rem;
  }
}

.inline-richtext {
  display: inline;
}

.footer-block__details-content {
  margin-bottom: 0;
}

.footer-block__details-content.rte {
  font-size: 1.4rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
}

.rte p {
  margin: 0 0 1.6rem 0;
}

.rte a {
  color: rgba(var(--color-foreground), 1);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.rte h3 {
  margin: 2rem 0 1rem;
  font-size: calc(var(--font-heading-scale) * 1.6rem);
}

.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block__details-content.list-unstyled li {
  margin-bottom: 0;
}

.list-menu__item {
  line-height: calc(1 + 0.8 / var(--font-body-scale));
}

.list-menu__item--link {
  display: inline-block;
  padding: 1.1rem 0;
  text-decoration: none;
  color: rgba(var(--color-foreground), 0.75);
  font-size: 1.4rem;
}

@media screen and (min-width: 750px) {
  .list-menu__item--link {
    padding: 0.7rem 0;
  }
}

.link {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  word-break: break-word;
}

.link--text {
  color: inherit;
}

.link--text:hover {
  color: rgba(var(--color-foreground), 0.75);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.footer__content-bottom {
  padding-top: 0;
}

.footer__content-bottom-wrapper {
  display: flex;
  width: 100%;
}

.footer__column {
  width: 100%;
}

.footer__column--info {
  display: none;
}

@media screen and (min-width: 750px) {
  .footer__column--info {
    display: block;
  }
}

.footer__localization:empty {
  display: none;
}

.footer__copyright {
  text-align: center;
  padding-top: 3rem;
}

.caption {
  font-size: 1.2rem;
  letter-spacing: 0.07rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
}

.copyright__content {
  color: rgba(var(--color-foreground), 0.75);
  font-size: 1.1rem;
  display: block;
}

.copyright__content a {
  color: currentColor;
  text-decoration: none;
}

@media screen and (max-width: 749px) {
  .footer__blocks-wrapper.grid {
    grid-gap: 3rem 1.5rem;
  }
}

/* Age Verification Modal */
.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-verification-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-verification-modal {
  background: rgb(var(--color-background));
  border-radius: 2rem;
  padding: 3rem 2rem;
  max-width: 50rem;
  width: 90%;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.3);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-5rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.age-verification-content {
  text-align: center;
}

.age-verification-logo {
  margin-bottom: 2rem;
}

.age-icon {
  font-size: 6rem;
  display: block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.age-verification-modal h2 {
  font-size: calc(var(--font-heading-scale) * 3rem);
  margin-bottom: 1.5rem;
  color: rgba(var(--color-foreground), 1);
}

.age-verification-text {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(var(--color-foreground), 0.85);
}

.age-verification-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.age-btn {
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  font-weight: bold;
  border: none;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-heading-family);
  min-width: 16rem;
}

.age-btn-yes {
  background: #25d366;
  color: white;
}

.age-btn-yes:hover {
  background: #1fa855;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.5rem 2rem rgba(37, 211, 102, 0.3);
}

.age-btn-no {
  background: #e74c3c;
  color: white;
}

.age-btn-no:hover {
  background: #c0392b;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.5rem 2rem rgba(231, 76, 60, 0.3);
}

.age-verification-disclaimer {
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.6);
  line-height: 1.6;
  margin-top: 1.5rem;
}

.age-verification-disclaimer strong {
  color: rgb(var(--color-button));
  font-weight: bold;
}

@media screen and (max-width: 600px) {
  .age-verification-modal {
    padding: 2.5rem 1.5rem;
  }
  
  .age-verification-modal h2 {
    font-size: calc(var(--font-heading-scale) * 2.2rem);
  }
  
  .age-verification-text {
    font-size: 1.6rem;
  }
  
  .age-verification-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .age-btn {
    width: 100%;
    min-width: auto;
  }
  
  .age-icon {
    font-size: 5rem;
  }
}

/* Local SEO Section */
.local-seo-section {
  margin: 4rem 0;
  padding: 3rem 0;
  background: rgba(var(--color-background), 0.5);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.city-card {
  background: rgb(var(--color-background));
  padding: 2rem;
  border-radius: 0.8rem;
  box-shadow: 0 2px 10px rgba(var(--color-shadow), 0.1);
  border: 1px solid rgba(var(--color-shadow), 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(var(--color-shadow), 0.15);
}

.city-card h3 {
  color: rgb(var(--color-button));
  font-size: calc(var(--font-heading-scale) * 1.8rem);
  margin-bottom: 1rem;
  font-weight: var(--font-heading-weight);
}

.city-card p {
  color: rgba(var(--color-foreground), 0.8);
  line-height: 1.6;
  margin: 0;
}

@media screen and (max-width: 749px) {
  .cities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .city-card {
    padding: 1.5rem;
  }
  
  .city-card h3 {
    font-size: calc(var(--font-heading-scale) * 1.6rem);
  }
}

/* Breadcrumb Navigation */
.breadcrumb {
  padding: 1rem 0;
  font-size: 1.4rem;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: rgba(var(--color-foreground), 0.5);
}

.breadcrumb__link {
  color: rgba(var(--color-foreground), 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb__link:hover {
  color: rgb(var(--color-button));
}

.breadcrumb__link[aria-current="page"] {
  color: rgb(var(--color-foreground));
  font-weight: 500;
}

/* Page Content Styles */
.page-content {
  padding: 3rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  font-size: calc(var(--font-heading-scale) * 3.2rem);
  margin-bottom: 2rem;
  color: rgb(var(--color-foreground));
}

.page-content h2 {
  font-size: calc(var(--font-heading-scale) * 2.4rem);
  margin: 3rem 0 1.5rem 0;
  color: rgb(var(--color-foreground));
}

.page-content h3 {
  font-size: calc(var(--font-heading-scale) * 2rem);
  margin: 2rem 0 1rem 0;
  color: rgb(var(--color-foreground));
}

.page-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: rgba(var(--color-foreground), 0.8);
}

.page-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.page-content li {
  margin-bottom: 0.5rem;
  color: rgba(var(--color-foreground), 0.8);
}

.page-content a {
  color: rgb(var(--color-button));
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 749px) {
  .page-content {
    padding: 2rem 0;
  }
  
  .page-content h1 {
    font-size: calc(var(--font-heading-scale) * 2.8rem);
  }
  
  .page-content h2 {
    font-size: calc(var(--font-heading-scale) * 2.2rem);
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

