/**
 * Hemorrelax Static Website - CSS Design System
 * Based on HMRRLX-static-site-template-spec.md
 * 
 * Table of Contents:
 * 1. Font Faces
 * 2. CSS Custom Properties (Tokens)
 * 3. Reset & Base Styles
 * 4. Layout & Container
 * 5. Typography
 * 6. Buttons
 * 7. Header & Navigation
 * 8. Footer
 * 9. Hero Section
 * 10. Section Components
 * 11. Cards
 * 12. FAQ Accordion
 * 13. Product Gallery
 * 14. Utilities
 * 15. Responsive Breakpoints
 */

/* ==========================================================================
   1. Font Faces
   ========================================================================== */

/* Omnes web fonts are loaded via Adobe Typekit in HTML head. */

/* ==========================================================================
   2. CSS Custom Properties (Tokens)
   ========================================================================== */

:root {
  /* Colors - from design spec */
  --c-turquoise: #58C7EA;
  --c-turquoise-dark: #0080B3;
  --c-blue-dark: #0D4495;
  --c-red: #C00000;
  --c-o-circles: #C4ECF8;
  --c-white: #FFFFFF;
  --c-black: #000000;
  --c-gray-light: #f5f5f5;
  --c-gray: #666666;
  --c-gray-dark: #333333;

  /* Typography */
  --font-sans: "omnes-pro", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  
  /* Font sizes */
  --fs-xs: 0.75rem;    /* 12px */
  --fs-sm: 0.875rem;   /* 14px */
  --fs-base: 1rem;     /* 16px */
  --fs-md: 1.125rem;   /* 18px */
  --fs-lg: 1.25rem;    /* 20px */
  --fs-xl: 1.5rem;     /* 24px */
  --fs-2xl: 1.875rem;  /* 30px */
  --fs-3xl: 2.25rem;   /* 36px */
  --fs-4xl: 3rem;      /* 48px */
  --fs-5xl: 3.75rem;   /* 60px */

  /* Layout */
  --container: 1200px;
  --gutter: 20px;
  --gutter-lg: 40px;
  
  /* Spacing */
  --space-xs: 0.25rem;  /* 4px */
  --space-sm: 0.5rem;   /* 8px */
  --space-md: 1rem;     /* 16px */
  --space-lg: 1.5rem;   /* 24px */
  --space-xl: 2rem;     /* 32px */
  --space-2xl: 3rem;    /* 48px */
  --space-3xl: 4rem;    /* 64px */
  
  /* Section spacing */
  --section-padding: 64px;
  --section-padding-mobile: 40px;
  --section-padding-ingredients: 80px;
  --section-padding-ingredients-mobile: 80px;
  
  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Z-index layers */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-overlay: 500;

  /* Header */
  --site-header-height: 84px;
}

@media (min-width: 1100px) {
  :root {
    --site-header-height: 96px;
  }
}

/* ==========================================================================
   3. Reset & Base Styles
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--c-gray-dark);
  background-color: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: var(--site-header-height);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

ul,
ol {
  list-style: none;
}

/* ==========================================================================
   4. Layout & Container
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--narrow {
  max-width: 900px;
}

.container--wide {
  max-width: 1400px;
}

main {
  min-height: 100vh;
}

section {
  padding-top: var(--section-padding-mobile);
  padding-bottom: var(--section-padding-mobile);
}

@media (min-width: 900px) {
  section {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
  }
}

.blog-section {
  padding-top: 0;
  padding-bottom: var(--section-padding-mobile);
}

section.section--ingredients-padding {
  padding-top: var(--section-padding-ingredients-mobile);
}

@media (min-width: 900px) {
  section.section--ingredients-padding {
    padding-top: var(--section-padding-ingredients);
  }
}

/* Grid system */
.grid {
  display: grid;
  gap: var(--gutter);
}

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

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

.grid--4 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 600px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Flexbox utilities */
.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}

.flex--wrap {
  flex-wrap: wrap;
}

.flex--column {
  flex-direction: column;
}

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ==========================================================================
   5. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
  color: var(--c-blue-dark);
}

h1 {
  font-size: var(--fs-3xl);
}

h2 {
  font-size: var(--fs-2xl);
}

h3 {
  font-size: var(--fs-xl);
}

h4 {
  font-size: var(--fs-lg);
}

.nowrap {
  white-space: nowrap;
}

h5 {
  font-size: var(--fs-md);
}

h6 {
  font-size: var(--fs-base);
}

@media (min-width: 900px) {
  h1 {
    font-size: var(--fs-4xl);
  }
  
  h2 {
    font-size: var(--fs-3xl);
  }
  
  h3 {
    font-size: var(--fs-2xl);
  }
}

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: var(--fs-xl);
  line-height: 1.5;
  color: var(--c-blue-dark);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Title with highlighted "O" pattern */
.title-o {
  position: relative;
  display: inline-block;
  font-weight: 500;
  color: var(--c-blue-dark);
  z-index: 1;
}

.title-o__o {
  color: var(--c-red);
  position: relative;
  display: inline-block;
  line-height: 1;         /* important: stabilizes height across browsers */
  vertical-align: baseline; /* optional */
  z-index: -1;
}

/* Small circle - slightly bigger than the O */
.title-o__o::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 1.1em;
  height: 1.1em;
  border: 4px solid var(--c-o-circles);
  border-radius: 50%;
  z-index: -2;
  pointer-events: none;
}

/* Big circle - 3x bigger, centered */
.title-o__o::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.2em;
  height: 3.2em;
  border: 4px solid var(--c-o-circles);
  border-radius: 50%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.7;
}

/* Third circle - using inner span, positioned left of the O, increased by 20% */
.title-o__o .title-o__circle3 {
  position: absolute;
  width: 2.2em;
  height: 2.2em;
  border: 4px solid var(--c-o-circles);
  border-radius: 50%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.8;
}

/* Bottom-left position */
.title-o__o .title-o__circle3--bottom-left {
  top: 12%;
  left: -286%;
}

/* Top-right position */
.title-o__o .title-o__circle3--top-right {
  top: -90%;
  left: 100%;
}

@media (max-width: 600px) {
  .title-o__o .title-o__circle3--top-right {
    left: calc(100% - 8px);
  }
}

@media (max-width: 600px) {
  .title-o__o::before {
    top: 19px;
  }
}

@media (max-width: 600px) and (pointer: coarse) {
  .title-o__o::before {
    top: 18px;
  }
}

/* Firefox on macOS/Linux: desktop 30px, mobile 19px */
@supports (-moz-appearance: none) {
  .title-o__o::before {
    top: 30px;
  }

  @media (max-width: 600px) {
    .title-o__o::before {
      top: 19px;
    }
  }
}


/* Increased margin-bottom for specific title-o elements (3x normal) */
.title-o--margin-3x {
  margin-bottom: calc(var(--space-sm) * 3);
}

/* Increased margin-bottom for section titles with title-o--margin-3x */
.section-title .title-o--margin-3x {
  margin-bottom: calc(var(--space-sm) * 3);
  font-size: 350%;
}

@media (max-width: 600px) {
  .section-title .title-o--margin-3x {
    font-size: 220%;
  }
}

.section.bg-white .section-title .title-o--margin-3x {
  margin-bottom: 70px;
}

.section.bg-white .section-title .title-o--margin-3x.title-o--cream-ingredients-tight {
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .section.bg-white .section-title .title-o--margin-3x {
    font-size: 220%;
  }
}

.when-use-section .section-title .title-o--margin-3x {
  margin-bottom: 70px;
}

@media (max-width: 600px) {
  .when-use-section .section-title h2 {
    font-size: 220%;
  }
}

/* When to use section subtitle - OGS Light + Bold, dark blue */
.section-title .when-use-subtitle {

  font-weight: 400;
  color: #0d4495;
  font-size: var(--fs-xl);

  /*font-weight: 300;
  color: #0d4495;
  font-size: var(--fs-md);*/
  max-width: 900px;
}

.when-use-subtitle strong {
  font-weight: 500;
}

.when-use-section .where-buy-disclaimer {
  color: #0080b3;
}

/* Section titles */
.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title--xl h2 {
  font-size: 350%;
}

.section-title h2 {
  margin-bottom: var(--space-sm);
}

.section-title p {
  color: var(--c-gray);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* BOTOX EFEKT subtitle - must come after .section-title p to override */
.section-title .botox-subtitle {
  font-weight: 400;
  color: #0d4495;
  font-size: var(--fs-xl);
  white-space: normal;
  max-width: none;
}

.botox-subtitle strong {
  font-weight: 500;
}

/* ==========================================================================
   6. Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-base);
  line-height: 1;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-base);
}

.btn:focus-visible {
  outline: 2px solid var(--c-turquoise);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--c-turquoise);
  color: var(--c-white);
  position: relative;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: var(--fs-lg);
  z-index: 1;
}

.btn--primary:hover {
  background: var(--c-turquoise-dark);
}

/* Decorative circles on primary button - bigger circle 2x radius, smaller at top-left */
.btn--primary::before,
.btn--primary::after {
  content: "";
  position: absolute;
  border: 2px solid var(--c-turquoise-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Bigger circle (increased by 50%: 36px * 1.5 = 54px) */
.btn--primary::before {
  width: 70px;
  height: 70px;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}

/* Smaller circle positioned at top-left of bigger circle (increased by 50%: 18px * 1.5 = 27px) */
.btn--primary::after {
  width: 37px;
  height: 37px;
  left: -22px;
  top: -14px;
  transform: translateY(-35%);
  border-color: var(--c-turquoise-dark);
}

.btn--secondary {
  background: var(--c-white);
  color: var(--c-blue-dark);
  border: 2px solid var(--c-turquoise);
}

.btn--secondary:hover {
  background: var(--c-turquoise);
  color: var(--c-white);
}

.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border: 2px solid var(--c-white);
}

.btn--ghost:hover {
  background: var(--c-white);
  color: var(--c-turquoise-dark);
}

.btn--sm {
  padding: 0.625rem 1rem;
  font-size: var(--fs-sm);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: var(--fs-lg);
}

.btn--block {
  display: flex;
  width: 100%;
}

/* ==========================================================================
   7. Header & Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: var(--c-white);
  box-shadow: var(--shadow-sm);
  height: var(--site-header-height);
}

@media (min-width: 64rem) {
  .top-bar ~ .dialog-off-canvas-main-canvas .site-header {
    top: var(--admin-toolbar-top-bar-height, 64px);
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
  gap: var(--space-lg);
}

.brand {
  display: flex;
  align-items: center;
  align-self: stretch;
  overflow: hidden;
  aspect-ratio: 12 / 1;
}

.nav-toggle {
  margin-left: auto;
}

.brand img {
  width: 100%;
  height: 100%;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1100px) {
  .brand {
    order: 1;
  }

  .lang {
    order: 2;
    margin-left: 0;
  }

  .nav-toggle {
    order: 3;
    margin-left: auto;
  }

  .header__badge {
    order: 4;
    margin-left: var(--space-sm);
  }

  .main-nav {
    order: 4;
  }

  .brand {
    align-self: center;
    height: 25px;
    aspect-ratio: auto;
  }

  .brand img {
    width: auto;
    height: 25px;
    object-fit: contain;
  }
}

@media (max-width: 600px) {
  .header__inner {
    gap: 0;
  }
}

@media (max-width: 400px) {
  .brand {
    height: 45px;
  }

  .brand img {
    height: 45px;
  }
}

/* Navigation */
.main-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--c-white);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: var(--space-sm);
}

.main-nav.is-open {
  display: flex;
}

.main-nav a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: #0d4495;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--transition-fast);
  border-radius: var(--radius-sm);
}

.nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-item > a {
  display: block;
}

.nav-submenu-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: transparent;
  border: none;
  color: #0d4495;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-submenu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding-left: var(--space-md);
}

.nav-submenu a {
  padding: var(--space-xs) 0;
}

.nav-submenu-back {
  display: none;
}

.nav-item.is-open .nav-submenu {
  display: flex;
}

.nav-close {
  display: none;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #58c7ea;
}

.main-nav a.is-active {
  font-weight: 500;
}

@media (min-width: 1100px) {
  .brand {
    align-self: center;
    width: 150px;
    height: auto;
    aspect-ratio: auto;
    flex: 0 0 auto;
  }

  .brand img {
    width: 150px;
    max-width: 150px;
    height: auto;
    object-fit: contain;
  }

  .main-nav {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    gap: var(--space-xs);
    height: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    overflow: visible;
  }
  
  .main-nav a {
    padding: var(--space-sm) var(--space-md);
  }

  .nav-item {
    flex-direction: row;
    align-items: center;
  }

  .nav-item:hover,
  .nav-item:focus-within,
  .nav-item.is-open {
    z-index: calc(var(--z-dropdown) + 1);
  }

  .nav-item > a {
    display: block;
  }

  .nav-submenu-back {
    display: none;
  }

  .nav-item.has-submenu > a {
    display: none;
  }

  .nav-item.has-submenu > .nav-submenu-toggle {
    display: flex;
    width: auto;
    justify-content: flex-start;
    padding: var(--space-sm) var(--space-md);
  }

  .nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 32px;
  }

  .nav-submenu {
    position: absolute;
    top: calc(100% + 25px);
    left: 50%;
    transform: translateX(-50%);
    display: none;
    min-width: 220px;
    padding: 10px 6px 6px;
    background-image: linear-gradient(rgba(13, 68, 149, 0.3), rgba(13, 68, 149, 0.3)),
      linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(230, 238, 246, 0.8));
    background-size: 100% 1px, 100% 100%;
    background-position: top left, top left;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 18px 34px rgba(13, 68, 149, 0.2);
    backdrop-filter: blur(10px);
    z-index: var(--z-dropdown);
  }

  .nav-submenu a[href="/index.html#produkty"] {
    display: none;
  }

  .nav-submenu::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 11px;
    border-style: solid;
    border-color: transparent transparent rgba(13, 68, 149, 0.3) transparent;
    pointer-events: none;
  }

  .nav-submenu::after {
    content: "";
    position: absolute;
    bottom: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent rgba(230, 238, 246, 0.9) transparent;
    pointer-events: none;
  }

  .nav-item:hover .nav-submenu,
  .nav-item:focus-within .nav-submenu {
    display: flex;
    transform: translateX(-50%);
  }

  .nav-item.is-open .nav-submenu {
    display: flex;
    transform: translateX(-50%);
  }

  .nav-submenu a {
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: var(--space-sm) var(--space-md);
    border-radius: 0;
    text-align: center;
  }

  .nav-submenu a + a::before {
    content: "";
    position: absolute;
    left: var(--space-md);
    right: var(--space-md);
    top: -2px;
    height: 1px;
    background: rgba(13, 68, 149, 0.12);
  }

  .nav-submenu a[href="/products/cream.html"]::before {
    content: none;
  }

  .nav-submenu a:hover,
  .nav-submenu a:focus-visible {
    color: #4278c9;
    background: linear-gradient(90deg, rgba(13, 68, 149, 0) 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0.8) 60%, rgba(13, 68, 149, 0) 100%);
  }

  .nav-item.has-submenu > .nav-submenu-toggle:hover,
  .nav-item.has-submenu > .nav-submenu-toggle:focus-visible,
  .nav-item.has-submenu.is-open > .nav-submenu-toggle {
    color: #58c7ea;
  }
}

@media (max-width: 1099px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 100%);
    padding: var(--space-lg);
    z-index: var(--z-dropdown);
    overflow: hidden;
  }

  .main-nav.is-open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-close-divider {
    width: 100%;
    height: 1px;
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
    background: rgba(13, 68, 149, 0.15);
  }

  .nav-close {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: var(--space-sm);
    margin-top: 0;
    margin-bottom: 0;
    padding: var(--space-sm) var(--space-md);
    background: transparent;
    border: none;
    color: #0d4495;
    cursor: pointer;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast);
  }

  .nav-close:hover,
  .nav-close:focus-visible {
    color: #58c7ea;
  }

  .nav-close__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2rem;
    height: 1.2rem;
    font-size: 1.2rem;
    line-height: 1;
  }

  .nav-close__text {
    line-height: 1;
  }

  .nav-item > a {
    display: none;
  }

  .nav-submenu-toggle {
    display: flex;
  }

  .nav-submenu-toggle::after {
    content: "→";
    margin-left: var(--space-sm);
    font-size: 1.1em;
    line-height: 1;
  }

  .nav-submenu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--space-lg);
    position: absolute;
    inset: auto;
    background: var(--c-white);
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    transition: none;
    z-index: auto;
  }

  .nav-submenu-back {
    margin-top: calc(var(--space-md) * -1);
    margin-bottom: var(--space-sm);
  }

  .nav-submenu a {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
  }

  .nav-submenu-back {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: none;
    border: none;
    color: #0d4495;
    font-weight: 500;
    text-transform: uppercase;
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
  }

  .nav-item.is-open .nav-submenu {
    display: flex;
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav.is-submenu-open > a,
  .main-nav.is-submenu-open .nav-submenu-toggle {
    display: none;
  }
}

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-blue-dark);
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-left: var(--space-sm);
}

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

.nav-toggle__icon {
  width: 22px;
  height: 2px;
  background: var(--c-turquoise);
  box-shadow: 0 -6px 0 var(--c-blue-dark), 0 6px 0 var(--c-blue-dark);
  border-radius: 2px;
}

@media (min-width: 1100px) {
  .nav-toggle {
    display: none;
  }
}

/* Language selector */
.lang {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-left: auto;
}

.header__badge {
  max-width: 70px;
  flex-shrink: 0;
  backface-visibility: hidden;
}


.lang__dropdown {
  position: relative;
}

.lang__dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 32px;
}

.lang__current {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  color: var(--c-blue-dark);
  font-weight: 500;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  border: none;
  background: transparent;
  padding-right: 1.75rem;
  position: relative;
  cursor: pointer;
}

.lang__current:focus-visible {
  outline: 2px solid rgba(13, 68, 149, 0.35);
  outline-offset: 2px;
}

/* Downward triangle for language selector */
.lang__current::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--c-blue-dark);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-40%);
}

.lang__menu {
  position: absolute;
  top: calc(100% + var(--space-md) + var(--space-sm) + 3px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  padding: 10px 6px 6px;
  display: none;
  flex-direction: column;
  gap: 4px;
  border-radius: 0 0 16px 16px;
  background-image: linear-gradient(rgba(13, 68, 149, 0.3), rgba(13, 68, 149, 0.3)),
    linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(230, 238, 246, 0.65));
  background-size: 100% 1px, 100% 100%;
  background-position: top left, top left;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 34px rgba(13, 68, 149, 0.2);
  backdrop-filter: blur(12px);
  z-index: var(--z-dropdown);
}

.lang__menu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 11px;
  border-style: solid;
  border-color: transparent transparent rgba(13, 68, 149, 0.3) transparent;
  pointer-events: none;
}

.lang__menu::after {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent rgba(230, 238, 246, 0.9) transparent;
  pointer-events: none;
}

.lang__dropdown.is-open .lang__menu {
  display: flex;
}

@media (hover: hover) and (pointer: fine) {
  .lang__dropdown:hover .lang__menu {
    display: flex;
  }
}

.lang__dropdown.is-locked:not(.is-open):hover .lang__menu {
  display: none;
}

.lang__option {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border: none;
  background: transparent;
  color: var(--c-blue-dark);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  padding: 8px 12px 8px 32px;
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.lang__option + .lang__option::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: -2px;
  height: 1px;
  background: rgba(13, 68, 149, 0.12);
}

.lang__option::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  color: var(--c-blue-dark);
  opacity: 0;
}

.lang__option.is-selected {
  font-weight: 600;
}

.lang__option.is-selected::before {
  content: "✓";
  opacity: 1;
  font-size: 12px;
  line-height: 1;
}

.lang__option:hover,
.lang__option:focus-visible {
  color: #4278c9;
  background: linear-gradient(90deg, rgba(13, 68, 149, 0) 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0.8) 60%, rgba(13, 68, 149, 0) 100%);
  box-shadow: none;
}

/* Swiss Quality badge in header */
.header__badge {
  height: 70px;
  width: auto;
}

@media (min-width: 900px) {
  .header__badge {
    height: 70px;
    margin-bottom: -10px;
  }
}

/* ==========================================================================
   8. Footer
   ========================================================================== */

.site-footer {
  background: linear-gradient(to bottom, #014fa2 0%, #012e65 100%);
  color: var(--c-white);
}

.footer__top {
  padding: var(--space-xl) 0;
}

.footer__top .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}
.contact-container{
  width: 70%;
  max-width: var(--container);
  margin: 0 auto;
}

.footer__top p {
  margin: 0;
  font-size: var(--fs-md);
}

.social {
  display: flex;
}

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 4px;
  color: var(--c-white);
  font-size: var(--fs-md);
  font-weight: 500;
  transition: opacity var(--transition-fast);
}

.social a:hover {
  opacity: 0.8;
}

.footer__bottom {
  padding: var(--space-lg) 0;
}

.footer__bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-md);
}

.footer__bottom a {
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer__bottom a:hover {
  opacity: 1;
}

.footer__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logos img {
  height: 40px;
  width: auto;
}

/* ==========================================================================
   9. Hero Section
   ========================================================================== */

.hero {
  position: relative;
  background: linear-gradient(to bottom, #014fa2 0%, #012e65 100%);
  color: var(--c-white);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-xl);
  align-items: stretch;
  grid-template-areas:
    "content"
    "image"
    "cta";
}

.hero__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-left: 0;
  grid-area: content;
}

.hero__cta {
  grid-area: cta;
  display: flex;
  justify-content: center;
  position: relative;
  width: max-content;
  margin: 0 auto;
}

.hero__cta .btn {
  align-self: center;
  margin-left: 0;
}

.hero__cta::before,
.hero__cta::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border: 2px solid var(--c-turquoise-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero__cta::before {
  width: 70px;
  height: 70px;
  left: -18px;
  transform: translateY(-50%);
}

.hero__cta::after {
  width: 37px;
  height: 37px;
  left: -35px;
  top: calc(50% - 22px);
  transform: translateY(-50%);
}

.hero__cta .btn--primary {
  position: relative;
  z-index: 1;
}

.hero__cta .btn--primary::before,
.hero__cta .btn--primary::after {
  display: none;
}

.hero__image {
  align-self: center;
  grid-area: image;
}

.hero__content h1 {
  color: var(--c-white);
  margin-bottom: var(--space-md);
}

.hero__subline {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
  font-weight: 300;
  font-size: 1.5em;
}

.hero__bullet {
  color: var(--c-turquoise);
  font-size: 1em;
  line-height: inherit;
  display: inline;
  vertical-align: baseline;
  transform: none;
}

.hero__desc {
  font-size: var(--fs-md);
  color: var(--c-turquoise);
  font-size: var(--fs-lg);
  /*  margin-bottom: var(--space-sm);*/
  font-weight: 300;
  font-size: 1.5em;
  margin-top: auto;
  margin-bottom: 55px;
}

.hero__badges {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.hero__badges img {
  height: 60px;
  width: auto;
}

.hero__image {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero__image img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

/* MDR seal stays attached to hero image */
.hero__mdr-seal {
  position: absolute;
  top: -36px;
  right: 0;
  width: 96px;
  height: 96px;
}

@media (min-width: 600px) {
  .hero__mdr-seal {
    width: 144px;
    height: 144px;
  }
}

@media (min-width: 900px) {
  .hero__mdr-seal {
    width: 192px;
    height: 192px;
  }
}

@media (min-width: 900px) {
  .hero {
    padding: var(--space-3xl) 0 0;
  }
  
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    grid-template-areas:
      "content image"
      "cta image";
  }
  
  .hero__content {
    text-align: left;
  }

  .hero__cta {
    justify-content: flex-start;
  }
  
  .hero__badges {
    justify-content: flex-start;
  }
  
  .hero__image img {
    max-height: 500px;
  }
}

/* Slider dots */
.dots {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgb(88, 199, 234);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.dot.is-active {
  background: var(--c-white);
  box-shadow: inset 0 0 0 1px rgba(13, 68, 149, 0.6);
}

.dot:hover {
  background: rgb(13, 68, 149);
}

/* ==========================================================================
   10. Section Components
   ========================================================================== */

/* Triple effect section */
.triple-effect {
  background: var(--c-white);
  scroll-margin-top: 96px;
}

.triple-effect__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  text-align: center;
}

/* Title row: icon NEXT TO title */
.triple-effect__title-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  max-width: 100%;
}

.triple-effect__title-row h2 {
  font-size: 350%;
  text-align: left;
  display: inline-block;
  flex: 0 1 auto;
  width: min-content;
  max-width: 100%;
}

@media (min-width: 800px) {
  .triple-effect__title-row h2 {
    width: auto;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .triple-effect__title-row h2 {
    font-size: 220%;
  }
}


.triple-effect__icon-wrap {
  width: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.triple-effect__icon {
  width: 100px;
  height: 120px;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 600px) {
  .triple-effect__icon-wrap {
    width: 140px;
  }

  .triple-effect__icon {
    width: 140px;
    height: 168px;
  }
}

@media (min-width: 900px) {
  .triple-effect__icon-wrap {
    width: 180px;
  }

  .triple-effect__icon {
    width: 180px;
    height: 216px;
  }
}

@media (min-width: 900px) {
  .triple-effect {
    scroll-margin-top: 112px;
  }
}

/* Subtitle styling: OGS Light+Bold, dark blue */
.triple-effect__subtitle {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-xl);
  color: var(--c-blue-dark);
  max-width: 700px;
}

.triple-effect__subtitle strong {
  font-weight: 500;
}

/* New turquoise paragraph */
.triple-effect__desc {
  font-size: var(--fs-base);
  color: var(--c-turquoise-dark);
  max-width: 900px;
  line-height: 1.6;
}

.triple-effect__items {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 900px) {
  .triple-effect__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.triple-effect__item {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}

/* Icon images - 60% bigger (80px * 1.6 = 128px) */
.triple-effect__item img {
  width: 128px;
  height: 128px;
  margin: 0 auto var(--space-md);
}

/* Botox effect icon: crop vertically, wider */
.triple-effect__item img[src*="picto-botox-effect.svg"] {
  width: 160px;
  height: 128px;
  object-fit: cover;
  object-position: center;
}

/* Number + title inline, centered */
.triple-effect__item-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.triple-effect__number {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--c-red);
}

.triple-effect__item h3 {
  font-size: var(--fs-lg);
  margin: 0;
  color: var(--c-blue-dark);
}

/* Paragraph: OGS Light, bigger size, bigger line-height, dark turquoise (0/128/179 = #0080B3) */
.triple-effect__item p {
  color: #0080B3;
  font-size: var(--fs-md);
  font-weight: 300;
  line-height: 1.8;
}

/* Blue banner section */
.banner-section {
  background: var(--c-turquoise-dark);
  color: var(--c-white);
}

.banner-section h2,
.banner-section h3 {
  color: var(--c-white);
}

.banner-section h3 {
  margin-top: 0;
  margin-bottom: var(--space-md);
  min-height: 3.5rem;
}

.banner-section p {
  font-size: var(--fs-md);
}

.contraindications ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
  display: grid;
  gap: var(--space-md);
}

.contraindications li {
  color: var(--c-turquoise-dark);
  font-size: var(--fs-md);
}

.contraindications p {
  font-size: var(--fs-md);
}

.contraindications h3 {
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.banner-section ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
  display: grid;
  gap: var(--space-md);
  font-size: var(--fs-md);
  overflow-wrap: anywhere;
}

.banner-section--split {
  display: grid;
  gap: var(--space-xl);
}

.banner-section__list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
  display: grid;
  gap: var(--space-lg);
  font-size: var(--fs-md);
  font-weight: 300;
  line-height: 1.7;
}

.banner-section--de-cream-how ul ul {
  padding-left: 2.25rem;
  margin-top: var(--space-sm);
  gap: var(--space-sm);
}

.banner-section--de-suppositories-how ul ul {
  padding-left: 2.25rem;
  margin-top: var(--space-sm);
  gap: var(--space-sm);
}

@media (min-width: 900px) {
  .banner-section--split {
    grid-template-columns: 1fr 1fr;
  }
}

/* Botox effect section */
.botox-effect {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.botox-effect__image {
  text-align: center;
  background: linear-gradient(to bottom, #014fa2 0%, #012e65 100%);
  padding: var(--space-xl);
}

.botox-effect__image img {
  max-width: 300px;
  margin: 0 auto;
}

/* Botox effect content text - OGS Light, dark turquoise */
.botox-effect__content p {
  font-weight: 300;
  color: #0080b3;
  line-height: 1.7;
  font-size: var(--fs-md);
}

.botox-effect__content ul {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

/* List items - OGS Light, dark blue, bigger text */
.botox-effect__content li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-weight: 300;
  font-size: var(--fs-xl);
  color: #0d4495;
}

/* Bigger checkmark */
.botox-effect__content li::before {
  content: "";
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: url("../img/icons/06_V4_Botox_effect_section_checkmark.png") center center / contain no-repeat;
}

@media (max-width: 899px) {
  .botox-effect__content {
    text-align: left;
  }

  .botox-effect__content ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .botox-effect__content li {
    justify-content: flex-start;
  }
}

@media (min-width: 900px) {
  .botox-effect {
    grid-template-columns: 1fr 1fr;
  }
}

/* When to use section */
.when-use__items {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .when-use__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .when-use__items {
    grid-template-columns: repeat(5, 1fr);
  }
}

.when-use__item {
  text-align: center;
  padding: var(--space-lg);
  background: var(--c-white);
  /*border-radius: var(--radius-md);*/
  box-shadow: var(--shadow-sm);
}

.when-use__item img {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-md);
}

.when-use__item h4 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-sm);
}

.when-use__item p {
  font-size: var(--fs-sm);
  color: var(--c-gray);
}

/* Ingredients section */
.ingredients__main {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 600px) {
  .ingredients__main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .ingredients__main {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ingredient-card {
  text-align: center;
  padding: var(--space-lg);
  background: transparent;
  border-radius: var(--radius-md);
}

.ingredient-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
}

/* Ingredient 01 icon: crop vertical padding, widen */
/*.ingredient-card img[src*="ingredient-01.svg"] {
  width: 90px;
  height: 70px;
  object-fit: cover;
  object-position: center;
}*/

/* Supporting ingredients: first and last icon larger */
.ingredients__supporting .ingredient-card:first-child img,
.ingredients__supporting .ingredient-card:last-child img {
  width: 130px;
  height: 110px;
  object-fit: cover;
  object-position: center;
  clip-path: inset(20px 0);
  margin-bottom: 0px;
}

.ingredients__supporting .ingredient-card:nth-child(2) img {
  width: 110px;
  height: auto;
  object-fit: contain;
  object-position: center;
  margin-bottom: 15px;
  margin-top: -17px;
  box-sizing: content-box;
}

/* Ensure same treatment in product ingredient columns */
.ingredients__main--numbered .ingredient-card img[src*="ingredient-01.svg"] {
  width: 130px;
  height: 70px;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

/* Ingredient card header with inline number */
.ingredient-card__header {
  margin-bottom: 0;
  color: var(--c-blue-dark);
}

.ingredient-card__title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  /* margin-bottom: var(--space-md); */
  min-height: 0;
}

.ingredients__supporting .ingredient-card__title-block {
  margin-bottom: var(--space-sm);
  min-height: 0;
}

.ingredient-card__number {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--c-red);
  line-height: 1;
  display: inline-block;
  margin-right: var(--space-xs);
}

.ingredient-card h4 {
  font-size: var(--fs-xl);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

/* Subtitle for ingredient cards (e.g., plant names) */
.ingredient-card__subtitle {
  font-size: var(--fs-xs);
  font-weight: 300;
  color: var(--c-blue-dark);
  margin-bottom: 0;
}

.ingredient-card p.ingredient-card__subtitle {
  color: var(--c-blue-dark);
}

.ingredient-card p {
  font-size: var(--fs-md);
  font-weight: 300;
  color: #0080B3;
  line-height: 1.6;
  text-align: center;
  margin-top: 25px;
}

.ingredients__supporting {
  display: grid;
  gap: var(--space-lg);
  justify-items: center;
}

.ingredients__supporting-intro {
  font-size: var(--fs-xl);
  font-weight: 300;
}

@media (min-width: 600px) {
  .ingredients__supporting {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ingredients__supporting .ingredient-card {
  background: transparent;
  text-align: center;
}

/* Blue intro paragraph for supporting ingredients section */
.ingredients__intro {
  font-weight: 300;
  color: var(--c-blue-dark);
  font-size: var(--fs-xl);
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--space-xl);
}

/* Ingredients subtitle - OGS Light + Bold, dark blue (13/68/149 = #0d4495) */
.section-title .ingredients-subtitle {
  font-weight: 300;
  color: #0d4495;
  font-size: var(--fs-xl);
  max-width: 900px;
}

.ingredients-subtitle strong {
  font-weight: 500;
}

/* Where to buy section */
.where-buy__partners {
  margin-bottom: var(--space-2xl);
}

.where-buy__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
}

.where-buy__logos a {
  display: block;
  padding: var(--space-md);
  background: var(--c-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast);
}

.where-buy__logos a:hover {
  box-shadow: var(--shadow-md);
}

.where-buy__logos img {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.where-buy__disclaimer {
  font-size: var(--fs-sm);
  color: var(--c-gray);
  text-align: center;
  margin-top: var(--space-xl);
  padding: var(--space-md);
  background: var(--c-gray-light);
  border-radius: var(--radius-md);
}

/* Contact section */
.contact__inner {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .contact__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.contact__info h3 {
  margin-bottom: var(--space-md);
}

.contact__info p {
  margin-bottom: var(--space-sm);
}

.contact__map {
  min-height: 300px;
  background: var(--c-gray-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gray);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   11. Cards
   ========================================================================== */

/* Product card */
.product-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  aspect-ratio: 1;
  background: var(--c-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.product-card__image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.product-card__body {
  padding: var(--space-lg);
}

.product-card__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.product-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-gray);
  margin-bottom: var(--space-md);
}

.product-card__badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: var(--c-turquoise);
  color: var(--c-white);
  font-size: var(--fs-xs);
  font-weight: 500;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.product-card__badge--cosmetic {
  background: var(--c-blue-dark);
}

/* Blog card */
.blog-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
}

.blog-card__image {
  aspect-ratio: 16/9;
  background: var(--c-gray-light);
  overflow: hidden;
}

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

.blog-card__body {
  padding: var(--space-lg);
  text-align: left;
}

.blog-card__date {
  font-size: var(--fs-sm);
  color: rgb(88, 199, 234);
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.blog-card__title a {
  color: var(--c-blue-dark);
  transition: color var(--transition-fast);
}

.blog-card__title a:hover {
  color: var(--c-turquoise);
}

.blog-card__excerpt {
  font-size: var(--fs-sm);
  color: rgb(0, 128, 179);
  margin-bottom: var(--space-md);
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--c-turquoise);
  font-weight: 500;
  font-size: var(--fs-sm);
}

.blog-card__link:hover {
  color: var(--c-turquoise-dark);
}

/* ==========================================================================
   12. FAQ Accordion
   ========================================================================== */

.faq {
  background: var(--c-turquoise-dark);
  color: var(--c-white);
}

.faq h2 {
  color: var(--c-white);
}

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

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

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  cursor: pointer;
  font-weight: 500;
  font-size: var(--fs-lg);
  list-style: none;
}

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

.faq__item summary::after {
  content: "+";
  font-size: var(--fs-xl);
  font-weight: 300;
  transition: transform var(--transition-fast);
}

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

.faq__answer {
  padding-bottom: var(--space-lg);
  opacity: 0.9;
}

/* ==========================================================================
   13. Product Gallery
   ========================================================================== */

.product-gallery {
  display: grid;
  gap: var(--space-md);
}

.product-gallery--clean .product-gallery__main {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.product-gallery__main {
  background: var(--c-gray-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-gallery__main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-gallery__track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(0);
}

.product-gallery__slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__slide img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-gallery__thumbs {
  display: flex;
  gap: var(--space-sm);
}

.product-gallery__thumb {
  flex: 1;
  aspect-ratio: 1;
  background: var(--c-gray-light);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
}

.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
  border-color: var(--c-turquoise);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Product page layout */
.product-hero {
  display: grid;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
}

.product-hero__title {
  display: block;
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.product-hero__info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-hero__actions {
  margin-top: auto;
  margin-bottom: 40px;
  justify-content: center;
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Product hero CTA circles: attach to dedicated wrapper, not button.
   This prevents circles from covering the blue button background. */
.product-hero__actions::before,
.product-hero__actions::after {
  display: none;
}

.product-hero__cta-primary {
  position: relative;
  display: inline-flex;
  justify-content: center;
}

.product-hero__cta-primary::before,
.product-hero__cta-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border: 2px solid var(--c-turquoise-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.product-hero__cta-primary::before {
  width: 70px;
  height: 70px;
  left: -18px;
  transform: translateY(-50%);
}

.product-hero__cta-primary::after {
  width: 37px;
  height: 37px;
  left: -22px;
  top: -14px;
  transform: translateY(-35%);
}

.product-hero__cta-primary .btn--primary {
  position: relative;
  z-index: 1;
}

.product-hero__cta-primary .btn--primary::before,
.product-hero__cta-primary .btn--primary::after {
  display: none;
}

@media (max-width: 600px) {
  html[lang="pl"] .product-hero__cta-primary .btn--primary {
    font-size: clamp(0.85rem, 3.2vw, 1rem);
    padding: 0.75rem 1.1rem;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    max-width: min(100%, 18rem);
  }
}

@media (min-width: 900px) {
  .product-hero {
    grid-template-columns: 1fr 1fr;
  }
}

.product-hero__info h1 {
  margin-bottom: var(--space-lg);
}

.product-hero__features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-xl);
}

.product-hero__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
  border-left: 3px solid var(--c-turquoise);
}

.product-hero__features--bullets {
  list-style: disc;
  padding-left: 1.25rem;
}
.product-hero__features--bullets ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.product-hero__features--bullets li {
  display: list-item;
  list-style: disc;
  padding-left: 0;
  border-left: 0;
  color: rgb(0, 128, 179);
}

.product-hero__features--bullets p {
  color: rgb(0, 128, 179);
}

.product-hero__features--variant-suppositories > ul > li > ul > li::marker {
  font-size: 0.72em;
}

.product-hero__features--variant-spray > ul > li > ul {
  padding-left: 2rem;
  margin-top: var(--space-xs);
}

/* Cross-sell products */
.cross-sell {
  background: var(--c-white);
}

.cross-sell__items {
  display: grid;
  gap: var(--space-lg);
  justify-items: center;
  justify-content: center;
}

@media (min-width: 900px) {
  .cross-sell__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cross-sell__items--products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .cross-sell__items--products .cross-sell__item {
    flex: 0 1 min(32%, 360px);
  }
}

.cross-sell__item {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  background: transparent;
  padding: var(--space-xl) 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  position: relative;
}

/* Keep circles attached to the button itself so long translations
   (e.g. HU CTA labels) do not shift circle position away from the edge. */
.cross-sell__item::before,
.cross-sell__item::after {
  display: none;
}

/* CTA circles on product-page cross-sell: anchor circles to CTA wrapper
   so they always sit on the button edge regardless of label length. */
.cross-sell__cta {
  position: relative;
  display: inline-flex;
  justify-content: center;
}

.cross-sell__cta::before,
.cross-sell__cta::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border: 2px solid var(--c-turquoise-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.cross-sell__cta::before {
  width: 70px;
  height: 70px;
  left: -18px;
  transform: translateY(-50%);
}

.cross-sell__cta::after {
  width: 37px;
  height: 37px;
  left: -22px;
  top: -14px;
  transform: translateY(-35%);
}

.cross-sell__cta .btn--primary {
  position: relative;
  z-index: 1;
}

.cross-sell__cta .btn--primary::before,
.cross-sell__cta .btn--primary::after {
  display: none;
}

/* In product-page cross-sell cards keep circles outside the button fill.
   This avoids tinting/covering the blue button background for long labels. */
.cross-sell__item img {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.cross-sell__image-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  border: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cross-sell__image-link:hover,
.cross-sell__image-link:focus-visible {
  transform: translateY(-2px);
  opacity: 0.9;
}

.cross-sell__item h4 {
  margin-bottom: var(--space-sm);
}

/* ==========================================================================
   14. Utilities
   ========================================================================== */

.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;
}

/* Skip link - visually hidden until focused */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--c-blue-dark);
  color: var(--c-white);
  padding: var(--space-sm) var(--space-md);
  z-index: var(--z-overlay);
  opacity: 0;
  pointer-events: none;
}

.skip-link:focus {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

/* Spacing utilities */
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* Background colors */
.bg-white { background-color: var(--c-white); }
.bg-light { background-color: var(--c-gray-light); }
.bg-turquoise { background-color: var(--c-turquoise-dark); color: var(--c-white); }
.bg-blue { background-color: var(--c-blue-dark); color: var(--c-white); }

/* ==========================================================================
   15. Responsive Breakpoints Reference
   ========================================================================== */

/*
  Small (mobile):  < 600px (default)
  Medium (tablet): >= 600px
  Large (desktop): >= 900px
  XL (wide):       >= 1200px
*/

/* Blog page styles */
.blog-header {
  text-align: center;
  padding: var(--space-2xl) 0;
  background: var(--c-gray-light);
}

/* Blog hero */
.blog-hero {
  position: relative;
  padding: 0;
  width: 100%;
  aspect-ratio: 2.5 / 1;
  color: var(--c-white);
  overflow: hidden;
}

@media (min-width: 900px) {
  .blog-hero {
    aspect-ratio: 3.5 / 1;
  }
}

.blog-hero__media,
.blog-hero__overlay {
  position: absolute;
  inset: 0;
}

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

.blog-hero__overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
}

.blog-hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) 0;
}

.blog-hero__content .container {
  width: 100%;
}

.blog-hero__title {
  color: var(--c-o-circles);
  letter-spacing: 0.08em;
  font-size: var(--fs-4xl);
}

.breadcrumbs {
  margin-bottom: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--c-blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.breadcrumbs a {
  color: var(--c-blue-dark);
}

.breadcrumbs--hero,
.breadcrumbs--hero a {
  color: var(--c-o-circles);
}

.breadcrumbs--under-hero {
  margin-top: var(--space-md);
}

.breadcrumbs--under-hero a {
  color: var(--c-blue-dark);
}

.breadcrumbs--under-hero span {
  color: var(--c-turquoise);
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.blog-page {
  width: 28px;
  height: 28px;
  border: 1px solid var(--c-blue-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  color: var(--c-blue-dark);
}

.blog-page.is-active {
  background: var(--c-turquoise);
  border-color: var(--c-turquoise);
  color: var(--c-white);
}

.blog-page--next {
  border: none;
  width: auto;
  height: auto;
  font-size: var(--fs-md);
  color: var(--c-blue-dark);
}

@media (min-width: 900px) {
  .blog-hero__title {
    font-size: var(--fs-5xl);
  }
}

.blog-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Article page styles */
.article-header {
  padding: var(--space-2xl) 0;
  background: var(--c-gray-light);
}

.article-intro {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  color: var(--c-blue-dark);
}

.article-hero {
  position: relative;
  margin-bottom: var(--space-lg);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

@media (max-width: 599px) {
  .article-hero {
    margin-left: 30px;
    margin-right: 30px;
  }
}

@media (min-width: 900px) {
  .article-hero {
    aspect-ratio: 3.5 / 1;
  }
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.breadcrumbs--article {
  margin-bottom: var(--space-md);
}

@media (max-width: 599px) {
  .breadcrumbs--article {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.article-intro a {
  color: var(--c-blue-dark);
}

.article-title {
  text-align: center;
  margin-bottom: var(--space-md);
}

.article-divider {
  width: 120px;
  height: 2px;
  margin: var(--space-md) auto;
  background: var(--c-turquoise);
}

.article-meta-desc {
  text-align: center;
  color: var(--c-blue-dark);
  font-style: italic;
}

.article-subtitle {
  text-align: center;
  margin: var(--space-2xl) 0 var(--space-md);
  color: var(--c-turquoise);
}

.article-split {
  align-items: center;
  margin-top: var(--space-lg);
}

.article-split__media {
  aspect-ratio: 2 / 1;
}

.article-split__media img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.article-body-large {
  font-size: var(--fs-md);
  margin-bottom: var(--space-lg);
}

.article-gallery {
  margin: var(--space-xl) 0;
}

.article-gallery figure {
  text-align: center;
}

.article-gallery img {
  width: 85%;
  height: auto;
  margin: 0 auto;
}

.article-gallery figcaption {
  margin-top: var(--space-sm);
  font-size: var(--fs-xs);
  color: var(--c-blue-dark);
}

.article-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Circles on wrapper so they sit fully behind the button (position from button center, not page) */
.article-cta::before,
.article-cta::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 56%;
  border: 2px solid var(--c-turquoise-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.article-cta::before {
  width: 70px;
  height: 70px;
  transform: translate(calc(-50% - 120px), -50%);
}

.article-cta::after {
  width: 37px;
  height: 37px;
  transform: translate(calc(-50% - 150px), -130%);
  border-color: var(--c-turquoise-dark);
}

.article-cta .btn {
  color: var(--c-white);
}

.article-cta .btn--primary {
  position: relative;
  z-index: 1;
}

/* Use wrapper circles only; hide button’s own circles */
.article-cta .btn--primary::before,
.article-cta .btn--primary::after {
  display: none;
}

.article-header h1 {
  margin-bottom: var(--space-md);
}

.article-meta {
  color: var(--c-gray);
  font-size: var(--fs-sm);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--gutter);
}

.article-content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.article-content p {
  margin-bottom: var(--space-lg);
}

.article-content ul,
.article-content ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.article-content li {
  margin-bottom: var(--space-sm);
  list-style: disc;
}

.article-content img {
  margin: var(--space-xl) 0;
  border-radius: var(--radius-md);
}

.article-nav {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--c-gray-light);
}

/* Legal page styles */
.legal-page {
  padding: var(--space-2xl) var(--space-md);
}

.legal-page h1 {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.legal-page h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  text-align: center;
  color: var(--c-turquoise);
}

.legal-page p {
  margin-bottom: var(--space-md);
  color: var(--c-blue-dark);
}

.legal-page ul,
.legal-page ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.legal-page li {
  margin-bottom: var(--space-sm);
  list-style: disc;
  color: var(--c-blue-dark);
}

/* Product strip banner */
.product-strip {
  background: linear-gradient(to bottom, #014fa2 0%, #012e65 100%);
  padding: var(--space-xs) 0;
  margin: var(--space-2xl) 0;
}

.product-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 20px;
}

.product-strip__images {
  display: flex;
  justify-content: center;
  width: min(600px, 100%);
  height: 300px;
  margin: 0 auto;
  overflow: hidden;
}

.product-strip__images img {
  object-fit: cover;
  object-position: center;
  margin-top: -20px;
}

@media (min-width: 900px) {
  .product-strip__images {
    width: 400px;
    height: 320px;
  }

  .product-strip__images img {
    width: 100%;
    height: 100%;
  }
}

/* Product strip text - OGS Light, white text with turquoise dots */
.product-strip__text {
  font-weight: 300;
  font-size: clamp(1rem, 2.8vw, var(--fs-xl));
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  row-gap: 6px;
  gap: var(--space-md);
}

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

.product-strip__text a:hover,
.product-strip__text a:focus-visible {
  text-decoration: underline;
}

.product-strip__dot {
  width: 8px;
  height: 8px;
  background: #58c7ea;
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 600px) {
  .product-strip__text {
    font-size: clamp(0.84rem, 4.1vw, 1.05rem);
    gap: 8px 10px;
  }

  .product-strip__dot {
    width: 6px;
    height: 6px;
  }
}

/* CTA below product strip - centered with circles behind */
.product-strip__cta {
  display: flex;
  justify-content: center;
  padding: var(--space-xl) 0;
  background: var(--c-white);
  position: relative;
}

/* Circles positioned behind the button using wrapper pseudo-elements */
.product-strip__cta::before,
.product-strip__cta::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 48.5%;
  border: 2px solid var(--c-turquoise-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Bigger circle */
.product-strip__cta::before {
  width: 75px;
  height: 75px;
  transform: translate(calc(-50% - 120px), -50%);
}

/* Smaller circle at top-left of bigger */
.product-strip__cta::after {
  width: 40px;
  height: 40px;
  transform: translate(calc(-75% - 140px), -125%);
}

.product-strip__cta .btn--primary {
  position: relative;
  z-index: 1;
}

/* Remove default circles from this specific button */
.product-strip__cta .btn--primary::before,
.product-strip__cta .btn--primary::after {
  display: none;
}

/* ==========================================================================
   16. QA Fixes - New Section Styles
   ========================================================================== */

/* Hero Slider */
.hero-slider {
  position: relative;
}

.hero-slider__slide {
  display: none;
}

.hero-slider__slide.is-active {
  display: block;
  animation: heroSlideFade 900ms ease-in-out;
}

@keyframes heroSlideFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Triple Effect - Old numbered items (deprecated, using inline number now) */

/* When to Use Section - Full width band */
.when-use-section {
  padding: var(--section-padding-mobile) 0;
  background: var(--c-white);
}

@media (min-width: 900px) {
  .when-use-section {
    padding: var(--section-padding) 0;
  }
}

.when-use__band {
  background: var(--c-turquoise-dark);
}

.when-use__band .when-use__items {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .when-use__band .when-use__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .when-use__band .when-use__items {
    grid-template-columns: repeat(5, 1fr);
  }
}

.when-use__band .when-use__item {
  text-align: center;
  padding: var(--space-md);
  color: var(--c-white);
  background: transparent;
  box-shadow: none;
}

.when-use__band .when-use__item h4 {
  color: var(--c-white);
  font-size: var(--fs-lg);
  font-weight: 400;
}

.when-use__band .when-use__item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-sm);
}

/* When to use - Descriptions row (white background) */
.when-use__descriptions {
  background: var(--c-white);
  /* padding: var(--space-xl); */
}

.when-use__desc-items {
  display: grid;
  gap: var(--space-lg);
}

@media (max-width: 1200px) {
  .when-use__pairs-desktop {
    display: none;
  }

  .when-use__pairs-mobile {
    display: grid;
  }

  .when-use__pair {
    display: grid;
    margin-top: 30px;
  }

  .when-use__pairs-mobile .when-use__item {
    background: var(--c-turquoise-dark);
    padding: var(--space-md);
    color: var(--c-white);
  }

  .when-use__pairs-mobile .when-use__item h4 {
    color: var(--c-white);
    font-size: var(--fs-lg);
  }

  .when-use__pairs-mobile .when-use__desc-item {
    background: var(--c-white);
    padding: var(--space-md);
  }
}

@media (min-width: 1201px) {
  .when-use__pairs-mobile {
    display: none;
  }
}

@media (min-width: 600px) {
  .when-use__desc-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .when-use__desc-items {
    grid-template-columns: repeat(5, 1fr);
  }
}

.when-use__desc-item {
  text-align: center;
  padding: var(--space-md);
}

.when-use__desc-item p {
  font-weight: 300;
  font-size: var(--fs-md);
  color: #0080b3;
  line-height: 1.6;
  margin: 0;
}

/* Ingredients - Numbered 4-column - redesigned layout */
.ingredients__main--numbered {
  counter-reset: ingredient;
}

.ingredients__main--numbered .ingredient-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.ingredients__main--numbered .ingredient-card:first-child {
  width: calc(100% + 20px);
}

@media (max-width: 600px) {
  .ingredients__main--numbered .ingredient-card:first-child {
    width: 100%;
    max-width: 100%;
  }
}

.ingredients__main--numbered .ingredient-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  object-position: center;
  clip-path: inset(0px 0);
  margin: 0 auto 0;
}

.ingredients__main--numbered .ingredient-card:first-child img {
  width: 160px;
  margin-top: 0px;
}

.ingredients__main--numbered .ingredient-card__title-block {
  min-height: 0;
}

.ingredients__main--numbered .ingredient-card h4 {
  font-size: var(--fs-lg);
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.ingredients__main--numbered .ingredient-card[data-number] {
  position: relative;
}

/* Hide the old positioned number badge */
.ingredients__main--numbered .ingredient-card[data-number]::before {
  display: none;
}

/* Products Section - Dark blue band */
.products-section {
  background: var(--c-blue-dark);
  padding: var(--section-padding-mobile) 0;
  color: var(--c-white);
}

@media (min-width: 900px) {
  .products-section {
    padding: var(--section-padding) 0;
  }
}

.section-title--light h2,
.section-title--light p {
  color: var(--c-white);
}

.title-o--light {
  color: var(--c-white);
}

.title-o--light .title-o__o {
  color: var(--c-red);
}

.products-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Product card as full link on dark background */
.product-card--dark {
  display: block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-base), background var(--transition-base);
}

.product-card--dark:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.product-card--dark .product-card__image {
  background: var(--c-white);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.product-card--dark .product-card__body {
  padding: var(--space-lg);
  color: var(--c-white);
}

.product-card--dark .product-card__title {
  color: var(--c-white);
}

.product-card--dark .product-card__desc {
  color: rgba(255, 255, 255, 0.85);
}

.product-card--dark .product-card__badge {
  background: var(--c-turquoise);
  color: var(--c-white);
}

.product-card--dark .product-card__badge--cosmetic {
  background: var(--c-turquoise-dark);
}

/* FAQ Section - Two-tone with two columns */
.faq--two-tone {
  background: linear-gradient(to bottom, var(--c-turquoise-dark) 0%, var(--c-turquoise-dark) 50%, var(--c-blue-dark) 50%, var(--c-blue-dark) 100%);
  padding: var(--section-padding-mobile) 0;
}

@media (min-width: 900px) {
  .faq--two-tone {
    padding: var(--section-padding) 0;
  }
}

.faq__grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 900px) {
  .faq__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

.faq__column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq--two-tone .faq__item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border: none;
  overflow: hidden;
}

.faq--two-tone .faq__item summary {
  padding: var(--space-lg);
  gap: var(--space-md);
}

.faq--two-tone .faq__item summary span:first-child {
  flex: 1;
}

.faq__icon {
  width: 32px;
  height: 32px;
  border: 2px solid var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--c-white);
}

.faq__icon::before {
  width: 12px;
  height: 2px;
}

.faq__icon::after {
  width: 2px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.faq__item[open] .faq__icon::after {
  transform: rotate(90deg);
}

.faq--two-tone .faq__item summary::after {
  display: none;
}

.faq--two-tone .faq__answer {
  padding: 0 var(--space-lg) var(--space-lg);
  background: var(--c-turquoise);
}

/* Blog Cards - Circular thumbnails */
.blog-grid--circular {
  display: grid;
  gap: var(--space-lg);
}

@media (max-width: 599px) {
  .blog-grid--circular {
    justify-items: center;
  }
}

@media (min-width: 600px) {
  .blog-grid--circular {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .blog-grid--circular {
    grid-template-columns: repeat(4, 1fr);
  }
}

.blog-card--circular {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  text-decoration: none;
  color: inherit;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-md);
  background: transparent;
  box-shadow: none;
  transition: transform var(--transition-base);
  position: relative;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

.blog-card--circular:active,
.blog-card--circular:focus,
.blog-card--circular:focus-visible {
  background: var(--c-white);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 599px) {
  .blog-card--circular {
    align-items: center;
    text-align: center;
    background: var(--c-white);
    box-shadow: var(--shadow-sm);
  }
}

@media (hover: hover) {
  .blog-card--circular:hover {
    box-shadow: var(--shadow-sm);
    transform: none;
  }
}

.blog-card__thumb {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-md);
  flex-shrink: 0;
}

.blog-card__thumb-inner {
  width: 100%;
  height: 100%;
}

.blog-card--circular .blog-card__body {
  padding: 0;
}

.blog-card--circular .blog-card__title {
  font-size: var(--fs-lg);
  color: var(--c-blue-dark);
  margin-bottom: var(--space-sm);
}

.blog-card--circular .blog-card__excerpt {
  font-size: var(--fs-sm);
  color: rgb(0, 128, 179);
}

.blog-card__arrow {
  position: relative;
  width: 44px;
  height: 44px;
  margin-top: var(--space-md);
  margin-left: 6px;
  border: 2px solid var(--c-turquoise);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  background: transparent;
  z-index: 1;
}

.blog-card__arrow::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 26px;
  height: 26px;
  border: 2px solid var(--c-blue-dark);
  border-radius: 50%;
  background: transparent;
  z-index: -1;
  transform: translateY(-50%);
}

.blog-card__arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--c-blue-dark);
  border-bottom: 2px solid var(--c-blue-dark);
  transform: rotate(-45deg);
  margin-left: -2px;
}

.blog-card--circular .blog-card__date {
  color: var(--c-turquoise);
}

/* Where to Buy - Clear separation */
.where-buy {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.where-buy__section {
  background: var(--c-white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.where-buy__section--compare {
  background: var(--c-gray-light);
}

.where-buy__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
}

.where-buy__logos a {
  display: block;
  padding: var(--space-md);
  background: var(--c-white);
  border-radius: var(--radius-sm);
  transition: box-shadow var(--transition-fast);
}

.where-buy__logos a:hover {
  box-shadow: var(--shadow-md);
}

.where-buy__logos img {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.where-buy__disclaimer {
  font-size: var(--fs-sm);
  color: var(--c-gray);
  text-align: center;
  margin-top: var(--space-xl);
  padding: var(--space-md);
  background: var(--c-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--c-turquoise);
}

/* Contact Section - Map + branded strip */
.contact-section {
  background: var(--c-gray-light);
}

.contact__map-wrapper {
  width: 100%;
}

.contact__map {
  width: 100%;
  min-height: 300px;
  background: var(--c-gray);
}

.contact__map iframe {
  width: 100%;
  height: 400px;
  display: block;
}

.contact__strip {
  background: var(--c-blue-dark);
  color: var(--c-white);
  padding: var(--space-xl) 0;
}

.contact__strip-inner {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .contact__strip-inner {
    grid-template-columns: 1fr auto;
  }
}

.contact__strip h2 {
  color: var(--c-white);
  margin-bottom: var(--space-lg);
}

.contact__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.contact__block p {
  margin-bottom: var(--space-sm);
}

.contact__block a {
  color: var(--c-turquoise);
}

.contact__block a:hover {
  text-decoration: underline;
}

.contact__logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
}

.contact__logos img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

/* Social icons styling */
.social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social__icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.social__icon--ig img {
  width: 40px;
  height: 30px;
}

/* ==========================================================================
   17. Products Section V2 - Two-zone layout
   ========================================================================== */

.products-section-v2 {
  padding: 0;
}

/* Zone A: White title area */
.products-zone-a {
  background: var(--c-white);
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.products-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: calc(var(--space-xl) * 3);
}

.products-title h2 {
  font-size: 350%;
  margin-bottom: 50px;
}

@media (max-width: 600px) {
  .products-title {
    padding-bottom: 0;
  }

  .products-title h2 {
    font-size: 220%;
    margin-bottom: var(--space-lg);
  }
}

@media (max-width: 900px) {
  .products-title {
    padding-bottom: 0;
  }
}

.products-intro {
  font-weight: 300;
  font-size: var(--fs-base);
  color: var(--c-turquoise-dark);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Zone B: Dark blue banner */
.products-zone-b {
  background: var(--c-blue-dark);
  padding: 180px 0 var(--space-3xl);
  position: relative;
}

@media (max-width: 899px) {
  .products-zone-b {
    padding: var(--space-3xl) 0;
  }
}

/* Products columns grid */
.products-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .products-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

/* Individual product column */
.product-column {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-column__link {
  color: inherit;
  text-decoration: none;
}

.product-column__link .btn {
  pointer-events: none;
}

@media (max-width: 899px) {
  .product-column + .product-column {
    position: relative;
    padding-top: var(--space-xl);
    margin-top: var(--space-xl);
  }

  .product-column + .product-column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
  }
}

/* Packshot overlapping the banner top */
.product-column__packshot {
  position: relative;
  margin-top: -305px;
  margin-bottom: var(--space-lg);
  z-index: 1;
}

@media (max-width: 899px) {
  .product-column__packshot {
    margin-top: 0;
  }
}

.product-column__packshot img {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

@media (min-width: 900px) {
  .product-column__packshot img {
    max-width: 300px;
  }
}

/* Product column content */
.product-column__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--c-white);
  flex: 1;
}

/* Brand label: HEMORRELAX */
.product-column__brand {
  font-size: var(--fs-lg);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
  opacity: 0.9;
}

/* Product type: rektálny krém */
.product-column__type {
  font-size: var(--fs-2xl);
  font-weight: 500;
  color: var(--c-white);
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}

/* Size: 30 ml */
.product-column__size {
  font-size: var(--fs-lg);
  font-weight: 300;
  margin-bottom: var(--space-sm);
}

/* Classification: MDR / Kozmetický */
.product-column__class {
  font-size: var(--fs-md);
  color: var(--c-turquoise);
  font-weight: 300;
  opacity: 1;
  margin-bottom: var(--space-md);
}

/* Description paragraph */
.product-column__desc {
  font-size: var(--fs-lg);
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 280px;
  margin-bottom: var(--space-2xl);
  flex: 1;
}

/* CTA button */
.product-column__cta {
  margin-top: auto;
  position: relative;
  display: inline-flex;
  justify-content: center;
}

/* Circles anchored to the BUTTON's left edge (wrapper width === button width
   thanks to inline-flex), so they stay correctly placed regardless of the
   button label length / language. */
.product-column__cta::before,
.product-column__cta::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border: 2px solid var(--c-turquoise-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.product-column__cta::before {
  width: 70px;
  height: 70px;
  transform: translate(-30%, -50%);
}

.product-column__cta::after {
  width: 37px;
  height: 37px;
  top: 0;
  transform: translate(calc(-30% - 6px), -50%);
}

.product-column__cta .btn--primary {
  position: relative;
  z-index: 1;
}

.product-column__cta .btn--primary::before,
.product-column__cta .btn--primary::after {
  display: none;
}

/* Blog post: recommended products on light background */
.recommended-products-section .products-columns--recommended {
  margin-top: var(--space-xl);
}

@media (min-width: 900px) {
  .recommended-products-section .products-columns--recommended > .product-column:only-child {
    grid-column: 2;
  }
}

.recommended-products-section .product-column__packshot {
  margin-top: 0;
}

.recommended-products-section .product-column__content {
  color: var(--c-blue-dark);
}

.recommended-products-section .product-column__link {
  color: var(--c-blue-dark) !important;
}

.recommended-products-section .product-column__brand,
.recommended-products-section .product-column__type {
  color: var(--c-blue-dark) !important;
}

.recommended-products-section .product-column__content > :not(.product-column__cta) {
  color: var(--c-blue-dark) !important;
  opacity: 1;
}

/* Column separators on desktop */
@media (min-width: 900px) {
  .product-column:not(:last-child)::after {
    content: "";
    position: absolute;
    right: calc(-1 * var(--space-lg) / 2);
    top: 0;
    bottom: var(--space-xl);
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
  }
}

/* ==========================================================================
   18. FAQ Section V2 - Two-zone layout
   ========================================================================== */

.faq-v2 {
  padding: 0;
}

/* Zone A: White title area */
.faq-zone-a {
  background: var(--c-white);
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.faq-title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.faq-title h2 {
  font-size: 350%;
  margin-bottom: 100px;
}

@media (max-width: 600px) {
  .faq-title h2 {
    font-size: 220%;
    margin-bottom: 50px;
  }
}

.faq-intro {
  font-weight: 300;
  font-size: var(--fs-base);
  color: var(--c-turquoise-dark);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 0px;
}

/* Zone B: Medium blue panel */
.faq-zone-b {
  background: #0080B3;
  padding: var(--space-2xl) 0 var(--space-3xl);
}

@media (min-width: 900px) {
  .faq-zone-b {
    margin-top: 20px;
    margin-bottom: 40px;
  }
}

/* FAQ grid - 2 columns on desktop */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* FAQ item - rectangular with white border */
.faq-item {
  border: 1px solid var(--c-white);
  border-radius: 0;
  overflow: visible;
  transition: background var(--transition-base);
  position: relative;
}

/* Question row */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  padding-right: var(--space-xl);
  cursor: pointer;
  list-style: none;
  color: var(--c-white);
  gap: var(--space-md);
  position: relative;
}

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

.faq-question__text {
  font-size: var(--fs-md);
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
}

/* Chevron icon in circle - positioned on right edge */
.faq-chevron {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border: 2px solid var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  background: #0080B3;
  transition: background var(--transition-base);
}

.faq-item[open] .faq-chevron {
  background: #0080B3; /*var(--c-turquoise);*/
}

.faq-chevron::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--c-white);
  border-bottom: 2px solid var(--c-white);
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform var(--transition-base);
}

/* Open state - chevron points up */
.faq-item[open] .faq-chevron::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

/* Open state - turquoise background */
.faq-item[open] {
  background: var(--c-turquoise);
}

.faq-item[open] .faq-question {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Answer area */
.faq-answer {
  padding: var(--space-lg);
  color: var(--c-white);
  background: #0080B3;
}

.faq-answer p {
  font-size: var(--fs-md);
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.95;
  margin: 0;
}

.faq-answer ul {
  margin: var(--space-sm) 0 0;
  padding-left: 0;
  list-style-position: inside;
}

.faq-answer li {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.95;
}

.faq-answer li + li {
  margin-top: var(--space-sm);
}

/* Focus state for accessibility */
.faq-question:focus-visible {
  outline: 2px solid var(--c-white);
  outline-offset: -2px;
}

/* ==========================================================================
   19. Blog Section V2 - Clean layout without cards
   ========================================================================== */

.blog-section-v2 {
  background: var(--c-white);
  position: relative;
  overflow: hidden;
}

/* MDR Watermark - top right, low opacity */
.blog-watermark {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 180px;
  height: auto;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 900px) {
  .blog-watermark {
    width: 250px;
  }
}

/* Blog title area */
.blog-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  position: relative;
  z-index: 1;
}

.blog-title h1,
.blog-title h2 {
  font-size: 350%;
  margin-bottom: 100px;
}

@media (max-width: 600px) {
  .blog-title h1,
  .blog-title h2 {
    font-size: 220%;
    margin-bottom: var(--space-lg);
    margin-top:30px;
  }
}

@media (max-width: 900px) {
  .blog-title h1,
  .blog-title h2 {
    margin-top:30px;
  }
}

.blog-intro {
  font-weight: 300;
  font-size: var(--fs-base);
  color: var(--c-turquoise-dark);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 50px;
}

/* Blog grid - 4 columns on desktop */
.blog-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

@media (min-width: 600px) {
  .blog-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .blog-grid-v2 {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
}

/* Blog teaser item */
.blog-teaser {
  text-align: center;
  height: 100%;
}

.blog-teaser__link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  height: 100%;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-md);
  background: var(--c-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

@media (hover: hover) {
  .blog-teaser__link:hover {
    box-shadow: var(--shadow-md);
  }
}

/* Circular photo thumbnail */
.blog-teaser__thumb {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--space-lg);
  flex-shrink: 0;
  align-self: center;
}

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

@media (min-width: 900px) {
  .blog-teaser__thumb {
    width: 160px;
    height: 160px;
  }
}

/* Blog teaser title */
.blog-teaser__title {
  text-align: left;
  font-size: var(--fs-xl);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-blue-dark);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

@media (max-width: 600px) {
  .blog-teaser__title {
    text-align: center;
  }
}

/* Blog teaser date */
.blog-teaser__date {
  text-align: left;
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--c-turquoise-dark);
  margin-bottom: var(--space-sm);
}

/* Blog teaser excerpt */
.blog-teaser__excerpt {
  font-size: var(--fs-md);
  font-weight: 300;
  color: #0080B3;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  text-align: left;
}

@media (max-width: 600px) {
  .blog-teaser__date,
  .blog-teaser__excerpt {
    text-align: center;
  }
}

/* Circular arrow CTA */
.blog-teaser__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 80px;
  height: 80px;
  margin-top: auto;
  align-self: center;
}

/* Two overlapping outlined circles */
.blog-teaser__cta-circles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.blog-teaser__cta-circles::before,
.blog-teaser__cta-circles::after {
  content: "";
  position: absolute;
  border: 2px solid var(--c-turquoise);
  border-radius: 50%;
}

/* Larger circle */
.blog-teaser__cta-circles::before {
  width: 72px;
  height: 72px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Smaller circle offset */
.blog-teaser__cta-circles::after {
  width: 46px;
  height: 46px;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  opacity: 0.6;
  border: 2px solid var(--c-blue-dark);
}

/* Arrow icon */
.blog-teaser__cta-arrow {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  border-right: 3px solid var(--c-blue-dark);
  border-bottom: 3px solid var(--c-blue-dark);
  transform: rotate(-45deg);
  margin-left: -3px;
}

/* Hover effect */
.blog-teaser__link:hover .blog-teaser__title {
  color: var(--c-turquoise-dark);
}

.blog-teaser__link:hover .blog-teaser__cta-circles::before,
.blog-teaser__link:hover .blog-teaser__cta-circles::after {
  border-color: var(--c-blue-dark);
}

/* Bottom CTA */
.blog-cta {
  margin-top: var(--space-2xl);
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Inline wrapper around the button so the circles can be anchored to the
   button's actual left edge, independent of the label length / language. */
.blog-cta__wrap {
  position: relative;
  display: inline-flex;
  justify-content: center;
}

.blog-cta__wrap::before,
.blog-cta__wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border: 2px solid var(--c-turquoise-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.blog-cta__wrap::before {
  width: 70px;
  height: 70px;
  transform: translate(-30%, -50%);
}

.blog-cta__wrap::after {
  width: 37px;
  height: 37px;
  top: 0;
  transform: translate(calc(-30% - 6px), -50%);
}

.blog-cta__wrap .btn--primary {
  position: relative;
  z-index: 1;
}

.blog-cta__wrap .btn--primary::before,
.blog-cta__wrap .btn--primary::after {
  display: none;
}

.blog-cta .btn--primary {
  position: relative;
  overflow: visible;
  z-index: 1;
}

/* Remove default button circles so only the wrapper circles show */
.blog-cta .btn--primary::before,
.blog-cta .btn--primary::after {
  display: none;
}

/* ==========================================================================
   20. Where to Buy Section V2 - Clean flat layout
   ========================================================================== */

.where-buy-v2 {
  background: var(--c-white);
  padding: var(--space-3xl) 0;
}

/* Title area */
.where-buy-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

.where-buy-title h2 {
  font-size: 350%;
  margin-bottom: 100px;
}

@media (max-width: 600px) {
  .where-buy-title h2 {
    font-size: 220%;
    margin-bottom: var(--space-lg);
  }
}

.section-title .where-buy__intro {
  color: var(--c-blue-dark);
  font-size: var(--fs-md);
  font-weight: 300;
}

.where-buy-intro {
  font-weight: 300;
  font-size: var(--fs-base);
  color: var(--c-turquoise-dark);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Partner logos grid */
.where-buy-partners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  align-items: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  padding: 0 12%;
}

.where-buy-partners .where-buy-logo {
  width: 100%;
  max-width: 220px;
}

@media (max-width: 800px) {
  .where-buy-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 5%;
    gap: var(--space-lg);
  }

  .where-buy-partners .where-buy-logo {
    max-width: 200px;
  }
}

.where-buy-partners__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  justify-items: center;
  gap: var(--space-xl);
  width: 100%;
}

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

.where-buy-partners__row--1 {
  grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 800px) {
  .where-buy-partners__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Individual logo link */
.where-buy-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  transition: opacity var(--transition-fast);
}

.where-buy-logo:hover {
  opacity: 0.7;
}

.where-buy-logo:focus-visible {
  outline: 2px solid var(--c-turquoise);
  outline-offset: 4px;
}

.where-buy-logo img {
  max-width: 150px;
  height: auto;
  filter: none;
  opacity: 1.0;
}

.where-buy-logo:hover img {
  filter: none;
  opacity: 1;
}

.where-buy-logo--featured img {
  filter: none;
  opacity: 1.0;
  max-width: 200px;
}

.where-buy-logo--featured:hover img {
  filter: none;
  opacity: 0.7;
}

/* Price comparison section */
.where-buy-compare {
  text-align: center;
}

.where-buy-compare__heading {
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--c-blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Featured logo (larger) */
.where-buy-logo--featured img {
  max-width: 200px;
}

@media (max-width: 900px) {
  .where-buy-logo img {
    max-width: 110px;
  }

  .where-buy-logo--featured img {
    max-width: 140px;
  }
}

/* Disclaimer - small light blue text */
.where-buy-disclaimer {
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--c-turquoise);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.where-buy-disclaimer strong {
  font-weight: 700;
}

/* ==========================================================================
   21. Contact Section V2 - Three-zone layout
   ========================================================================== */

.contact-v2 {
  padding: 0;
}

/* Zone A: White title area */
.contact-title-area {
  background: var(--c-white);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.contact-title-area h2 {
  font-size: 350%;
  margin: 0 0 100px;
}

@media (max-width: 600px) {
  .contact-title-area h2 {
    font-size: 220%;
    margin-bottom: var(--space-lg);
  }
}

/* Zone B: Map area - banner-like, square corners, 80% width */
.contact-map {
  width: 80%;
  margin: 0 auto;
  line-height: 0;
  position: relative;
  z-index: 3;
}

.contact-map iframe {
  width: 100%;
  height: 280px;
  display: block;
  border: 0;
  /* Keep embedded map fully static for visitors. */
  pointer-events: none;
}

@media (min-width: 900px) {
  .contact-map iframe {
    height: 350px;
  }
}

/* Zone C: Dark blue contact strip - overlaps under the map */
.contact-strip-v2 {
  background: rgba(0, 128, 179,1.0);
  padding: var(--space-2xl) 0;
  padding-top: calc(var(--space-2xl) + 60px);
  color: var(--c-white);
  position: relative;
  z-index: 2;
  margin-top: -50px;
}

.footer__gap{
  height: 0px;
  background-color: var(--c-white);
}
@media (min-width: 1000px) {
  .contact-strip-v2 {
    margin-top: -100px;
    padding-top: calc(var(--space-2xl) + 120px);
  }
}

.contact-strip-v2--product {
  margin-top: 20px;
  padding-top: var(--space-2xl);
}

.contact-strip-v2--product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--c-white);
}

@media (min-width: 1000px) {
  .contact-strip-v2--product {
    margin-top: 20px;
    padding-top: var(--space-2xl);
  }
}

.contact-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  text-align: center;
}

@media (min-width: 1000px) {
  .contact-strip-inner {
    grid-template-columns: auto 1fr auto;
    text-align: left;
    align-items: start;
    gap: var(--space-2xl);
  }
}

/* Left column: Swiss Quality logo */
.contact-strip__left {
  display: flex;
  justify-content: center;
}

@media (min-width: 1000px) {
  .contact-strip__left {
    justify-content: flex-start;
  }
}

.contact-logo--swiss {
  width: 300px;
  height: auto;
  /* Keep original SVG colors - no filter */
}

/* Middle column: Research/recipe text */
.contact-strip__middle {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-strip__lead {
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--c-turquoise);
  letter-spacing: 0.05em;
  opacity: 0.8;
  margin-bottom: var(--space-sm);
}

.contact-strip__company {
  font-size: var(--fs-md);
  font-weight: 300;
  margin: 0;
}

.contact-strip__address {
  font-size: var(--fs-md);
  font-weight: 300;
  margin-bottom: 20px;
}

.contact-strip__links {
  font-size: var(--fs-md);
  font-weight: 300;
  margin: 0;
}

.contact-strip__links a {
  color: var(--c-white);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.contact-strip__links--stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-strip__links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.contact-strip__dot {
  margin: 0 var(--space-sm);
  opacity: 0.5;
}

/* Right column: Logos + Kontakt address */
.contact-strip__right {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

@media (min-width: 1000px) {
  .contact-strip__right {
    padding-left: var(--space-xl);
    text-align: left;
  }
}

.contact-strip__logos {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .contact-strip__logos {
    padding-left: 4px;
    padding-right: 4px;
  }

  .contact-logo--herb {
    margin-left: 2px;
  }
}

@media (max-width: 450px) {
  .contact-strip__logos {
    gap: var(--space-sm);
    flex-wrap: wrap;
    max-width: 100%;
  }

  .contact-logo {
    height: 70px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .contact-logo--fytofontana {
    height: 110px;
    margin-bottom: 0;
    transform: none;
  }

  .contact-logo--herb {
    height: 90px;
  }
}

@media (min-width: 1000px) {
  .contact-strip__logos {
    justify-content: flex-start;
  }
}

.contact-logo {
  height: 125px;
  width: auto;
  opacity: 1.0;
  margin-bottom: -20px;
  margin-top: -40px
}

.contact-logo--fytofontana {
  height: 200px;
  width: auto;
  opacity: 1.0;
  margin-bottom: -100px;
  margin-top: 0px;
  transform: translateY(-65px);
}

.contact-logo--herb {
  height: 150px;
}

.contact-logo--swiss {
  width: auto;
  height: auto;
  max-height: 100px;
}

.contact-strip__label {
  font-size: var(--fs-md);
  color: var(--c-turquoise);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

/* ── COOKIE CONSENT BANNER ── */

/* Outer popup container — fixed to the bottom edge of the viewport. */
#sliding-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-overlay);
}

/* Banner card: white bg, turquoise top accent, upward shadow. */
.eu-cookie-compliance-banner {
  background: var(--c-white);
  border-top: 3px solid var(--c-turquoise);
  box-shadow: 0 -4px 24px rgba(13, 68, 149, 0.12);
  padding: var(--space-md) var(--gutter);
}

/* Inner row: text on the left, buttons on the right, centred, max-width capped. */
.cookie-banner__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  max-width: var(--container);
  margin: 0 auto;
}

/* Consent text takes all remaining space. */
.cookie-banner__text {
  flex: 1;
  font-size: var(--fs-sm);
  color: var(--c-gray-dark);
  line-height: 1.5;
  margin: 0;
}

/* Privacy policy inline link. */
.cookie-banner__policy-link {
  color: var(--c-turquoise-dark);
  text-decoration: underline;
  margin-left: var(--space-xs);
}

.cookie-banner__policy-link:hover {
  color: var(--c-blue-dark);
}

/* Button group. */
.cookie-banner__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ── Accept button — mirrors .btn--primary ── */
.eu-cookie-compliance-agree-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-base);
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-base);
  background: var(--c-turquoise);
  color: var(--c-white);
  text-decoration: none;
}

.eu-cookie-compliance-agree-button:hover {
  background: var(--c-turquoise-dark);
}

.eu-cookie-compliance-agree-button:focus-visible {
  outline: 2px solid var(--c-turquoise);
  outline-offset: 2px;
}

/* ── Decline button — mirrors .btn--secondary ── */
.eu-cookie-compliance-decline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--c-turquoise);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-base);
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-base);
  background: var(--c-white);
  color: var(--c-blue-dark);
  text-decoration: none;
}

.eu-cookie-compliance-decline-button:hover {
  background: var(--c-turquoise);
  color: var(--c-white);
}

.eu-cookie-compliance-decline-button:focus-visible {
  outline: 2px solid var(--c-turquoise);
  outline-offset: 2px;
}

/* ── Mobile: stack vertically, full-width buttons (< 600 px) ── */
@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .eu-cookie-compliance-agree-button,
  .eu-cookie-compliance-decline-button {
    width: 100%;
    justify-content: center;
  }
}
