/*
 * STADA corporate website style sheet
 *
 * This file defines the colour palette and layout rules for the
 * responsive “О компании” page. The design is inspired by the STADA
 * corporate style guide, using the official blue, red and grey
 * colours as well as generous white space. Animations are kept
 * subtle and unobtrusive. Mobile breakpoints ensure comfortable
 * viewing on smartphones and tablets.
 */

:root {
  --stada-blue: #005db9;
  --stada-red: #d50058;
  --stada-grey: #828895;
  --bg-light: #fafafa;
  --text-dark: #2a2a2a;
  --font-family: 'Noto Sans', sans-serif;
}

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

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
}

body::before,
body::after {
  position: fixed;
  opacity: 1;
  visibility: visible;
}

body::before {
  content: '';
  inset: 0;
  z-index: 9998;
  background: #ffffff;
  pointer-events: auto;
}

body::after {
  content: '';
  left: 50%;
  top: 50%;
  z-index: 9999;
  width: clamp(150px, 24vw, 240px);
  aspect-ratio: 311 / 97;
  background: url('../assets/logos/stada_logo.png') center / contain no-repeat;
  filter: drop-shadow(0 14px 24px rgba(0, 93, 185, 0.16));
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
  animation: stadaLogoBreathing 1.6s ease-in-out infinite;
}

body:not(.stada-page-loaded) {
  overflow: hidden;
}

body.stada-page-loaded::before,
body.stada-page-loaded::after {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes stadaLogoBreathing {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.88;
    filter: drop-shadow(0 14px 24px rgba(0, 93, 185, 0.14));
  }

  50% {
    transform: translate(-50%, -50%) scale(1.075);
    opacity: 1;
    filter: drop-shadow(0 20px 34px rgba(0, 93, 185, 0.24));
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    animation: none;
  }
}

/* Navigation bar */
/*
 * Navigation bar
 *
 * The header has been redesigned to feel more substantial and to remain
 * consistent in height as visitors scroll the page.  The default
 * implementation shrank the bar and logo on scroll, which made the
 * interface feel cramped.  We remove that size change here and instead
 * enlarge the bar and logo to improve legibility.  A subtle fade‑in
 * animation runs once on page load to give the navigation a polished
 * appearance.
 */
nav {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Keep the background and shadow transitions but remove padding
     transitions since the height no longer changes on scroll. */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  /* Slide the navigation bar in from slightly above the viewport on load */
  opacity: 0;
  transform: translateY(-20px);
  animation: navFadeIn 0.6s ease-out forwards;
}

/* Keyframes for nav fade‑in animation */
@keyframes navFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
 * The container for the navigation items has been given more generous
 * padding to make the header feel taller.  We removed the padding
 * transition because the height will no longer shrink on scroll.
 */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

/*
 * Increase the size of the logo to better balance the enlarged
 * navigation bar.  The width remains auto so the aspect ratio is
 * preserved.
 */
.logo img {
  height: 50px;
  width: auto;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

/*
 * Navigation links use a slightly larger font to improve readability.
 * A custom underline animation replaces the static bottom border.  On
 * hover or when active the underline smoothly expands from left to
 * right.  The border property is disabled to avoid conflicting with
 * the animated underline.
 */
.menu li a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--stada-blue);
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: none;
}

/* Underline effect: start with zero width */
.menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--stada-red);
  transition: width 0.3s ease;
}

/* Expand underline on hover and when active */
.menu li a:hover::after,
.menu li a.active::after {
  width: 100%;
}

/* When hovering or active, change the text colour.  The underline
   animation is handled separately above. */
.menu li a:hover,
.menu li a.active {
  color: var(--stada-red);
}

/* Language toggle */
.lang-toggle {
  margin-left: 1rem;
}

.lang-toggle button {
  background-color: var(--stada-blue);
  color: #fff;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.lang-toggle button:hover {
  background-color: var(--stada-red);
}

/* Hamburger menu for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--stada-blue);
  transition: transform 0.3s, opacity 0.3s;
}

/*----------------------------------------
 * Navigation scroll behaviour
 *
 * When the user scrolls down the page the navigation bar gently
 * collapses and its background becomes more solid.  This effect
 * improves legibility against busy hero imagery and frees up
 * vertical space on smaller screens.  The logo is scaled down
 * proportionally.  An ‘active’ class is added to the current
 * navigation link when its corresponding section enters the viewport.
 */
/*
 * Override the behaviour of the navigation bar when the page is
 * scrolled.  Previously the nav shrank and the logo became smaller.
 * Now we maintain the same dimensions as the default state but
 * slightly increase the background opacity and box shadow to improve
 * contrast against the page content.  This keeps the bar feeling
 * substantial and consistent without taking away space.
 */
nav.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

nav.scrolled .nav-container {
  padding: 1rem 1.5rem;
}

nav.scrolled .logo img {
  height: 50px;
}

/* Active nav link highlighting
 *
 * Remove the bottom border from active links since the animated underline
 * handles the highlighting.  Only the text colour is changed here.
 */
.menu li a.active {
  color: var(--stada-red);
  border-bottom-color: transparent;
}

/* Hamburger animation into a cross when menu is open */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Back to top button styling */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--stada-red);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(213, 0, 88, 0.4);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1001;

  /* Increase the font size so the arrow is clearly visible on all
     devices. The default button inherits 1rem; bump it up to 1.5rem. */
  font-size: 1.5rem;
}

#backToTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(213, 0, 88, 0.5);
}

#backToTop.show {
  display: flex;
}

/* Counter numbers animation: style ensures numbers are clearly
   distinguished from their descriptions and align nicely in the facts grid. */
.career-fact .number {
  font-variant-numeric: tabular-nums;
}

/* Hero section */
.hero-section {
  position: relative;
  width: 100%;
  height: clamp(300px, 50vh, 500px);
  overflow: hidden;

  /* Initially hide the hero section to avoid any flash of centred
   * content while the page is loading.  It becomes visible once
   * JavaScript adds the `.loaded` class. */
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

/* Reveal the hero section once initialisation is complete */
.hero-section.loaded {
  opacity: 1;
}

.hero-section .swiper-container {
  width: 100%;
  height: 100%;
}

.hero-section .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

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

/*
 * Hero overlay positioning
 *
 * The hero headlines and call‑to‑action buttons should sit neatly within
 * the coloured ellipse on each slide.  To achieve this we anchor the
 * overlay to the left of the slide (rather than centring it) and only
 * translate vertically to centre it on the y‑axis.  A modest maximum
 * width prevents long lines of text spilling out of the ellipse on
 * ultra‑wide displays.
 */
.hero-overlay {
  position: absolute;
  /* Vertical anchor: align the overlay at 46% from the top of the
   * slide.  This ensures all slides share a common baseline and
   * the headlines align visually across the carousel. */
  top: 46%;
  /* Horizontal anchor: clamp between a small pixel offset and a
   * percentage of the viewport width to ensure there is always
   * comfortable breathing room on the left edge regardless of screen
   * size.  On very narrow screens this resolves to ~16px; on large
   * desktops it caps at ~96px. */
  left: clamp(16px, 6vw, 96px);
  /* Only translate vertically so the overlay is centred along its
   * own height, avoiding any unwanted horizontal shifting. */
  transform: translateY(-50%);
  text-align: left;
  color: inherit;
  padding: 0;
  background: none;
  border-radius: 0;
  /* Limit the width to prevent the text running out of the ellipse.
   * On very wide screens the overlay will occupy at most ~32% of the
   * viewport or 700px (whichever is smaller).  A conservative cap
   * like this ensures that even on the narrowest ellipse (slide 2 and 3)
   * the headline never spills into the photographic area. */
  max-width: min(32vw, 700px);
  /*
   * Initially hide the overlay until it is explicitly revealed via
   * JavaScript.  This prevents the headline from flashing in the
   * centre of the slide before our positioning CSS is applied.
   * When the `.visible` class is added the overlay will fade in.
   */
  /* Hide the overlay entirely until JavaScript adds the `.visible` class.
   * Using display:none eliminates any chance that the headline will be
   * temporarily centred before the positioning styles are applied. */
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-out;
}

/* When the overlay is marked as visible (via JS), display it and
 * trigger the fade‑in animation.  Visibility is toggled once the
 * language has been initialised to avoid a flash of unstyled content. */
.hero-overlay.visible {
  display: block;
  opacity: 1;
  visibility: visible;
  animation: fadeInOverlay 1s ease-out;
}

/* Hide the headline and button inside the overlay until the overlay is
 * visible.  Swiper duplicates slides when looping, which results in
 * extra hero overlays being present in the DOM.  Without this rule
 * the duplicate overlays briefly display the headline in the centre
 * of the screen before our script adds the `.visible` class. */
.hero-overlay h1,
.hero-overlay .hero-btn {
  visibility: hidden;
}

.hero-overlay.visible h1,
.hero-overlay.visible .hero-btn {
  visibility: visible;
}

/*
 * Hero overlay heading styling
 *
 * The original hero headline used a very large, heavy weight which felt
 * overpowering on top of the coloured ellipse.  To achieve a more
 * contemporary and elegant look we reduce the font size, lighten the
 * weight and add a touch of letter spacing.  The new clamp values
 * ensure the heading scales smoothly across viewport sizes without
 * dominating the slide on large desktops or becoming illegible on
 * mobile screens.  A subtle shadow improves contrast against the
 * underlying artwork without appearing too pronounced.
 */
.hero-overlay h1 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
  -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.1);
}

.hero-overlay p {
  font-size: 1.1rem;
  color: var(--stada-grey);
}

@keyframes fadeInOverlay {
  /*
   * Fade the hero overlay into view.  We animate only the
   * vertical translation so that the overlay never jumps horizontally
   * (which previously caused it to appear centred on first load).
   */
  from {
    opacity: 0;
    transform: translateY(-60%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

/* Swiper pagination customisation */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--stada-grey);
  opacity: 1;
  margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
  background: var(--stada-red);
}

/* About section */
.about-section {
  padding: 4rem 1rem;
  background-color: #fff;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2rem;
  color: var(--stada-blue);
  margin-bottom: 2rem;
  text-align: left;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-text {
  flex: 1 1 55%;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.about-stats {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.values-list {
  list-style: none;
  padding-left: 0;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.value-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--stada-red);
  margin-right: 0.6rem;
  flex-shrink: 0;
  margin-top: 0.35rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.stat {
  font-size: 1rem;
  font-weight: 600;
  color: var(--stada-blue);
  background-color: rgba(0, 93, 185, 0.05);
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--stada-red);
  border-radius: 4px;
}

/* Gallery section */
.gallery-section {
  padding: 4rem 1rem;
  background-color: var(--bg-light);
}

.gallery-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-section h2 {
  font-size: 2rem;
  color: var(--stada-blue);
  margin-bottom: 2rem;
  text-align: left;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

/* Products section */
.products-section {
  padding: 4rem 1rem;
  background-color: var(--bg-light);
}

.products-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.products-section h2 {
  font-size: 2rem;
  color: var(--stada-blue);
  margin-bottom: 2rem;
  text-align: left;
}

/* Grid layout for product cards */
.products-grid {
  display: grid;
  gap: 1.5rem;
  /* Create as many columns as will fit with minimum width of 240px */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Individual product card container (an anchor element) */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Style for product images */
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
  padding: 1rem;
  background-color: #ffffff;
}

/* Product name caption overlay */
.product-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.6rem 0.8rem;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 93, 185, 0) 0%, rgba(0, 93, 185, 0.8) 100%);
}

@media (max-width: 768px) {
  /* Slightly reduce padding and height on smaller screens */
  .product-card img {
    height: 180px;
    padding: 0.8rem;
  }
  .product-name {
    font-size: 0.9rem;
  }
}


/* CTA button in hero overlay */
/*
 * Call‑to‑action button styling
 *
 * Replace the chunky pill‑style button with a leaner, more modern design.
 * The button is now rendered as an inline flex container so that an
 * arrow icon can be appended via the ::after pseudo element.  The base
 * state features a transparent background with a coloured border and
 * text; on hover the button fills with the brand red and the text
 * colour inverts.  A gentle vertical lift and arrow slide provide
 * tactile feedback.  The smaller padding and font size keep the
 * button from overwhelming the hero typography.
 */
.hero-btn {
  /* Redefine the CTA button to be bolder and more inviting.  Use a solid
   * background and generous padding to improve clickability.  A large
   * rounded shape echoes the STADA branding. */
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #fff;
  background-color: var(--stada-red);
  border: none;
  border-radius: 40px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(213, 0, 88, 0.35);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Append an arrow to the CTA button */
.hero-btn::after {
  content: "→";
  font-size: 1.1rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.hero-btn:hover {
  background-color: #c4004e;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(213, 0, 88, 0.4);
}

.hero-btn:hover::after {
  transform: translateX(4px);
}

/* Position overrides for each slide's overlay to align with overlapping ellipses */
/*
 * Override positions for hero overlay cards on each slide.
 * These values place the overlay near the intersecting circles in the hero artwork.
 * For slide 1 (s1) the overlay sits left of centre; for slide 2 (s2) it sits right of centre; for slide 3 (s3) it sits lower centre.
 */
.hero-overlay.s1 {
  /* Use same positioning for slide 1 as base hero overlay */
  top: 46%;
  left: clamp(16px, 6vw, 96px);
  transform: translateY(-50%);
}
.hero-overlay.s2 {
  /* Use same positioning for slide 2 as base hero overlay */
  top: 46%;
  left: clamp(16px, 6vw, 96px);
  transform: translateY(-50%);
}
.hero-overlay.s3 {
  /* Use same positioning for slide 3 as base hero overlay */
  top: 46%;
  left: clamp(16px, 6vw, 96px);
  transform: translateY(-50%);
}

/* Centralize hero overlay on small screens */
@media (max-width: 768px) {
  /*
   * On small screens we recenter the overlay so that it remains
   * comfortably readable when the ellipses collapse into each other.
   * The 54% top anchor ensures the headlines sit a little lower on
   * phones, leaving room for the logo and navigation.
   */
  .hero-overlay {
    top: 54% !important;
    left: 50% !important;
    /* Only translate vertically to avoid horizontal centering glitch */
    transform: translateY(-50%) !important;
    max-width: 90%;
    text-align: center;
  }

  /*
   * Adjust hero image cropping on mobile.  Each slide contains a large
   * coloured ellipse on the left and photographic content on the
   * right.  When the viewport is narrow, `object-fit: cover` crops
   * evenly from both sides, which causes the human‑centred portion of
   * the image to disappear.  By shifting the object position towards
   * the right we ensure that the important content remains visible on
   * phones.
   */
  .hero-section .swiper-slide:nth-child(1) .hero-img,
  .hero-section .swiper-slide:nth-child(2) .hero-img,
  .hero-section .swiper-slide:nth-child(3) .hero-img {
    object-position: 70% center;
  }

  /* Slightly increase hero height on mobile to reveal more of the
     photographic area after shifting the crop. */
  .hero-section {
    height: clamp(360px, 65vh, 640px);
  }

  /* Reduce hero heading size further on small screens */
  .hero-overlay h1 {
    font-size: 1.4rem;
  }
}

/* Footer */
footer {
  background-color: var(--stada-blue);
  color: #fff;
  padding: 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-overlay h1 {
    /* Scale down the heading further on medium screens for better balance */
    font-size: 1.6rem;
  }
  .hero-overlay p {
    font-size: 1rem;
  }
}

/* -------------------------------------------------------------------
 * Custom additions for product carousel and language toggle
 *
 * The following rules introduce a horizontally scrolling carousel for
 * the products section and a redesigned language selector.  These
 * definitions appear near the end of the stylesheet to ensure they
 * override earlier rules where appropriate.
 */

/* Products carousel layout
 *
 * Replace the masonry grid with a continuous horizontal strip.  The
 * flex container prevents wrapping and hides the scrollbars.  Each
 * product card has a fixed width so that the scrolling speed remains
 * consistent regardless of viewport size.  On hover the card lifts
 * forward and scales slightly larger; the z‑index ensures the hovered
 * card appears above its neighbours.  A smoother transition on both
 * transform and box‑shadow gives the interaction a polished feel.
 */
.products-carousel {
  display: flex;
  gap: 1.5rem;
  overflow: hidden;
  width: 100%;
}

.products-carousel .product-card {
  /* Allow the carousel items to size themselves based on their image
   * dimensions.  Remove any fixed width so that the images can
   * determine the layout. */
  flex: 0 0 auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.products-carousel .product-card:hover {
  /* Do not apply any transforms or shadows to the anchor itself on hover.
   * Hover effects are handled on the image directly to avoid the
   * appearance of a rectangular container. */
  transform: none;
  box-shadow: none;
  z-index: auto;
}

/* Apply transitions to product images so they scale smoothly on hover */
.products-carousel .product-card img {
  position: relative;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Enlarge the product image and add a shadow on hover.  This effect
 * applies only to the image itself, ensuring that no rectangular
 * background becomes visible. */
.products-carousel .product-card img:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

/* Remove card backgrounds and borders in the carousel for a clean,
 * image‑only look */
.products-carousel .product-card {
  background: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

/* Hide product names in the carousel */
.products-carousel .product-name {
  display: none;
}

/* Images in the carousel should fill their container height without
 * padding or background colour.  Maintain consistent height across
 * products while allowing the width to adjust automatically based on
 * the image proportions. */
.products-carousel .product-card img {
  height: 220px;
  width: auto;
  padding: 0;
  background-color: transparent;
}

/* Language toggle redesign
 *
 * Replace the single colour pill with a dual‑segment toggle.  Each
 * segment acts as a button for its respective language.  The active
 * language is highlighted with the brand blue while the inactive
 * language remains transparent.  A border ties the two segments
 * together into a unified pill shape.  The sizing and typographic
 * treatment mirror the navigation links for consistency.
 */
.lang-toggle {
  --lang-active-x: 0%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  flex: 0 0 auto;
  width: 102px;
  min-height: 36px;
  margin-left: 1rem;
  padding: 4px;
  border: 1.5px solid rgba(0, 93, 185, 0.46);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  box-shadow: 0 8px 18px rgba(0, 93, 185, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.lang-toggle::before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 6px);
  border-radius: inherit;
  background: linear-gradient(135deg, #0069c7 0%, var(--stada-blue) 64%, #004f9f 100%);
  box-shadow: 0 6px 14px rgba(0, 93, 185, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transform: translateX(var(--lang-active-x));
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.24s ease;
}

.lang-toggle[data-active-lang="kz"] {
  --lang-active-x: calc(100% + 4px);
}

.lang-toggle .lang-option {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 28px;
  padding: 0 0.48rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #00549f;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  cursor: pointer;
  transition: color 0.22s ease, transform 0.22s ease;
}

.lang-toggle .lang-option:hover {
  transform: translateY(-1px);
}

.lang-toggle .lang-option.active {
  color: #ffffff;
}

.lang-toggle .lang-option:focus-visible {
  outline: 2px solid rgba(213, 0, 88, 0.36);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .lang-toggle::before,
  .lang-toggle .lang-option {
    transition: none;
  }
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y pinch-zoom;
  }
  body {
    position: relative;
  }
  header,
  section,
  footer,
  .nav-container,
  .hero-section,
  .hero-shell,
  .hero-content,
  .hero-actions,
  .hero-visual,
  .hero-carousel {
    max-width: 100%;
    min-width: 0;
  }
  .hero-content h1,
  .hero-lead,
  .hero-visual-caption,
  .menu li a {
    overflow-wrap: anywhere;
  }
  nav {
    overflow: visible;
  }
  .nav-container {
    position: relative;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }
  nav.scrolled .nav-container {
    padding: 0.75rem 1rem;
  }
  .logo img,
  nav.scrolled .logo img {
    height: 42px;
  }
  .logo {
    flex: 0 0 auto;
    order: 1;
  }
  .menu {
    order: 4;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    z-index: 2;
    width: auto;
    height: auto;
    max-height: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0 0.65rem;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    border: 1px solid rgba(0, 93, 185, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(0, 46, 100, 0.16);
    transform: translateY(-8px);
    transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, padding 0.22s ease;
  }
  .menu.open {
    max-height: 430px;
    padding: 0.65rem;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .menu li {
    width: 100%;
  }
  .menu li a {
    display: block;
    width: 100%;
    padding: 0.8rem 0.75rem;
    border-radius: 6px;
    font-size: 1rem;
    line-height: 1.3;
    overflow-wrap: break-word;
  }
  .menu li a::after {
    display: none;
  }
  .menu li a:hover,
  .menu li a.active {
    color: var(--stada-blue);
    background-color: rgba(0, 93, 185, 0.07);
  }
  .hamburger {
    order: 3;
    position: relative;
    z-index: 3;
    display: inline-flex;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 8px;
    transition: background-color 0.2s ease;
  }
  .hamburger:hover,
  .hamburger:focus-visible {
    background-color: rgba(0, 93, 185, 0.08);
  }
  .lang-toggle {
    order: 2;
    flex: 0 0 auto;
    width: 92px;
    min-height: 34px;
    margin-left: 0;
  }
  .lang-toggle .lang-option {
    min-height: 26px;
    padding: 0 0.42rem;
    font-size: 0.78rem;
  }
  .about-content {
    flex-direction: column;
  }
  .about-text, .about-stats {
    flex: 1 1 100%;
  }
  .hero-section {
    height: clamp(320px, 60vh, 600px);
  }
}

/* Product detail page styling */
.product-detail-section {
  padding: 4rem 1rem;
  background-color: var(--bg-light);
}

.product-detail-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.product-detail-container .product-image {
  flex: 1 1 40%;
  min-width: 280px;
  /* Constrain the image container so product illustrations don’t dominate the page on large screens */
  max-width: 450px;
}

.product-detail-container .product-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.product-detail-container .product-info {
  flex: 1 1 60%;
  min-width: 280px;
}

.product-detail-container .product-info h1 {
  font-size: 2rem;
  color: var(--stada-blue);
  margin-bottom: 1rem;
}

.product-detail-container .product-info p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.product-detail-container .back-link {
  display: inline-block;
  background-color: var(--stada-red);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.product-detail-container .back-link:hover {
  background-color: #c4004e;
}

/* --------------------------------------------------------------------
 * Career section
 *
 * This section introduces the career opportunities at STADA. It follows
 * the same typographic scale and colour palette as the rest of the
 * corporate site, with generous spacing and a light background. Metrics
 * are displayed in a responsive grid. The call‑to‑action button reuses
 * the `.hero-btn` class defined earlier for consistency.
 */
.career-section {
  /* Remove horizontal padding so the hero image spans the full viewport width.
     The rest of the content will be padded via the nested .container. */
  padding: 0;
  background-color: #ffffff;
}

.career-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.career-section .container {
  max-width: 1200px;
  margin: 0 auto;
  /* Apply vertical and horizontal padding inside the container instead of on the
     section itself so that the hero image remains full width. */
  padding: 4rem 1rem;
}

.career-section h2 {
  font-size: 2rem;
  color: var(--stada-blue);
  margin: 2rem 0 1.5rem;
  text-align: left;
}

.career-section p {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.career-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.career-fact {
  flex: 1 1 180px;
  background-color: var(--bg-light);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.career-fact .number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--stada-red);
}

.career-fact .text {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* Hero Products Section */
/* Hero Products Section Styles */
.hero-products {
  /* Light blue background for contrast with the rest of the site */
  background-color: #f7faff;
  /* Increase padding to give the hero more breathing room */
  padding: 5rem 0;
}
.hero-products-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  /* Increase gap for better separation between text and image */
  gap: 3rem;
}
.hero-products-text {
  /* Allow text area to take up half of the available space and cap its width */
  flex: 1 1 50%;
  max-width: 600px;
}
.hero-products-text .hero-label {
  color: var(--stada-red);
  font-weight: 600;
  /* Slightly smaller label text and tighter letter spacing */
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hero-products-text .hero-heading {
  color: var(--stada-blue);
  /* Larger headline size for a stronger statement */
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  line-height: 1.2;
}
.hero-products-text .hero-description {
  color: var(--text-dark);
  /* Slightly larger body text for better readability */
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--stada-blue);
  color: #fff;
  /* More generous padding and pill-shaped button */
  padding: 1rem 2rem;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
}
.hero-btn:hover {
  background-color: #00467a;
}
.hero-btn::after {
  content: '→';
  /* Increase arrow spacing and size for emphasis */
  margin-left: 0.75rem;
  font-size: 1.25rem;
}
.hero-products-image {
  /* Image area shares the remaining space and centers its content */
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}
.hero-products-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero-products-container {
    /* Stack content vertically on small screens */
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-products-text,
  .hero-products-image {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .hero-products-text .hero-heading {
    font-size: 2rem;
  }
  .hero-products-text .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* Products catalog page */
.products-page {
  background: #f5f8fb;
}

.products-page main {
  overflow: hidden;
}

.catalog-hero {
  position: relative;
  isolation: isolate;
  padding: 5rem 1rem 4rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 246, 251, 0.98) 58%, rgba(251, 252, 255, 1) 100%),
    repeating-linear-gradient(90deg, rgba(0, 93, 185, 0.05) 0 1px, transparent 1px 88px);
}

.catalog-hero::before {
  content: '';
  position: absolute;
  inset: auto -10% -38% 42%;
  height: 74%;
  background: linear-gradient(135deg, rgba(0, 93, 185, 0.1), rgba(213, 0, 88, 0.08));
  clip-path: polygon(20% 0, 100% 20%, 82% 100%, 0 76%);
  z-index: -1;
}

.catalog-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--stada-blue), var(--stada-red));
}

.catalog-hero__inner,
.catalog-section__inner,
.catalog-partners__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.catalog-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  align-items: center;
  gap: 3rem;
}

.catalog-hero__content {
  max-width: 620px;
}

.catalog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--stada-red);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.catalog-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 3px;
  border-radius: 8px;
  background: var(--stada-red);
}

.catalog-hero h1 {
  margin: 0;
  color: #073b75;
  font-size: 3.65rem;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.catalog-hero__lead {
  max-width: 560px;
  margin-top: 1.35rem;
  color: #425167;
  font-size: 1.12rem;
  line-height: 1.75;
}

.catalog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.catalog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.catalog-button::after {
  content: '\2192';
  margin-left: 0.55rem;
  font-size: 1.05rem;
  transition: transform 0.22s ease;
}

.catalog-button:hover {
  transform: translateY(-2px);
}

.catalog-button:hover::after {
  transform: translateX(3px);
}

.catalog-button--primary {
  color: #ffffff;
  background: var(--stada-red);
  box-shadow: 0 14px 30px rgba(213, 0, 88, 0.24);
}

.catalog-button--primary:hover {
  background: #b8004c;
}

.catalog-button--secondary {
  color: var(--stada-blue);
  background: #ffffff;
  border: 1px solid rgba(0, 93, 185, 0.18);
  box-shadow: 0 12px 28px rgba(8, 46, 84, 0.08);
}

.catalog-button--secondary:hover {
  color: #ffffff;
  background: var(--stada-blue);
}

.catalog-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.catalog-metric {
  min-height: 104px;
  padding: 1rem;
  border: 1px solid rgba(0, 93, 185, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(8, 46, 84, 0.06);
}

.catalog-metric strong {
  display: block;
  color: var(--stada-blue);
  font-size: 1.85rem;
  line-height: 1;
}

.catalog-metric span {
  display: block;
  margin-top: 0.5rem;
  color: #526072;
  font-size: 0.86rem;
  line-height: 1.35;
}

.catalog-hero__visual {
  min-width: 0;
}

.catalog-hero__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  perspective: 1200px;
}

.catalog-hero__stage::before {
  content: '';
  position: absolute;
  left: 4%;
  right: 3%;
  bottom: 7%;
  height: 68%;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(229, 241, 249, 0.9));
  border: 1px solid rgba(0, 93, 185, 0.12);
  box-shadow: 0 34px 70px rgba(20, 61, 103, 0.14);
  transform: skewY(-4deg) rotate(-1deg);
}

.catalog-hero__podium {
  position: relative;
  z-index: 1;
  width: min(96%, 710px);
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(8, 46, 84, 0.16));
}

@media (prefers-reduced-motion: no-preference) {
  .catalog-hero__podium {
    animation: catalogDisplayFloat 8s ease-in-out infinite;
  }
}

@keyframes catalogDisplayFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.4deg);
  }
  50% {
    transform: translate3d(0, -8px, 0) rotate(0.35deg);
  }
}

.catalog-section {
  padding: 4.75rem 1rem 5.25rem;
  background: #ffffff;
}

.catalog-section__header {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.45fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.catalog-section__header .catalog-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.7rem;
}

.catalog-section h2,
.catalog-partners h2 {
  margin: 0;
  color: var(--stada-blue);
  font-size: 2.35rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.catalog-section__header p,
.catalog-partners__copy p {
  margin: 0;
  color: #536174;
  font-size: 1rem;
  line-height: 1.7;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.75rem 0 2rem;
}

.catalog-filter {
  min-height: 42px;
  padding: 0.64rem 0.95rem;
  border: 1px solid rgba(0, 93, 185, 0.18);
  border-radius: 8px;
  color: #25405f;
  background: #f7fafd;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.catalog-filter:hover {
  border-color: rgba(0, 93, 185, 0.38);
  transform: translateY(-1px);
}

.catalog-filter.is-active {
  color: #ffffff;
  background: var(--stada-blue);
  border-color: var(--stada-blue);
}

.catalog-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.catalog-card {
  position: relative;
  display: grid;
  grid-column: span 4;
  grid-template-rows: 236px 1fr;
  min-height: 500px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(15, 39, 66, 0.09);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 46, 84, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.catalog-card--wide {
  grid-column: span 8;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  grid-template-rows: 1fr;
}

.catalog-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--card-accent, var(--stada-blue));
}

.catalog-card--vitrum::before {
  display: none;
}

.catalog-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-accent, var(--stada-blue));
  border-color: color-mix(in srgb, var(--card-accent, var(--stada-blue)) 36%, #ffffff);
  box-shadow: 0 26px 54px rgba(8, 46, 84, 0.14);
}

.catalog-card:focus-visible,
.catalog-filter:focus-visible,
.catalog-button:focus-visible {
  outline: 3px solid rgba(213, 0, 88, 0.35);
  outline-offset: 3px;
}

.catalog-card[hidden] {
  display: none;
}

.catalog-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    linear-gradient(145deg, rgba(247, 250, 253, 0.95), rgba(255, 255, 255, 1)),
    linear-gradient(90deg, rgba(0, 93, 185, 0.06), rgba(213, 0, 88, 0.05));
}

.catalog-card__media::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 1.2rem;
  height: 18px;
  background: rgba(8, 46, 84, 0.11);
  border-radius: 50%;
  filter: blur(8px);
}

.catalog-card__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 205px;
  object-fit: contain;
  padding: 0;
  background: transparent;
  transition: transform 0.24s ease;
}

.catalog-card--wide .catalog-card__media img {
  max-height: 285px;
}

.catalog-card--enterogermina-forte .catalog-card__media img {
  max-height: 250px;
}

.catalog-card--cardiomagnil .catalog-card__media img {
  width: min(100%, 250px);
  max-height: 190px;
  border-radius: 7px;
  object-fit: contain;
}

.catalog-card--klopidogrel-teva .catalog-card__media {
  background:
    radial-gradient(circle at 76% 56%, rgba(142, 196, 18, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(207, 23, 48, 0.09), rgba(255, 255, 255, 0.92));
}

.catalog-card--klopidogrel-teva .catalog-card__media img {
  width: min(100%, 430px);
  max-height: 188px;
  object-fit: contain;
}

.catalog-card--meloksikam .catalog-card__media {
  background:
    radial-gradient(circle at 74% 58%, rgba(36, 121, 194, 0.18), transparent 31%),
    linear-gradient(135deg, rgba(23, 79, 150, 0.1), rgba(255, 255, 255, 0.92));
}

.catalog-card--meloksikam .catalog-card__media img {
  width: min(100%, 430px);
  max-height: 188px;
  object-fit: contain;
}

.catalog-card--kamistad-baby .catalog-card__media {
  background:
    radial-gradient(circle at 82% 54%, rgba(0, 91, 185, 0.16), transparent 30%),
    radial-gradient(circle at 16% 70%, rgba(255, 210, 63, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(213, 0, 88, 0.09), rgba(255, 255, 255, 0.92));
}

.catalog-card--kamistad-baby .catalog-card__media img {
  width: min(100%, 430px);
  max-height: 188px;
  object-fit: contain;
}

.catalog-card--psilo-balsam .catalog-card__media {
  background:
    radial-gradient(circle at 76% 58%, rgba(255, 186, 0, 0.18), transparent 28%),
    radial-gradient(circle at 84% 45%, rgba(40, 153, 88, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(0, 91, 185, 0.11), rgba(255, 255, 255, 0.94));
}

.catalog-card--psilo-balsam .catalog-card__media img {
  width: min(100%, 430px);
  max-height: 188px;
  object-fit: contain;
}

.catalog-card--lizobakt .catalog-card__media {
  background:
    radial-gradient(circle at 78% 58%, rgba(0, 82, 166, 0.16), transparent 31%),
    linear-gradient(135deg, rgba(242, 138, 0, 0.1), rgba(255, 255, 255, 0.92));
}

.catalog-card--lizobakt .catalog-card__media img {
  width: min(100%, 430px);
  max-height: 188px;
  object-fit: contain;
}

.catalog-card--faringosept .catalog-card__media {
  background:
    radial-gradient(circle at 76% 58%, rgba(5, 106, 45, 0.18), transparent 31%),
    linear-gradient(135deg, rgba(5, 106, 45, 0.08), rgba(255, 255, 255, 0.92));
}

.catalog-card--faringosept .catalog-card__media img {
  width: min(100%, 430px);
  max-height: 188px;
  object-fit: contain;
}

.catalog-card--noshpa .catalog-card__media img {
  width: min(100%, 315px);
  max-height: 205px;
  object-fit: contain;
}

.catalog-card--noshpa-forte .catalog-card__media img {
  width: min(100%, 330px);
  max-height: 205px;
  border-radius: 7px;
  object-fit: contain;
}

.catalog-card--gecsikon .catalog-card__media {
  background:
    radial-gradient(circle at 72% 62%, rgba(180, 201, 28, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(0, 94, 168, 0.08), rgba(255, 255, 255, 0.92));
}

.catalog-card--gecsikon .catalog-card__media img {
  width: min(100%, 430px);
  max-height: 188px;
  object-fit: contain;
}

.catalog-card--terginan .catalog-card__media {
  background:
    radial-gradient(circle at 76% 60%, rgba(31, 155, 226, 0.2), transparent 31%),
    linear-gradient(135deg, rgba(170, 174, 185, 0.16), rgba(255, 255, 255, 0.94));
}

.catalog-card--terginan .catalog-card__media img {
  width: min(100%, 430px);
  max-height: 188px;
  object-fit: contain;
}

.catalog-card--essentiale .catalog-card__media img {
  width: auto;
  max-height: 236px;
  object-fit: contain;
}

.catalog-card--nizoral .catalog-card__media img {
  width: min(100%, 252px);
  max-height: 156px;
  object-fit: contain;
}

.catalog-card--aqualor .catalog-card__media img {
  width: auto;
  max-height: 242px;
  object-fit: contain;
}

.catalog-card--aqualor-forte .catalog-card__media img {
  max-width: min(100%, 255px);
  max-height: 232px;
}

.catalog-card--aqualor-baby .catalog-card__media img {
  max-width: min(100%, 205px);
  max-height: 232px;
}

.catalog-card--aqualor-gorlo .catalog-card__media img {
  max-width: min(100%, 165px);
  max-height: 238px;
}

.catalog-card--aqualor-soft .catalog-card__media img {
  max-width: min(100%, 178px);
  max-height: 238px;
}

.catalog-card--aqualor-soft-mini .catalog-card__media img {
  max-width: min(100%, 172px);
  max-height: 238px;
}

.catalog-card:hover .catalog-card__media img {
  transform: scale(1.04);
}

.catalog-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.35rem;
}

.catalog-card__category {
  align-self: flex-start;
  margin-bottom: 0.85rem;
  padding: 0.32rem 0.58rem;
  border-radius: 6px;
  color: var(--card-accent, var(--stada-blue));
  background: rgba(0, 93, 185, 0.08);
  color: color-mix(in srgb, var(--card-accent, var(--stada-blue)) 82%, #111111);
  background: color-mix(in srgb, var(--card-accent, var(--stada-blue)) 12%, #ffffff);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.catalog-card h3 {
  margin: 0;
  color: #172841;
  font-size: 1.38rem;
  line-height: 1.2;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.catalog-card p {
  display: -webkit-box;
  margin: 0.85rem 0 1.25rem;
  color: #536174;
  font-size: 0.95rem;
  line-height: 1.62;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.catalog-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  color: var(--card-accent, var(--stada-blue));
  font-size: 0.94rem;
  font-weight: 700;
}

.catalog-card__cta::after {
  content: '\2192';
  font-size: 1rem;
  transition: transform 0.22s ease;
}

.catalog-card:hover .catalog-card__cta::after {
  transform: translateX(4px);
}

.catalog-partners {
  padding: 4.5rem 1rem;
  background:
    linear-gradient(180deg, #eff6fb 0%, #f8fbfd 100%),
    repeating-linear-gradient(0deg, rgba(0, 93, 185, 0.04) 0 1px, transparent 1px 84px);
}

.catalog-partners__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 2rem;
  align-items: center;
}

.catalog-partners__copy {
  max-width: 500px;
}

.catalog-partners__copy .catalog-eyebrow {
  margin-bottom: 0.9rem;
}

.catalog-partners__copy p {
  margin-top: 1rem;
}

.catalog-partners__logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.catalog-partner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 96px;
  padding: 1rem;
  border: 1px solid rgba(0, 93, 185, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 34px rgba(8, 46, 84, 0.07);
  color: inherit;
  text-decoration: none;
}

.catalog-partner:focus-visible {
  outline: 3px solid rgba(0, 93, 185, 0.28);
  outline-offset: 3px;
}

.catalog-partner img {
  width: 96px;
  height: 54px;
  object-fit: contain;
}

.catalog-partner span {
  color: #172841;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .catalog-hero__inner {
    grid-template-columns: 1fr;
  }

  .catalog-hero__content {
    max-width: 760px;
  }

  .catalog-hero__visual {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }

  .catalog-card,
  .catalog-card--wide {
    grid-column: span 6;
    grid-template-columns: 1fr;
    grid-template-rows: 236px 1fr;
  }
}

@media (max-width: 820px) {
  .catalog-hero {
    padding: 3.5rem 1rem 3rem;
  }

  .catalog-hero h1 {
    font-size: 2.5rem;
    line-height: 1.12;
  }

  .catalog-hero__lead {
    font-size: 1rem;
  }

  .catalog-metrics,
  .catalog-section__header,
  .catalog-partners__inner {
    grid-template-columns: 1fr;
  }

  .catalog-hero__stage {
    min-height: 430px;
  }

  .catalog-section h2,
  .catalog-partners h2 {
    font-size: 2rem;
  }

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

  .catalog-card,
  .catalog-card--wide {
    grid-column: auto;
  }

  .catalog-partners__logos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .catalog-hero h1 {
    font-size: 2rem;
  }

  .catalog-hero__actions,
  .catalog-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-button,
  .catalog-filter {
    width: 100%;
  }

  .catalog-metrics {
    gap: 0.55rem;
  }

  .catalog-metric {
    min-height: auto;
  }

  .catalog-hero__stage {
    min-height: 320px;
  }

  .catalog-hero__podium {
    width: 104%;
  }

  .catalog-card {
    min-height: 470px;
    grid-template-rows: 210px 1fr;
  }

  .catalog-card__body {
    padding: 1.1rem;
  }

  .catalog-partner {
    min-height: 82px;
  }
}

/*
 * Product page styles
 *
 * The product detail pages introduce individual medicines and supplements.
 * A hero section introduces the product with a headline and a supporting
 * description alongside a product image.  A benefits section uses a
 * simple list with checkmarks to highlight key advantages.  A
 * “where to buy” section showcases partner logos in a responsive
 * grid.  These styles are scoped globally because each product page
 * uses the same class names.
 */

/* Hero section container */
.product-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f9ff 0%, #eef4fb 100%);
  padding: 4rem 1rem;
}

/* Inner wrapper to allow spacing between text and image */
.product-hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
}

/* Text portion of the hero */
.product-hero-text {
  flex: 1 1 300px;
}

.product-hero-text h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--stada-blue);
  margin-bottom: 1rem;
}

.product-hero-text p {
  font-size: 1.2rem;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Image portion of the hero */
.product-hero-image {
  flex: 1 1 300px;
  text-align: center;
}

.product-hero-image img {
  max-width: 100%;
  height: auto;
}

/* Benefits section */
.product-benefits {
  background-color: #ffffff;
  padding: 3rem 1rem;
  text-align: center;
}

.product-benefits h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--stada-blue);
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.benefits-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.benefits-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--stada-red);
  font-size: 1.2rem;
  line-height: 1;
}

/* Where-to-buy section */
.product-where-to-buy {
  background-color: #f5f9ff;
  padding: 3rem 1rem;
  text-align: center;
}

.product-where-to-buy h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--stada-blue);
  margin-bottom: 1rem;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  flex: 1 1 150px;
  max-width: 200px;
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:focus-visible {
  outline: 3px solid rgba(0, 93, 185, 0.28);
  outline-offset: 3px;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.partner-card img {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.partner-card p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Responsive adjustments for product pages */
@media (max-width: 768px) {
  .product-hero {
    padding: 3rem 1rem;
  }
  .product-hero-text h1 {
    font-size: 2rem;
  }
  .product-hero-text p {
    font-size: 1rem;
  }
  .benefits-list li {
    font-size: 1rem;
  }
  .product-where-to-buy h2 {
    font-size: 1.6rem;
  }
}

/* Product detail pages */
.product-detail-page {
  --product-accent: #008a72;
  --product-accent-rgb: 0, 138, 114;
  --product-accent-strong: #006f5d;
  --product-accent-strong-rgb: 0, 111, 93;
  --product-accent-soft: #e9f7f4;
  --product-citrus: #f8c400;
  --product-citrus-soft: #fff6cf;
  --product-berry: #d50058;
  --product-blue-dark: #073b75;
  --product-ink: #172841;
  --product-muted: #536174;
  background: #ffffff;
}

.product-snup-page {
  --product-accent: #0097c8;
  --product-accent-rgb: 0, 151, 200;
  --product-accent-strong: #006a9c;
  --product-accent-strong-rgb: 0, 106, 156;
  --product-accent-soft: #e7f8fd;
  --product-citrus: #e4002b;
  --product-citrus-soft: #ffe8ee;
  --product-berry: #00a7a5;
}

.product-coldrex-page {
  --product-accent: #f8c400;
  --product-accent-rgb: 248, 196, 0;
  --product-accent-strong: #9a7600;
  --product-accent-strong-rgb: 154, 118, 0;
  --product-accent-soft: #fff5c4;
  --product-citrus: #00a651;
  --product-citrus-soft: #e7f8ea;
  --product-berry: #d50058;
  --product-blue-dark: #073b75;
  --product-ink: #172841;
  --product-muted: #536174;
}

.product-enterogermina-page {
  --product-accent: #0071ce;
  --product-accent-rgb: 0, 113, 206;
  --product-accent-strong: #00579c;
  --product-accent-strong-rgb: 0, 87, 156;
  --product-accent-soft: #eaf6ff;
  --product-citrus: #00a651;
  --product-citrus-soft: #e8f8ee;
  --product-berry: #00a7a5;
  --product-blue-dark: #073b75;
  --product-ink: #172841;
  --product-muted: #536174;
}

.product-enterogermina-capsules-page {
  --product-accent: #00a651;
  --product-accent-rgb: 0, 166, 81;
  --product-accent-strong: #007d3d;
  --product-accent-strong-rgb: 0, 125, 61;
  --product-accent-soft: #e8f8ee;
  --product-citrus: #0071ce;
  --product-citrus-soft: #eaf6ff;
  --product-berry: #00a7a5;
  --product-blue-dark: #073b75;
  --product-ink: #172841;
  --product-muted: #536174;
}

.product-sinulan-page {
  --product-accent: #4d8f38;
  --product-accent-rgb: 77, 143, 56;
  --product-accent-strong: #2f6f28;
  --product-accent-strong-rgb: 47, 111, 40;
  --product-accent-soft: #edf8e9;
  --product-citrus: #f05a28;
  --product-citrus-soft: #fff0e8;
  --product-berry: #00a7a5;
  --product-blue-dark: #073b75;
  --product-ink: #172841;
  --product-muted: #536174;
}

.product-edarbi-page {
  --product-accent: #9b145f;
  --product-accent-rgb: 155, 20, 95;
  --product-accent-strong: #701044;
  --product-accent-strong-rgb: 112, 16, 68;
  --product-accent-soft: #fbecf4;
  --product-citrus: #4d6a82;
  --product-citrus-soft: #eef3f7;
  --product-berry: #2b7fb7;
  --product-blue-dark: #26364b;
  --product-ink: #172841;
  --product-muted: #566276;
}

.product-cardiomagnil-page {
  --product-accent: #b41523;
  --product-accent-rgb: 180, 21, 35;
  --product-accent-strong: #8b1220;
  --product-accent-strong-rgb: 139, 18, 32;
  --product-accent-soft: #fff0f2;
  --product-citrus: #0c357d;
  --product-citrus-soft: #edf4ff;
  --product-berry: #f15b6b;
  --product-blue-dark: #062b6f;
  --product-ink: #172841;
  --product-muted: #566276;
}

.product-noshpa-page {
  --product-accent: #d71920;
  --product-accent-rgb: 215, 25, 32;
  --product-accent-strong: #a80f17;
  --product-accent-strong-rgb: 168, 15, 23;
  --product-accent-soft: #fff0ee;
  --product-citrus: #f6b91a;
  --product-citrus-soft: #fff6dc;
  --product-berry: #111111;
  --product-blue-dark: #142b4d;
  --product-ink: #172841;
  --product-muted: #566276;
}

.product-noshpa-forte-page {
  --product-accent: #d71920;
  --product-accent-rgb: 215, 25, 32;
  --product-accent-strong: #a80f17;
  --product-accent-strong-rgb: 168, 15, 23;
  --product-accent-soft: #fff0ee;
  --product-citrus: #f6b91a;
  --product-citrus-soft: #fff6dc;
  --product-berry: #111111;
  --product-blue-dark: #142b4d;
  --product-ink: #172841;
  --product-muted: #566276;
}

.product-essentiale-page {
  --product-accent: #f4a300;
  --product-accent-rgb: 244, 163, 0;
  --product-accent-strong: #c46b00;
  --product-accent-strong-rgb: 196, 107, 0;
  --product-accent-soft: #fff6df;
  --product-citrus: #ffd34d;
  --product-citrus-soft: #fff8dc;
  --product-berry: #2f7d4f;
  --product-blue-dark: #243549;
  --product-ink: #172841;
  --product-muted: #566276;
}

.product-aqualor-page {
  --product-accent: #00a6c8;
  --product-accent-rgb: 0, 166, 200;
  --product-accent-strong: #00799c;
  --product-accent-strong-rgb: 0, 121, 156;
  --product-accent-soft: #e7faff;
  --product-citrus: #f1dd24;
  --product-citrus-soft: #fffbd0;
  --product-berry: #0b607b;
  --product-blue-dark: #123d55;
  --product-ink: #172841;
  --product-muted: #566276;
}

.product-aqualor-baby-page {
  --product-citrus: #f36f9f;
  --product-citrus-soft: #ffeaf2;
  --product-berry: #d95082;
}

.product-aqualor-gorlo-page {
  --product-citrus: #e6005a;
  --product-citrus-soft: #ffe5f0;
  --product-berry: #c90050;
}

.product-aqualor-soft-page {
  --product-citrus: #7ee7e0;
  --product-citrus-soft: #e8fffd;
  --product-berry: #008ead;
}

.product-aqualor-soft-mini-page {
  --product-citrus: #7ee7e0;
  --product-citrus-soft: #e8fffd;
  --product-berry: #008ead;
}

.product-magne-page {
  --product-accent: #7b61c8;
  --product-accent-rgb: 123, 97, 200;
  --product-accent-strong: #4f3ea7;
  --product-accent-strong-rgb: 79, 62, 167;
  --product-accent-soft: #f0ebff;
  --product-citrus: #f3c43b;
  --product-citrus-soft: #fff6cf;
  --product-berry: #00a7a5;
  --product-blue-dark: #18296c;
  --product-ink: #172841;
  --product-muted: #566276;
}

.product-vitrum-fizzy-page {
  --product-accent: #00a878;
  --product-accent-rgb: 0, 168, 120;
  --product-accent-strong: #007a5a;
  --product-accent-strong-rgb: 0, 122, 90;
  --product-accent-soft: #e8f8f2;
  --product-citrus: #f2c94c;
  --product-citrus-soft: #fff8da;
  --product-berry: #d50058;
  --product-blue-dark: #123d55;
  --product-ink: #172841;
  --product-muted: #566276;
}

.product-vitrum-vitamin-c-page {
  --product-accent: #f28a00;
  --product-accent-rgb: 242, 138, 0;
  --product-accent-strong: #c76600;
  --product-accent-strong-rgb: 199, 102, 0;
  --product-accent-soft: #fff3df;
  --product-citrus: #ffcf33;
  --product-citrus-soft: #fff9dc;
  --product-berry: #00a878;
}

.product-vitrum-syrop-page {
  --product-accent: #2fb56f;
  --product-accent-rgb: 47, 181, 111;
  --product-accent-strong: #16864c;
  --product-accent-strong-rgb: 22, 134, 76;
  --product-accent-soft: #e8f8ee;
  --product-citrus: #f4b83f;
  --product-citrus-soft: #fff5d7;
  --product-berry: #00a7a5;
  --product-blue-dark: #123d55;
  --product-ink: #172841;
  --product-muted: #566276;
}

.product-vitrum-energy-page {
  --product-accent: #f4a300;
  --product-accent-rgb: 244, 163, 0;
  --product-accent-strong: #bf7200;
  --product-accent-strong-rgb: 191, 114, 0;
  --product-accent-soft: #fff6df;
  --product-citrus: #00a878;
  --product-citrus-soft: #e8f8f2;
  --product-berry: #d50058;
  --product-blue-dark: #173352;
  --product-ink: #172841;
  --product-muted: #566276;
}

.product-zodak-page {
  --product-accent: #2366b8;
  --product-accent-rgb: 35, 102, 184;
  --product-accent-strong: #174c8f;
  --product-accent-strong-rgb: 23, 76, 143;
  --product-accent-soft: #edf5ff;
  --product-citrus: #26a7df;
  --product-citrus-soft: #e8f8ff;
  --product-berry: #00a7a5;
  --product-blue-dark: #12365f;
  --product-ink: #172841;
  --product-muted: #566276;
}

.product-vitaprost-page {
  --product-accent: #1f7a62;
  --product-accent-rgb: 31, 122, 98;
  --product-accent-strong: #155a49;
  --product-accent-strong-rgb: 21, 90, 73;
  --product-accent-soft: #e9f7f3;
  --product-citrus: #5f7f9b;
  --product-citrus-soft: #eef4f8;
  --product-berry: #2b7fb7;
  --product-blue-dark: #173352;
  --product-ink: #172841;
  --product-muted: #566276;
}

.product-detail-page main {
  background: #ffffff;
}

.product-detail-page .product-hero {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 3.4rem 1rem 2.8rem;
  background:
    linear-gradient(120deg, #ffffff 0%, #fff9df 34%, #eff9f6 64%, #eef6ff 100%),
    repeating-linear-gradient(90deg, rgba(0, 93, 185, 0.05) 0 1px, transparent 1px 80px);
}

.product-detail-page .product-hero::before {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--stada-blue), var(--product-accent), var(--stada-red));
}

.product-detail-page .product-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 196, 0, 0.24), rgba(var(--product-accent-rgb), 0.1), rgba(0, 93, 185, 0.08));
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.product-detail-page .product-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 3rem;
  align-items: center;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.product-detail-page .product-hero-text {
  min-width: 0;
}

.product-detail-page .product-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: var(--product-accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-detail-page .product-kicker::before {
  content: '';
  width: 2rem;
  height: 3px;
  border-radius: 8px;
  background: var(--product-accent);
}

.product-detail-page .product-hero-text h1 {
  max-width: 680px;
  margin: 0 0 1rem;
  color: var(--product-blue-dark);
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.product-detail-page .product-hero-text p {
  max-width: 660px;
  margin: 0;
  color: #394555;
  font-size: 1.16rem;
  line-height: 1.65;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.15rem;
  border: 2px solid var(--product-accent);
  border-radius: 6px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.product-button::after {
  content: '\2192';
  margin-left: 0.5rem;
  transition: transform 0.24s ease;
}

.product-button:hover {
  transform: translateY(-2px);
}

.product-button:hover::after {
  transform: translateX(4px);
}

.product-button--primary {
  color: #ffffff;
  background: var(--product-accent);
  box-shadow: 0 14px 28px rgba(var(--product-accent-rgb), 0.22);
}

.product-button--primary:hover {
  border-color: var(--product-accent-strong);
  background: var(--product-accent-strong);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(var(--product-accent-strong-rgb), 0.28);
}

.product-button--secondary {
  color: var(--product-accent-strong);
  background: #ffffff;
}

.product-button--secondary:hover {
  color: var(--product-accent-strong);
  background: var(--product-accent-soft);
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.product-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(var(--product-accent-rgb), 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  color: #23485a;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.15;
}

.product-hero-visual {
  min-width: 0;
}

.product-detail-page .product-hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 410px;
  padding: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(0, 93, 185, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 219, 0.94)),
    linear-gradient(90deg, rgba(0, 93, 185, 0.08), rgba(213, 0, 88, 0.06));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-hero-nutrients {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 42px);
  gap: 0.5rem;
  pointer-events: none;
}

.product-hero-nutrients span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(var(--product-accent-rgb), 0.14);
  border-radius: 8px;
  color: var(--product-accent-strong);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(8, 46, 84, 0.1);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.product-detail-page .product-hero-image::after {
  content: '';
  position: absolute;
  left: 17%;
  right: 17%;
  bottom: 2.25rem;
  height: 20px;
  border-radius: 50%;
  background: rgba(8, 46, 84, 0.13);
  filter: blur(9px);
}

.product-detail-page .product-hero-image > img {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(8, 46, 84, 0.16));
  animation: vitrumProductFloat 6s ease-in-out infinite;
}

.product-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.product-hero-metric {
  min-height: 76px;
  padding: 0.9rem;
  border: 1px solid rgba(0, 93, 185, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(8, 46, 84, 0.08);
}

.product-hero-metric:nth-child(2) strong {
  color: var(--stada-blue);
}

.product-hero-metric:nth-child(3) strong {
  color: var(--product-berry);
}

.product-hero-metric strong {
  display: block;
  color: var(--product-accent-strong);
  font-size: 1.75rem;
  line-height: 1;
}

.product-hero-metric span {
  display: block;
  margin-top: 0.35rem;
  color: var(--product-muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

.product-detail-section {
  padding: 4.5rem 1rem;
  scroll-margin-top: 110px;
}

.product-overview {
  padding-top: 3rem;
}

.product-section-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.product-section-header {
  max-width: 760px;
  margin-bottom: 1.75rem;
}

.product-section-header--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.product-section-header--center .product-kicker {
  justify-content: center;
}

.product-section-header h2,
.product-benefits-panel h2 {
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 2.35rem;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.product-section-header p {
  margin: 1rem 0 0;
  color: var(--product-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.product-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-fact-card,
.usage-item,
.product-note,
.product-detail-page .partner-card {
  border: 1px solid rgba(15, 39, 66, 0.09);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(8, 46, 84, 0.08);
}

.product-fact-card {
  min-height: 230px;
  padding: 1.25rem;
  border-top: 5px solid var(--product-accent);
}

.product-fact-card:nth-child(2) {
  border-top-color: var(--stada-blue);
}

.product-fact-card:nth-child(3) {
  border-top-color: var(--product-berry);
}

.product-fact-card:nth-child(4) {
  border-top-color: var(--product-citrus);
}

.product-fact-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 40px;
  margin-bottom: 1rem;
  padding: 0 0.55rem;
  border-radius: 6px;
  color: var(--product-accent-strong);
  background: var(--product-accent-soft);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

.product-fact-card h3,
.usage-item h3,
.product-note h3 {
  margin: 0;
  color: var(--product-ink);
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.product-fact-card p,
.usage-item p,
.product-note p {
  margin: 0.75rem 0 0;
  color: var(--product-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-benefits-panel {
  margin-top: 2.2rem;
}

.product-benefits-panel h2 {
  margin-bottom: 1rem;
}

.product-detail-page .benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: none;
  margin: 0;
}

.product-detail-page .benefits-list li {
  min-height: 94px;
  margin: 0;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid rgba(var(--product-accent-rgb), 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: #26384a;
  font-size: 0.98rem;
  line-height: 1.55;
  box-shadow: 0 10px 24px rgba(8, 46, 84, 0.06);
}

.product-detail-page .benefits-list li[hidden] {
  display: none;
}

.product-detail-page .benefits-list li::before {
  content: '\2713';
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--product-accent);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
}

.product-formula {
  background:
    linear-gradient(180deg, #f3f9fb 0%, #ffffff 100%),
    repeating-linear-gradient(0deg, rgba(0, 93, 185, 0.04) 0 1px, transparent 1px 88px);
}

.product-formula-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 2rem;
  align-items: start;
}

.product-usage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 1.25rem;
  align-items: start;
}

.product-usage .product-section-header {
  grid-column: 1 / -1;
  margin-bottom: 0.5rem;
}

.usage-list {
  display: grid;
  gap: 0.85rem;
}

.usage-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  min-height: 126px;
  padding: 1.1rem;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.usage-item:hover,
.usage-item:focus-visible,
.usage-item.is-active {
  transform: translateX(6px);
  border-color: rgba(var(--product-accent-rgb), 0.3);
  background: #fbfffe;
  box-shadow: 0 22px 42px rgba(8, 46, 84, 0.12);
}

.usage-item > span {
  width: 12px;
  height: 100%;
  min-height: 72px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--product-accent), var(--stada-blue));
}

.product-note {
  padding: 1.25rem;
  border-top: 5px solid var(--stada-red);
  background: linear-gradient(135deg, #ffffff, #fff5f8);
}

.product-detail-page .product-where-to-buy {
  padding: 4.5rem 1rem;
  background: #f5f9ff;
}

.product-detail-page .partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: none;
}

.product-detail-page .partner-card {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 146px;
  max-width: none;
  padding: 1.1rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-detail-page .partner-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 93, 185, 0.22);
  box-shadow: 0 22px 42px rgba(8, 46, 84, 0.12);
}

.product-detail-page .partner-card img {
  height: 58px;
  max-width: 150px;
  margin-bottom: 0.75rem;
}

.product-detail-page .partner-card p {
  margin: 0;
  color: var(--product-ink);
  font-size: 0.96rem;
}

.product-detail-page .product-back {
  padding: 2rem 1rem 3.25rem;
  text-align: center;
  background: #ffffff;
}

.product-vitrum-fizzy-page .product-hero,
.product-vitrum-syrop-page .product-hero,
.product-vitrum-energy-page .product-hero,
.product-vitrum-magneb6-page .product-hero,
.product-zodak-page .product-hero,
.product-vitaprost-page .product-hero {
  background:
    linear-gradient(120deg, #ffffff 0%, var(--product-accent-soft) 38%, #f6fbfd 68%, #eef6ff 100%),
    repeating-linear-gradient(90deg, rgba(var(--product-accent-rgb), 0.055) 0 1px, transparent 1px 80px);
}

.product-vitrum-fizzy-page .product-hero::after,
.product-vitrum-syrop-page .product-hero::after,
.product-vitrum-energy-page .product-hero::after,
.product-vitrum-magneb6-page .product-hero::after,
.product-zodak-page .product-hero::after,
.product-vitaprost-page .product-hero::after {
  background: linear-gradient(135deg, rgba(var(--product-accent-rgb), 0.18), rgba(0, 93, 185, 0.08), rgba(213, 0, 88, 0.06));
}

.product-vitrum-fizzy-page .product-hero-image,
.product-vitrum-syrop-page .product-hero-image,
.product-vitrum-energy-page .product-hero-image,
.product-vitrum-magneb6-page .product-hero-image,
.product-zodak-page .product-hero-image,
.product-vitaprost-page .product-hero-image {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.95)),
    radial-gradient(circle at 22% 18%, rgba(var(--product-accent-rgb), 0.16), transparent 34%);
}

.product-vitrum-fizzy-page .product-hero-image::after,
.product-vitrum-energy-page .product-hero-image::after,
.product-vitrum-vitamin-c-page .product-hero-image::after {
  opacity: var(--vitrum-fizzy-hero-shadow-opacity, 0.72);
  transform: var(--vitrum-fizzy-hero-shadow-transform, scale3d(1, 1, 1));
  transform-origin: center;
  will-change: transform, opacity;
}

.product-vitrum-fizzy-page .product-hero-image > .product-hero-packshot,
.product-vitrum-energy-page .product-hero-image > .product-hero-packshot,
.product-vitrum-vitamin-c-page .product-hero-image > .product-hero-packshot {
  animation: none;
  filter: none;
  transform: translate3d(0, var(--vitrum-fizzy-hero-float-y, 0px), 0);
  will-change: transform;
}

.product-vitrum-fizzy-page .snup-formula-dot,
.product-vitrum-syrop-page .snup-formula-dot,
.product-vitrum-energy-page .snup-formula-dot,
.product-vitrum-magneb6-page .snup-formula-dot,
.product-zodak-page .snup-formula-dot,
.product-vitaprost-page .snup-formula-dot {
  opacity: 0;
}

.product-vitrum-fizzy-page .snup-formula-product,
.product-vitrum-energy-page .snup-formula-product,
.product-vitrum-magneb6-page .snup-formula-product,
.product-zodak-page .snup-formula-product,
.product-vitaprost-page .snup-formula-product {
  width: min(72%, 380px);
  max-height: 255px;
  object-fit: contain;
}

.product-vitrum-syrop-page .snup-formula-product,
.product-zodak-drops-page .snup-formula-product {
  width: min(58%, 320px);
  max-height: 300px;
  object-fit: contain;
}

.product-vitrum-fizzy-page .snup-formula-line,
.product-vitrum-syrop-page .snup-formula-line,
.product-vitrum-energy-page .snup-formula-line,
.product-vitrum-magneb6-page .snup-formula-line,
.product-zodak-page .snup-formula-line,
.product-vitaprost-page .snup-formula-line {
  stroke: rgba(var(--product-accent-rgb), 0.42);
  stroke-width: 3;
}

.product-detail-page .back-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--product-blue-dark);
  font-weight: 700;
  text-decoration: none;
}

.product-detail-page .back-link::before {
  content: '\2190';
  margin-right: 0.45rem;
  transition: transform 0.2s ease;
}

.product-detail-page .back-link:hover::before {
  transform: translateX(-4px);
}

.product-snup-page .product-hero {
  background:
    linear-gradient(120deg, #ffffff 0%, #e8f8ff 36%, #f6fbfd 64%, #fff1f4 100%),
    repeating-linear-gradient(90deg, rgba(0, 151, 200, 0.055) 0 1px, transparent 1px 80px);
}

.product-snup-page .product-hero::after {
  background: linear-gradient(135deg, rgba(0, 151, 200, 0.2), rgba(0, 167, 165, 0.12), rgba(228, 0, 43, 0.1));
}

.product-snup-page .product-hero-image {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(229, 249, 255, 0.96)),
    linear-gradient(90deg, rgba(0, 151, 200, 0.12), rgba(228, 0, 43, 0.06));
}

.product-snup-page .product-hero-image > img {
  width: min(82%, 420px);
}

.product-hero-nutrients--snup {
  grid-template-columns: repeat(2, minmax(58px, auto));
}

.product-hero-nutrients--snup span {
  width: auto;
  min-width: 58px;
  padding: 0 0.45rem;
}

.product-snup-page .product-fact-card:nth-child(4) span {
  color: #b0002d;
  background: var(--product-citrus-soft);
}

.product-snup-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 67% 52%, rgba(0, 151, 200, 0.16), transparent 24%),
    linear-gradient(180deg, #f3fbff 0%, #ffffff 100%);
}

.product-snup-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-snup-page .snup-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.snup-formula-system {
  position: relative;
  min-height: 760px;
  isolation: isolate;
}

.snup-formula-system::before {
  content: '';
  position: absolute;
  inset: 4% 2% 4%;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(0, 151, 200, 0.18) 151px 152px, transparent 153px 208px, rgba(0, 151, 200, 0.12) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(0, 151, 200, 0.065) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 151, 200, 0.055) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  pointer-events: none;
}

.snup-formula-system::after {
  content: '';
  position: absolute;
  right: 18%;
  bottom: 19%;
  z-index: 1;
  width: min(52%, 520px);
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 151, 200, 0.2), transparent 68%);
  filter: blur(10px);
  opacity: 0.7;
  pointer-events: none;
}

.snup-formula-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.snup-formula-line {
  fill: none;
  stroke: rgba(21, 151, 223, 0.58);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  filter: drop-shadow(0 0 7px rgba(21, 151, 223, 0.16));
  vector-effect: non-scaling-stroke;
}

.snup-formula-dot {
  fill: #1597df;
  stroke: #ffffff;
  stroke-width: 4;
  filter: drop-shadow(0 0 5px rgba(21, 151, 223, 0.42));
  vector-effect: non-scaling-stroke;
}

.snup-formula-core {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 3;
  width: min(48vw, 450px);
  height: 440px;
  overflow: visible;
  transform: translate(-50%, -50%);
}

.snup-formula-pack {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.snup-formula-pack::after {
  content: '';
  position: absolute;
  right: 20%;
  bottom: 7%;
  left: 18%;
  z-index: 0;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 95, 145, 0.16);
  filter: blur(10px);
}

.snup-formula-pack img {
  position: absolute;
  z-index: 2;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(8, 46, 84, 0.18));
}

.snup-formula-product {
  left: 50%;
  bottom: 1%;
  width: auto;
  height: min(100%, 430px);
  max-width: min(82%, 340px);
  transform: translateX(-50%);
}

.snup-formula-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 151, 200, 0.1), rgba(0, 151, 200, 0.78));
  box-shadow: 0 0 14px rgba(0, 151, 200, 0.2);
  transform-origin: left center;
  animation: snupConnectorPulse 4.8s ease-in-out infinite;
}

.snup-formula-connector::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #1597df;
  box-shadow: 0 0 0 2px rgba(21, 151, 223, 0.34);
  transform: translateY(-50%);
}

.snup-formula-connector--active {
  width: 250px;
  transform: translate(-130px, -54px) rotate(180deg);
}

.snup-formula-connector--seawater {
  width: 250px;
  transform: translate(130px, -54px) rotate(0deg);
  animation-delay: 0.35s;
}

.snup-formula-connector--format {
  width: 170px;
  transform: translate(0, 126px) rotate(90deg);
  animation-delay: 0.7s;
}

.snup-formula-connector--bridge {
  display: none;
}

.snup-formula-points {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.snup-formula-point {
  --point-x: 0;
  position: absolute;
  display: grid;
  justify-items: center;
  align-content: center;
  width: 260px;
  min-height: 220px;
  padding: 1.1rem 1.2rem 1.25rem;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.05);
  backdrop-filter: blur(3px);
  overflow: visible;
  text-align: center;
  transform: translate(var(--point-x), 0);
  animation: snupFormulaPointFloat 6s ease-in-out infinite;
}

.snup-formula-point::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(21, 151, 223, 0.3);
  border-radius: inherit;
  pointer-events: none;
}

.snup-formula-point::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  width: 74px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #1597df, transparent);
  box-shadow: 0 0 10px rgba(21, 151, 223, 0.28);
  transform: translateX(-50%);
}

.snup-formula-point--active {
  top: 0.8rem;
  left: 0;
}

.snup-formula-point--seawater {
  top: 0.8rem;
  right: 0;
  animation-delay: 0.45s;
}

.snup-formula-point--format {
  --point-x: -50%;
  bottom: -2.2rem;
  left: 55%;
  animation-delay: 0.9s;
}

.snup-formula-point img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 98px;
  margin: 0 auto 1rem;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(8, 46, 84, 0.1));
}

.snup-formula-point--active img {
  max-width: 160px;
  height: 92px;
  padding: 0.25rem;
}

.snup-formula-point--seawater img {
  max-width: 88px;
  height: 110px;
  padding: 0.75rem;
  border-radius: 50%;
}

.snup-formula-point--format img {
  max-width: 78px;
  height: 102px;
}

.snup-formula-point p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.product-vitrum-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 50%, rgba(248, 196, 0, 0.18), transparent 24%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.product-vitrum-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-vitrum-page .vitrum-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-vitrum-page .vitrum-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(248, 196, 0, 0.2) 151px 152px, transparent 153px 208px, rgba(0, 138, 114, 0.12) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(248, 196, 0, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 138, 114, 0.055) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-vitrum-page .vitrum-formula-system::after {
  right: 19%;
  bottom: 18%;
  background: radial-gradient(ellipse at center, rgba(248, 196, 0, 0.22), transparent 68%);
}

.product-vitrum-page .vitrum-formula-line {
  stroke: rgba(0, 138, 114, 0.56);
  filter: drop-shadow(0 0 7px rgba(0, 138, 114, 0.16));
}

.product-vitrum-page .vitrum-formula-dot {
  fill: var(--product-accent);
  filter: drop-shadow(0 0 5px rgba(0, 138, 114, 0.36));
}

.product-vitrum-page .vitrum-formula-core {
  top: 42%;
  width: min(52vw, 540px);
  height: 460px;
}

.product-vitrum-page .vitrum-formula-pack::after {
  right: 14%;
  bottom: 8%;
  left: 14%;
  background: rgba(68, 92, 38, 0.14);
}

.product-vitrum-page .vitrum-formula-product {
  left: 50%;
  bottom: 7%;
  width: min(104%, 520px);
  height: auto;
  max-width: none;
  transform: translateX(-50%);
}

.product-vitrum-page .vitrum-formula-point::before {
  border-color: rgba(0, 138, 114, 0.28);
}

.product-vitrum-page .vitrum-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-citrus), var(--product-accent), transparent);
  box-shadow: 0 0 10px rgba(248, 196, 0, 0.24);
}

.product-vitrum-page .vitrum-formula-point img {
  max-width: 132px;
  height: 104px;
  padding: 0.3rem;
}

.product-vitrum-page .vitrum-formula-point--minerals img {
  max-width: 124px;
}

.product-vitrum-page .vitrum-formula-point--beta img {
  max-width: 142px;
  height: 100px;
}

.product-coldrex-page .product-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(248, 196, 0, 0.16), transparent 30%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 249, 223, 0.66) 35%, rgba(239, 248, 255, 0.54) 68%, rgba(248, 251, 255, 0.42) 100%);
}

.product-coldrex-page .product-hero::after {
  background: linear-gradient(135deg, rgba(0, 93, 185, 0.07), rgba(248, 196, 0, 0.12), rgba(213, 0, 88, 0.045));
}

.product-coldrex-page .product-hero-image {
  min-height: 430px;
  padding: 1.25rem;
  border-color: rgba(0, 93, 185, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 219, 0.94)),
    linear-gradient(90deg, rgba(0, 93, 185, 0.08), rgba(213, 0, 88, 0.06));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
  transform: translateZ(0);
}

.product-coldrex-page .product-hero-image > img {
  width: min(78%, 390px);
  max-height: 370px;
  backface-visibility: hidden;
  filter: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: coldrexHeroFloat 9s linear infinite;
}

.product-coldrex-page .product-hero-metric:nth-child(2) strong {
  color: var(--product-accent-strong);
}

.product-coldrex-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-citrus);
}

.product-coldrex-page .product-fact-card span {
  color: var(--product-blue-dark);
  background: linear-gradient(135deg, #fff5c4, #ffffff);
}

.product-coldrex-page .product-fact-card:nth-child(2) span {
  color: #ffffff;
  background: var(--product-blue-dark);
}

.product-coldrex-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-citrus);
}

.product-coldrex-page .product-fact-card:nth-child(4) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-coldrex-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 50%, rgba(248, 196, 0, 0.2), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(213, 0, 88, 0.1), transparent 18%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.product-coldrex-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-coldrex-page .coldrex-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-coldrex-page .coldrex-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(248, 196, 0, 0.22) 151px 152px, transparent 153px 208px, rgba(0, 93, 185, 0.12) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(0, 93, 185, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(248, 196, 0, 0.065) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-coldrex-page .coldrex-formula-system::after {
  right: 18%;
  bottom: 17%;
  background: radial-gradient(ellipse at center, rgba(248, 196, 0, 0.24), transparent 68%);
}

.product-coldrex-page .coldrex-formula-line {
  stroke: rgba(0, 93, 185, 0.62);
  stroke-width: 2.35;
  filter: drop-shadow(0 0 9px rgba(0, 93, 185, 0.18));
}

.product-coldrex-page .coldrex-formula-dot {
  fill: var(--product-accent);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(0, 93, 185, 0.36));
}

.product-coldrex-page .coldrex-formula-core {
  top: 48%;
  width: min(52vw, 540px);
  height: 440px;
}

.product-coldrex-page .coldrex-formula-pack::after {
  right: 13%;
  bottom: 10%;
  left: 13%;
  background: rgba(8, 46, 84, 0.14);
}

.product-coldrex-page .coldrex-formula-product {
  left: 50%;
  bottom: 13%;
  width: min(74%, 370px);
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 28px 28px rgba(8, 46, 84, 0.18));
}

.product-coldrex-page .coldrex-formula-point {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
}

.product-coldrex-page .coldrex-formula-point::before {
  border-color: rgba(0, 93, 185, 0.28);
}

.product-coldrex-page .coldrex-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-berry), var(--product-accent), transparent);
  box-shadow: 0 0 10px rgba(248, 196, 0, 0.28);
}

.product-coldrex-page .coldrex-formula-point img {
  max-width: 132px;
  height: 98px;
  margin-bottom: 0.75rem;
  padding: 0.1rem;
}

.product-coldrex-page .coldrex-formula-point--phenylephrine img {
  max-width: 138px;
}

.product-coldrex-page .coldrex-formula-point--vitamin-c img {
  max-width: 142px;
}

.product-coldrex-page .coldrex-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-coldrex-page .coldrex-formula-point p {
  margin-top: 0.55rem;
}

.product-enterogermina-page .product-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 166, 81, 0.14), transparent 30%),
    radial-gradient(circle at 58% 78%, rgba(0, 113, 206, 0.1), transparent 25%),
    linear-gradient(120deg, #ffffff 0%, #edf8ff 34%, #f4fbf7 66%, #eef8ff 100%);
}

.product-enterogermina-page .product-hero::after {
  background: linear-gradient(135deg, rgba(0, 113, 206, 0.16), rgba(0, 166, 81, 0.12), rgba(0, 167, 165, 0.06));
}

.product-enterogermina-page .product-hero-image {
  --enterogermina-hero-shadow-opacity: 0.76;
  --enterogermina-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 335px;
  padding: 1.2rem;
  border-color: rgba(0, 113, 206, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(234, 246, 255, 0.96)),
    linear-gradient(90deg, rgba(0, 113, 206, 0.1), rgba(0, 166, 81, 0.08));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-enterogermina-page .product-hero-image::after {
  left: 16%;
  right: 16%;
  bottom: 2.05rem;
  height: 22px;
  background: rgba(8, 46, 84, 0.13);
  filter: blur(13px);
  opacity: var(--enterogermina-hero-shadow-opacity);
  transform: var(--enterogermina-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
  animation: enterogerminaHeroShadow 9.5s ease-in-out infinite;
}

.product-enterogermina-page .product-hero-image > .enterogermina-hero-packshot {
  width: min(92%, 520px);
  max-height: 300px;
  backface-visibility: hidden;
  filter: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: enterogerminaHeroFloat 9.5s ease-in-out infinite;
}

.product-enterogermina-page .product-hero-metric:nth-child(2) strong {
  color: var(--product-citrus);
}

.product-enterogermina-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-accent-strong);
}

.product-enterogermina-page .product-fact-card span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #eaf6ff, #ffffff);
}

.product-enterogermina-page .product-fact-card:nth-child(2) span {
  color: #ffffff;
  background: var(--product-accent-strong);
}

.product-enterogermina-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-citrus);
}

.product-enterogermina-page .product-fact-card:nth-child(4) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-enterogermina-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 52%, rgba(0, 113, 206, 0.16), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(0, 166, 81, 0.12), transparent 18%),
    linear-gradient(180deg, #f1faff 0%, #ffffff 100%);
}

.product-enterogermina-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-enterogermina-page .enterogermina-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-enterogermina-page .enterogermina-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(0, 113, 206, 0.18) 151px 152px, transparent 153px 208px, rgba(0, 166, 81, 0.14) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(0, 113, 206, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 166, 81, 0.055) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-enterogermina-page .enterogermina-formula-system::after {
  right: 11%;
  bottom: 19%;
  width: min(62%, 600px);
  background: radial-gradient(ellipse at center, rgba(0, 113, 206, 0.18), transparent 68%);
}

.product-enterogermina-page .enterogermina-formula-line {
  stroke: rgba(0, 113, 206, 0.74);
  stroke-width: 2.6;
  filter: drop-shadow(0 0 9px rgba(0, 113, 206, 0.22));
}

.product-enterogermina-page .enterogermina-formula-dot {
  fill: var(--product-citrus);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(0, 113, 206, 0.32));
}

.product-enterogermina-page .enterogermina-formula-core {
  top: 50%;
  width: min(56vw, 560px);
  height: 430px;
}

.product-enterogermina-page .enterogermina-formula-pack::after {
  right: 7%;
  bottom: 18%;
  left: 7%;
  height: 24px;
  background: rgba(8, 46, 84, 0.13);
}

.product-enterogermina-page .enterogermina-formula-product {
  left: 50%;
  bottom: 27%;
  z-index: 3;
  width: min(100%, 540px);
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 24px rgba(8, 46, 84, 0.16));
}

.product-enterogermina-page .enterogermina-formula-point {
  width: 224px;
  min-height: 190px;
  padding: 0.9rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
}

.product-enterogermina-page .enterogermina-formula-point::before {
  border-color: rgba(0, 113, 206, 0.28);
}

.product-enterogermina-page .enterogermina-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-citrus), transparent);
  box-shadow: 0 0 10px rgba(0, 113, 206, 0.24);
}

.product-enterogermina-page .enterogermina-formula-point > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-bottom: 0.82rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--product-accent), var(--product-accent-strong));
  box-shadow: 0 16px 24px rgba(0, 113, 206, 0.16);
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1;
}

.product-enterogermina-page .enterogermina-formula-point--spores > span {
  background: linear-gradient(135deg, var(--product-citrus), #007d3d);
  box-shadow: 0 16px 24px rgba(0, 166, 81, 0.16);
}

.product-enterogermina-page .enterogermina-formula-point--format > span {
  color: var(--product-accent-strong);
  background: #ffffff;
  box-shadow: inset 0 0 0 2px rgba(0, 113, 206, 0.16), 0 16px 24px rgba(8, 46, 84, 0.08);
}

.product-enterogermina-page .enterogermina-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-enterogermina-page .enterogermina-formula-point p {
  margin-top: 0.55rem;
}

.product-enterogermina-page .enterogermina-formula-card-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 116px;
  margin: -0.1rem auto 0.78rem;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 14px 16px rgba(8, 46, 84, 0.12));
}

.product-enterogermina-page .enterogermina-formula-card-image--bacillus {
  max-width: 150px;
  height: 106px;
}

.product-enterogermina-page .enterogermina-formula-card-image--spores {
  max-width: 132px;
  height: 108px;
}

.product-enterogermina-page .enterogermina-formula-card-image--flacon {
  max-width: 142px;
  height: 112px;
}

.product-enterogermina-page .enterogermina-formula-point--format > span {
  display: none;
}

.product-enterogermina-page .product-note {
  border-top-color: var(--product-citrus);
  background: linear-gradient(135deg, #ffffff, #effaf3);
}

.product-enterogermina-page .product-where-to-buy {
  background: #f1faff;
}

.product-enterogermina-capsules-page .product-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 166, 81, 0.16), transparent 30%),
    radial-gradient(circle at 58% 78%, rgba(0, 113, 206, 0.1), transparent 25%),
    linear-gradient(120deg, #ffffff 0%, #eefaf3 34%, #edf8ff 66%, #f8fbff 100%);
}

.product-enterogermina-capsules-page .product-hero::after {
  background: linear-gradient(135deg, rgba(0, 166, 81, 0.14), rgba(0, 113, 206, 0.12), rgba(0, 167, 165, 0.06));
}

.product-enterogermina-capsules-page .product-hero-image {
  --enterogermina-capsules-hero-shadow-opacity: 0.76;
  --enterogermina-capsules-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 335px;
  padding: 1.2rem;
  overflow: hidden;
  border-color: rgba(0, 166, 81, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 248, 238, 0.96)),
    linear-gradient(90deg, rgba(0, 166, 81, 0.09), rgba(0, 113, 206, 0.08));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-enterogermina-capsules-page .product-hero-image::after {
  left: 18%;
  right: 18%;
  bottom: 2.05rem;
  height: 22px;
  background: rgba(8, 46, 84, 0.13);
  filter: blur(13px);
  opacity: var(--enterogermina-capsules-hero-shadow-opacity);
  transform: var(--enterogermina-capsules-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
  animation: enterogerminaCapsulesHeroShadow 9.5s ease-in-out infinite;
}

.product-enterogermina-capsules-page .product-hero-image > .enterogermina-capsules-hero-packshot {
  width: min(96%, 600px);
  max-height: 310px;
  backface-visibility: hidden;
  filter: none;
  transform: translate3d(0, var(--enterogermina-capsules-hero-float-y, 0px), 0);
  will-change: transform;
  animation: enterogerminaCapsulesHeroFloat 9.5s ease-in-out infinite;
}

.product-enterogermina-capsules-page.enterogermina-capsules-hero-paused .product-hero-image > .enterogermina-capsules-hero-packshot,
.product-enterogermina-capsules-page.enterogermina-capsules-hero-paused .product-hero-image::after {
  animation-play-state: paused;
}

.product-enterogermina-capsules-page .product-hero-metric:nth-child(2) strong {
  color: var(--product-accent);
}

.product-enterogermina-capsules-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-accent-strong);
}

.product-enterogermina-capsules-page .product-fact-card span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #e8f8ee, #ffffff);
}

.product-enterogermina-capsules-page .product-fact-card:nth-child(2) span {
  color: #ffffff;
  background: var(--product-accent-strong);
}

.product-enterogermina-capsules-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-citrus);
}

.product-enterogermina-capsules-page .product-fact-card:nth-child(4) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-enterogermina-capsules-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 52%, rgba(0, 166, 81, 0.15), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(0, 113, 206, 0.12), transparent 18%),
    linear-gradient(180deg, #effaf3 0%, #ffffff 100%);
}

.product-enterogermina-capsules-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(0, 166, 81, 0.18) 151px 152px, transparent 153px 208px, rgba(0, 113, 206, 0.14) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(0, 166, 81, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 113, 206, 0.055) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-system::after {
  right: 11%;
  bottom: 19%;
  width: min(62%, 600px);
  background: radial-gradient(ellipse at center, rgba(0, 166, 81, 0.18), transparent 68%);
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-line {
  stroke: rgba(0, 125, 61, 0.7);
  stroke-width: 2.6;
  filter: drop-shadow(0 0 9px rgba(0, 166, 81, 0.22));
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-dot {
  fill: var(--product-citrus);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(0, 113, 206, 0.32));
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-core {
  top: 50%;
  width: min(42vw, 410px);
  height: 350px;
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-pack::after {
  right: 13%;
  bottom: 22%;
  left: 13%;
  height: 18px;
  background: rgba(8, 46, 84, 0.13);
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-product {
  left: 50%;
  bottom: 28%;
  z-index: 3;
  width: min(100%, 380px);
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 20px rgba(8, 46, 84, 0.16));
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-point {
  width: 224px;
  min-height: 190px;
  padding: 0.9rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-point::before {
  border-color: rgba(0, 166, 81, 0.28);
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-citrus), transparent);
  box-shadow: 0 0 10px rgba(0, 166, 81, 0.24);
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-point > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-bottom: 0.82rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--product-accent), var(--product-accent-strong));
  box-shadow: 0 16px 24px rgba(0, 166, 81, 0.16);
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1;
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-point--spores > span {
  background: linear-gradient(135deg, var(--product-citrus), #00579c);
  box-shadow: 0 16px 24px rgba(0, 113, 206, 0.16);
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-point--format > span {
  color: var(--product-accent-strong);
  background: #ffffff;
  box-shadow: inset 0 0 0 2px rgba(0, 166, 81, 0.16), 0 16px 24px rgba(8, 46, 84, 0.08);
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-point p {
  margin-top: 0.55rem;
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-card-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 116px;
  margin: -0.1rem auto 0.78rem;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 14px 16px rgba(8, 46, 84, 0.12));
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-card-image--bacillus {
  max-width: 150px;
  height: 106px;
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-card-image--spores {
  max-width: 132px;
  height: 108px;
}

.product-enterogermina-capsules-page .enterogermina-capsules-formula-card-image--capsules {
  max-width: 142px;
  height: 112px;
}

.product-enterogermina-capsules-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #effaf3);
}

.product-enterogermina-capsules-page .product-where-to-buy {
  background: #f1fbf5;
}

.product-enterogermina-forte-page .product-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 166, 81, 0.18), transparent 30%),
    radial-gradient(circle at 58% 78%, rgba(0, 113, 206, 0.12), transparent 25%),
    linear-gradient(120deg, #ffffff 0%, #f2fbf5 34%, #edf8ff 66%, #fff8ef 100%);
}

.product-enterogermina-forte-page .product-hero::after {
  background: linear-gradient(135deg, rgba(0, 166, 81, 0.14), rgba(0, 113, 206, 0.12), rgba(242, 102, 34, 0.08));
}

.product-enterogermina-forte-page .product-hero-image {
  --enterogermina-forte-hero-shadow-opacity: 0.72;
  --enterogermina-forte-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 350px;
  padding: 1rem;
  overflow: hidden;
  border-color: rgba(0, 166, 81, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 249, 242, 0.96)),
    linear-gradient(90deg, rgba(0, 166, 81, 0.08), rgba(0, 113, 206, 0.08));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-enterogermina-forte-page .product-hero-image::after {
  left: 14%;
  right: 14%;
  bottom: 2rem;
  height: 20px;
  background: rgba(8, 46, 84, 0.12);
  filter: blur(13px);
  opacity: var(--enterogermina-forte-hero-shadow-opacity);
  transform: var(--enterogermina-forte-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
  animation: enterogerminaForteHeroShadow 9.5s ease-in-out infinite;
}

.product-enterogermina-forte-page .product-hero-image > .enterogermina-forte-hero-packshot {
  width: min(100%, 650px);
  max-height: 318px;
  object-fit: contain;
  backface-visibility: hidden;
  filter: none;
  transform: translate3d(0, var(--enterogermina-forte-hero-float-y, 0px), 0);
  will-change: transform;
  animation: enterogerminaForteHeroFloat 9.5s ease-in-out infinite;
}

.product-enterogermina-forte-page.enterogermina-forte-hero-paused .product-hero-image > .enterogermina-forte-hero-packshot,
.product-enterogermina-forte-page.enterogermina-forte-hero-paused .product-hero-image::after {
  animation-play-state: paused;
}

.product-enterogermina-forte-page .product-hero-metric:nth-child(2) strong {
  color: var(--product-citrus);
}

.product-enterogermina-forte-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-accent);
}

.product-enterogermina-forte-page .product-fact-card span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #e8f8ee, #ffffff);
}

.product-enterogermina-forte-page .product-fact-card:nth-child(2) span {
  color: #ffffff;
  background: var(--product-accent-strong);
}

.product-enterogermina-forte-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-citrus);
}

.product-enterogermina-forte-page .product-fact-card:nth-child(4) span {
  color: #ffffff;
  background: var(--product-accent);
}

.product-enterogermina-forte-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 52%, rgba(0, 166, 81, 0.15), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(0, 113, 206, 0.12), transparent 18%),
    linear-gradient(180deg, #effaf3 0%, #ffffff 100%);
}

.product-enterogermina-forte-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-enterogermina-forte-page .enterogermina-forte-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-enterogermina-forte-page .enterogermina-forte-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(0, 166, 81, 0.18) 151px 152px, transparent 153px 208px, rgba(0, 113, 206, 0.14) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(0, 166, 81, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 113, 206, 0.055) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-enterogermina-forte-page .enterogermina-forte-formula-system::after {
  right: 11%;
  bottom: 19%;
  width: min(62%, 600px);
  background: radial-gradient(ellipse at center, rgba(0, 166, 81, 0.18), transparent 68%);
}

.product-enterogermina-forte-page .enterogermina-forte-formula-line {
  stroke: rgba(0, 125, 61, 0.72);
  stroke-width: 2.6;
  filter: drop-shadow(0 0 9px rgba(0, 166, 81, 0.22));
}

.product-enterogermina-forte-page .enterogermina-forte-formula-dot {
  fill: var(--product-citrus);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(0, 113, 206, 0.32));
}

.product-enterogermina-forte-page .enterogermina-forte-formula-core {
  top: 50%;
  width: min(46vw, 455px);
  height: 370px;
}

.product-enterogermina-forte-page .enterogermina-forte-formula-pack::after {
  right: 13%;
  bottom: 22%;
  left: 13%;
  height: 18px;
  background: rgba(8, 46, 84, 0.12);
}

.product-enterogermina-forte-page .enterogermina-forte-formula-product {
  left: 50%;
  top: 50%;
  z-index: 3;
  width: min(108%, 430px);
  height: auto;
  max-width: none;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 18px 20px rgba(8, 46, 84, 0.14));
}

.product-enterogermina-forte-page .enterogermina-forte-formula-point {
  width: 224px;
  min-height: 190px;
  padding: 0.9rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
}

.product-enterogermina-forte-page .enterogermina-forte-formula-point::before {
  border-color: rgba(0, 166, 81, 0.28);
}

.product-enterogermina-forte-page .enterogermina-forte-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-citrus), transparent);
  box-shadow: 0 0 10px rgba(0, 166, 81, 0.24);
}

.product-enterogermina-forte-page .enterogermina-forte-formula-point > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-bottom: 0.82rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--product-accent), var(--product-accent-strong));
  box-shadow: 0 16px 24px rgba(0, 166, 81, 0.16);
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1;
}

.product-enterogermina-forte-page .enterogermina-forte-formula-point--spores > span {
  background: linear-gradient(135deg, var(--product-citrus), #00579c);
  box-shadow: 0 16px 24px rgba(0, 113, 206, 0.16);
}

.product-enterogermina-forte-page .enterogermina-forte-formula-point--format > span {
  color: var(--product-accent-strong);
  background: #ffffff;
  box-shadow: inset 0 0 0 2px rgba(0, 166, 81, 0.16), 0 16px 24px rgba(8, 46, 84, 0.08);
}

.product-enterogermina-forte-page .enterogermina-forte-formula-card-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 116px;
  margin: -0.1rem auto 0.78rem;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 14px 16px rgba(8, 46, 84, 0.12));
}

.product-enterogermina-forte-page .enterogermina-forte-formula-card-image--bacillus {
  max-width: 150px;
  height: 106px;
}

.product-enterogermina-forte-page .enterogermina-forte-formula-card-image--spores {
  max-width: 132px;
  height: 108px;
}

.product-enterogermina-forte-page .enterogermina-forte-formula-card-image--flacon {
  max-width: 142px;
  height: 112px;
}

.product-enterogermina-forte-page .enterogermina-forte-formula-badge {
  width: 118px;
  height: 82px;
  margin-bottom: 0.78rem;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 38%),
    linear-gradient(135deg, #00a651 0%, #007d3d 56%, #00579c 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42), 0 16px 24px rgba(0, 166, 81, 0.16);
  font-size: 1.2rem;
  letter-spacing: 0;
  text-transform: none;
}

.product-enterogermina-forte-page .enterogermina-forte-formula-point--format > span {
  display: none;
}

.product-enterogermina-forte-page .enterogermina-forte-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-enterogermina-forte-page .enterogermina-forte-formula-point p {
  margin-top: 0.55rem;
}

.product-enterogermina-forte-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #effaf3);
}

.product-enterogermina-forte-page .product-where-to-buy {
  background: #f1fbf5;
}

.product-sinulan-page .product-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(240, 90, 40, 0.14), transparent 30%),
    radial-gradient(circle at 58% 78%, rgba(77, 143, 56, 0.1), transparent 25%),
    linear-gradient(120deg, #ffffff 0%, #f1faee 34%, #fff5ef 66%, #eff8ff 100%);
}

.product-sinulan-page .product-hero::after {
  background: linear-gradient(135deg, rgba(77, 143, 56, 0.16), rgba(240, 90, 40, 0.12), rgba(0, 93, 185, 0.05));
}

.product-sinulan-page .product-hero-image {
  --sinulan-hero-shadow-opacity: 0.76;
  --sinulan-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 335px;
  padding: 1.2rem;
  border-color: rgba(77, 143, 56, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 238, 0.96)),
    linear-gradient(90deg, rgba(77, 143, 56, 0.1), rgba(240, 90, 40, 0.08));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-sinulan-page .product-hero-image::after {
  left: 16%;
  right: 16%;
  bottom: 2.05rem;
  height: 22px;
  background: rgba(49, 79, 39, 0.14);
  filter: blur(13px);
  opacity: var(--sinulan-hero-shadow-opacity);
  transform: var(--sinulan-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
  animation: sinulanHeroShadow 9.5s ease-in-out infinite;
}

.product-sinulan-page .product-hero-image > .sinulan-hero-packshot {
  width: min(104%, 590px);
  max-height: 320px;
  backface-visibility: hidden;
  filter: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: sinulanHeroFloat 9.5s ease-in-out infinite;
}

.product-sinulan-page .product-hero-metric:nth-child(2) strong {
  color: var(--product-citrus);
}

.product-sinulan-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-accent-strong);
}

.product-sinulan-page .product-fact-card span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #edf8e9, #ffffff);
}

.product-sinulan-page .product-fact-card:nth-child(2) span {
  color: #ffffff;
  background: var(--product-accent-strong);
}

.product-sinulan-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-citrus);
}

.product-sinulan-page .product-fact-card:nth-child(4) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-sinulan-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 52%, rgba(77, 143, 56, 0.16), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(240, 90, 40, 0.12), transparent 18%),
    linear-gradient(180deg, #f5fbf2 0%, #ffffff 100%);
}

.product-sinulan-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-sinulan-page .sinulan-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-sinulan-page .sinulan-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(77, 143, 56, 0.18) 151px 152px, transparent 153px 208px, rgba(240, 90, 40, 0.14) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(77, 143, 56, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 90, 40, 0.055) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-sinulan-page .sinulan-formula-system::after {
  right: 11%;
  bottom: 19%;
  width: min(62%, 600px);
  background: radial-gradient(ellipse at center, rgba(77, 143, 56, 0.18), transparent 68%);
}

.product-sinulan-page .sinulan-formula-line {
  stroke: rgba(77, 143, 56, 0.74);
  stroke-width: 2.6;
  filter: drop-shadow(0 0 9px rgba(77, 143, 56, 0.22));
}

.product-sinulan-page .sinulan-formula-dot {
  fill: var(--product-citrus);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(77, 143, 56, 0.32));
}

.product-sinulan-page .sinulan-formula-core {
  top: 50%;
  width: min(52vw, 520px);
  height: 430px;
}

.product-sinulan-page .sinulan-formula-pack::after {
  right: 14%;
  bottom: 19%;
  left: 14%;
  height: 18px;
  background: rgba(49, 79, 39, 0.13);
}

.product-sinulan-page .sinulan-formula-product {
  left: 50%;
  bottom: 24%;
  z-index: 3;
  width: min(86%, 430px);
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 24px rgba(49, 79, 39, 0.15));
}

.product-sinulan-page .sinulan-formula-point {
  width: 200px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
}

.product-sinulan-page .sinulan-formula-point::before {
  border-color: rgba(77, 143, 56, 0.28);
}

.product-sinulan-page .sinulan-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-citrus), transparent);
  box-shadow: 0 0 10px rgba(77, 143, 56, 0.24);
}

.product-sinulan-page .sinulan-formula-point--plant {
  left: -0.75rem;
}

.product-sinulan-page .sinulan-formula-point--breathing {
  right: -0.75rem;
}

.product-sinulan-page .sinulan-formula-point > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 96px;
  height: 96px;
  margin-bottom: 0.82rem;
  padding: 0.2rem;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 24px rgba(49, 79, 39, 0.08);
  object-fit: contain;
}

.product-sinulan-page .sinulan-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-sinulan-page .sinulan-formula-point p {
  margin-top: 0.55rem;
}

.product-sinulan-page .product-note {
  border-top-color: var(--product-citrus);
  background: linear-gradient(135deg, #ffffff, #fff2ec);
}

.product-sinulan-page .product-where-to-buy {
  background: #f5fbf2;
}

.product-edarbi-page .product-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(155, 20, 95, 0.13), transparent 30%),
    radial-gradient(circle at 58% 78%, rgba(43, 127, 183, 0.1), transparent 25%),
    linear-gradient(120deg, #ffffff 0%, #fff3f8 34%, #f4f7fb 66%, #eef8ff 100%);
}

.product-edarbi-page .product-hero::after {
  background: linear-gradient(135deg, rgba(155, 20, 95, 0.14), rgba(77, 106, 130, 0.12), rgba(43, 127, 183, 0.06));
}

.product-edarbi-page .product-hero-image {
  --edarbi-hero-shadow-opacity: 0.76;
  --edarbi-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 335px;
  padding: 1.2rem;
  border-color: rgba(155, 20, 95, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(251, 236, 244, 0.94)),
    linear-gradient(90deg, rgba(155, 20, 95, 0.09), rgba(43, 127, 183, 0.07));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-edarbi-page .product-hero-image::after {
  left: 13%;
  right: 13%;
  bottom: 2rem;
  height: 22px;
  background: rgba(62, 45, 72, 0.14);
  filter: blur(13px);
  opacity: var(--edarbi-hero-shadow-opacity);
  transform: var(--edarbi-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
  animation: edarbiHeroShadow 9.5s ease-in-out infinite;
}

.product-edarbi-page .product-hero-image > .edarbi-hero-packshot {
  width: min(100%, 560px);
  max-height: 285px;
  backface-visibility: hidden;
  filter: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: edarbiHeroFloat 9.5s ease-in-out infinite;
}

.product-edarbi-page .product-hero-metric:first-child strong {
  font-size: 1.45rem;
}

.product-edarbi-page .product-hero-metric:nth-child(2) strong {
  color: var(--product-citrus);
}

.product-edarbi-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-berry);
}

.product-edarbi-page .product-fact-card span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #fbecf4, #ffffff);
}

.product-edarbi-page .product-fact-card:nth-child(2) span {
  color: #ffffff;
  background: var(--product-citrus);
}

.product-edarbi-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-accent-strong);
}

.product-edarbi-page .product-fact-card:nth-child(4) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-edarbi-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 52%, rgba(155, 20, 95, 0.14), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(43, 127, 183, 0.12), transparent 18%),
    linear-gradient(180deg, #fff6fa 0%, #ffffff 100%);
}

.product-edarbi-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-edarbi-page .edarbi-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-edarbi-page .edarbi-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(155, 20, 95, 0.16) 151px 152px, transparent 153px 208px, rgba(43, 127, 183, 0.14) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(155, 20, 95, 0.052) 1px, transparent 1px),
    linear-gradient(180deg, rgba(43, 127, 183, 0.052) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-edarbi-page .edarbi-formula-system::after {
  right: 11%;
  bottom: 19%;
  width: min(62%, 600px);
  background: radial-gradient(ellipse at center, rgba(155, 20, 95, 0.16), transparent 68%);
}

.product-edarbi-page .edarbi-formula-line {
  stroke: rgba(155, 20, 95, 0.72);
  stroke-width: 2.6;
  filter: drop-shadow(0 0 9px rgba(155, 20, 95, 0.2));
  animation: none;
}

.product-edarbi-page .edarbi-formula-dot {
  fill: var(--product-berry);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(155, 20, 95, 0.28));
  animation: none;
}

.product-edarbi-page .edarbi-formula-core {
  top: 50%;
  width: min(58vw, 580px);
  height: 420px;
}

.product-edarbi-page .edarbi-formula-pack::after {
  right: 10%;
  bottom: 22%;
  left: 10%;
  height: 20px;
  background: rgba(62, 45, 72, 0.12);
}

.product-edarbi-page .edarbi-formula-product {
  left: 50%;
  bottom: 29%;
  z-index: 3;
  width: min(96%, 520px);
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 24px rgba(62, 45, 72, 0.15));
}

.product-edarbi-page .edarbi-formula-point {
  width: 230px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
}

.product-edarbi-page .edarbi-formula-point::before {
  border-color: rgba(155, 20, 95, 0.26);
}

.product-edarbi-page .edarbi-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-berry), transparent);
  box-shadow: 0 0 10px rgba(155, 20, 95, 0.22);
}

.product-edarbi-page .edarbi-formula-point > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 96px;
  height: 96px;
  max-width: 96px;
  margin-bottom: 0.82rem;
  padding: 0.2rem;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 24px rgba(62, 45, 72, 0.08);
  object-fit: contain;
}

.product-edarbi-page .edarbi-formula-point--azilsartan > img,
.product-edarbi-page .edarbi-formula-point--chlorthalidone > img {
  width: 100%;
  height: 122px;
  max-width: 200px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-edarbi-page .edarbi-formula-point--control > img {
  width: min(100%, 132px);
  height: 132px;
  max-width: 132px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-edarbi-page .edarbi-formula-point--azilsartan {
  left: -0.35rem;
}

.product-edarbi-page .edarbi-formula-point--chlorthalidone {
  right: -0.35rem;
}

.product-edarbi-page .edarbi-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-edarbi-page .edarbi-formula-point p {
  margin-top: 0.55rem;
}

.product-edarbi-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #fbecf4);
}

.product-edarbi-page .product-where-to-buy {
  background: #fff6fa;
}

.product-cardiomagnil-page .product-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(180, 21, 35, 0.14), transparent 30%),
    radial-gradient(circle at 58% 78%, rgba(12, 53, 125, 0.12), transparent 26%),
    linear-gradient(120deg, #ffffff 0%, #f1f6ff 34%, #fff5f6 66%, #eef4ff 100%);
}

.product-cardiomagnil-page .product-hero::after {
  background: linear-gradient(135deg, rgba(12, 53, 125, 0.16), rgba(180, 21, 35, 0.14), rgba(241, 91, 107, 0.08));
}

.product-cardiomagnil-page .product-hero-image {
  --cardiomagnil-hero-shadow-opacity: 0.74;
  --cardiomagnil-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 360px;
  padding: 1.1rem;
  border-color: rgba(12, 53, 125, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 255, 0.95)),
    linear-gradient(90deg, rgba(12, 53, 125, 0.1), rgba(180, 21, 35, 0.07));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-cardiomagnil-page .product-hero-image::after {
  left: 17%;
  right: 17%;
  bottom: 2.05rem;
  height: 22px;
  background: rgba(6, 31, 76, 0.16);
  filter: blur(13px);
  opacity: var(--cardiomagnil-hero-shadow-opacity);
  transform: var(--cardiomagnil-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
  animation: cardiomagnilHeroShadow 9.5s ease-in-out infinite;
}

.product-cardiomagnil-page .product-hero-image > .cardiomagnil-hero-packshot {
  width: min(100%, 430px);
  max-height: 315px;
  border-radius: 8px;
  backface-visibility: hidden;
  filter: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: cardiomagnilHeroFloat 9.5s ease-in-out infinite;
}

.product-cardiomagnil-page .product-hero-metric:first-child strong {
  font-size: 1.55rem;
}

.product-cardiomagnil-page .product-hero-metric:nth-child(2) strong {
  color: var(--product-accent-strong);
}

.product-cardiomagnil-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-citrus);
  font-size: 1.42rem;
}

.product-cardiomagnil-page .product-fact-card span {
  color: #ffffff;
  background: var(--product-citrus);
}

.product-cardiomagnil-page .product-fact-card:nth-child(2) span {
  color: #ffffff;
  background: var(--product-accent);
}

.product-cardiomagnil-page .product-fact-card:nth-child(3) span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #fff0f2, #ffffff);
}

.product-cardiomagnil-page .product-fact-card:nth-child(4) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-cardiomagnil-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 52%, rgba(12, 53, 125, 0.12), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(180, 21, 35, 0.12), transparent 18%),
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.product-cardiomagnil-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-cardiomagnil-page .cardiomagnil-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-cardiomagnil-page .cardiomagnil-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(12, 53, 125, 0.16) 151px 152px, transparent 153px 208px, rgba(180, 21, 35, 0.14) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(12, 53, 125, 0.052) 1px, transparent 1px),
    linear-gradient(180deg, rgba(180, 21, 35, 0.052) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-cardiomagnil-page .cardiomagnil-formula-system::after {
  right: 12%;
  bottom: 18%;
  width: min(64%, 620px);
  background: radial-gradient(ellipse at center, rgba(12, 53, 125, 0.17), transparent 68%);
}

.product-cardiomagnil-page .cardiomagnil-formula-line {
  stroke: rgba(12, 53, 125, 0.66);
  stroke-width: 2.55;
  filter: drop-shadow(0 0 9px rgba(12, 53, 125, 0.18));
  animation: none;
}

.product-cardiomagnil-page .cardiomagnil-formula-dot {
  fill: var(--product-accent);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(180, 21, 35, 0.3));
  animation: none;
}

.product-cardiomagnil-page .cardiomagnil-formula-core {
  top: 50%;
  width: min(55vw, 540px);
  height: 430px;
}

.product-cardiomagnil-page .cardiomagnil-formula-pack::after {
  right: 15%;
  bottom: 17%;
  left: 15%;
  height: 20px;
  background: rgba(6, 31, 76, 0.14);
}

.product-cardiomagnil-page .cardiomagnil-formula-product {
  left: 50%;
  bottom: 23%;
  z-index: 3;
  width: min(82%, 410px);
  height: auto;
  max-width: none;
  border-radius: 8px;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 24px rgba(6, 31, 76, 0.16));
}

.product-cardiomagnil-page .cardiomagnil-formula-point {
  width: 230px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
}

.product-cardiomagnil-page .cardiomagnil-formula-point::before {
  border-color: rgba(12, 53, 125, 0.24);
}

.product-cardiomagnil-page .cardiomagnil-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-citrus), var(--product-accent), transparent);
  box-shadow: 0 0 10px rgba(12, 53, 125, 0.2);
}

.cardiomagnil-formula-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 62px;
  margin-bottom: 0.82rem;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--product-citrus), var(--product-accent));
  box-shadow: 0 16px 24px rgba(6, 31, 76, 0.12);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.product-cardiomagnil-page .cardiomagnil-formula-point--asa {
  left: -0.35rem;
}

.product-cardiomagnil-page .cardiomagnil-formula-point--magnesium {
  right: -0.35rem;
}

.product-cardiomagnil-page .cardiomagnil-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-cardiomagnil-page .cardiomagnil-formula-point p {
  margin-top: 0.55rem;
}

.product-cardiomagnil-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #fff0f2);
}

.product-cardiomagnil-page .product-where-to-buy {
  background: #f3f7ff;
}

.product-noshpa-page .product-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(246, 185, 26, 0.2), transparent 31%),
    radial-gradient(circle at 58% 78%, rgba(215, 25, 32, 0.12), transparent 26%),
    linear-gradient(120deg, #ffffff 0%, #fff7dc 32%, #fff1ee 64%, #f6f9ff 100%);
}

.product-noshpa-page .product-hero::after {
  background: linear-gradient(135deg, rgba(246, 185, 26, 0.18), rgba(215, 25, 32, 0.14), rgba(17, 17, 17, 0.06));
}

.product-noshpa-page .product-hero-image {
  --noshpa-hero-shadow-opacity: 0.74;
  --noshpa-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 360px;
  padding: 1rem;
  border-color: rgba(215, 25, 32, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 225, 0.95)),
    linear-gradient(90deg, rgba(215, 25, 32, 0.09), rgba(246, 185, 26, 0.1));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-noshpa-page .product-hero-image::after {
  left: 13%;
  right: 13%;
  bottom: 2.05rem;
  height: 22px;
  background: rgba(34, 23, 9, 0.16);
  filter: blur(13px);
  opacity: var(--noshpa-hero-shadow-opacity);
  transform: var(--noshpa-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
  animation: noshpaHeroShadow 9.5s ease-in-out infinite;
}

.product-noshpa-page .product-hero-image > .noshpa-hero-packshot {
  width: min(100%, 560px);
  max-height: 285px;
  object-fit: contain;
  backface-visibility: hidden;
  filter: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: noshpaHeroFloat 9.5s ease-in-out infinite;
}

.product-noshpa-page .product-hero-metric:first-child strong {
  color: var(--product-accent);
}

.product-noshpa-page .product-hero-metric:nth-child(2) strong {
  color: #986b00;
}

.product-noshpa-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-berry);
  font-size: 1.5rem;
}

.product-noshpa-page .product-fact-card span {
  color: #ffffff;
  background: var(--product-accent);
}

.product-noshpa-page .product-fact-card:nth-child(2) span {
  color: #8a6200;
  background: var(--product-citrus);
}

.product-noshpa-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-noshpa-page .product-fact-card:nth-child(4) span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #fff0ee, #ffffff);
}

.product-noshpa-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 52%, rgba(246, 185, 26, 0.16), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(215, 25, 32, 0.12), transparent 18%),
    linear-gradient(180deg, #fff8e4 0%, #ffffff 100%);
}

.product-noshpa-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-noshpa-page .noshpa-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-noshpa-page .noshpa-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(246, 185, 26, 0.17) 151px 152px, transparent 153px 208px, rgba(215, 25, 32, 0.14) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(215, 25, 32, 0.052) 1px, transparent 1px),
    linear-gradient(180deg, rgba(246, 185, 26, 0.06) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-noshpa-page .noshpa-formula-system::after {
  right: 12%;
  bottom: 18%;
  width: min(64%, 620px);
  background: radial-gradient(ellipse at center, rgba(246, 185, 26, 0.2), transparent 68%);
}

.product-noshpa-page .noshpa-formula-line {
  stroke: rgba(168, 15, 23, 0.66);
  stroke-width: 2.55;
  filter: drop-shadow(0 0 9px rgba(215, 25, 32, 0.18));
  animation: none;
}

.product-noshpa-page .noshpa-formula-dot {
  fill: var(--product-citrus);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(215, 25, 32, 0.3));
  animation: none;
}

.product-noshpa-page .noshpa-formula-core {
  top: 50%;
  width: min(58vw, 600px);
  height: 430px;
}

.product-noshpa-page .noshpa-formula-pack::after {
  right: 12%;
  bottom: 18%;
  left: 12%;
  height: 20px;
  background: rgba(34, 23, 9, 0.13);
}

.product-noshpa-page .noshpa-formula-product {
  left: 50%;
  bottom: 25%;
  z-index: 3;
  width: min(94%, 560px);
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 24px rgba(34, 23, 9, 0.16));
}

.product-noshpa-page .noshpa-formula-point {
  width: 230px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
}

.product-noshpa-page .noshpa-formula-point::before {
  border-color: rgba(215, 25, 32, 0.24);
}

.product-noshpa-page .noshpa-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-citrus), transparent);
  box-shadow: 0 0 10px rgba(215, 25, 32, 0.2);
}

.noshpa-formula-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 62px;
  margin-bottom: 0.82rem;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--product-accent), #111111);
  box-shadow: 0 16px 24px rgba(34, 23, 9, 0.12);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.product-noshpa-page .noshpa-formula-point--drotaverine {
  left: -0.35rem;
}

.product-noshpa-page .noshpa-formula-point--spasm {
  right: -0.35rem;
}

.product-noshpa-page .noshpa-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-noshpa-page .noshpa-formula-point p {
  margin-top: 0.55rem;
}

.product-noshpa-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #fff6dc);
}

.product-noshpa-page .product-where-to-buy {
  background: #fff9e9;
}

.product-noshpa-forte-page .product-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(246, 185, 26, 0.2), transparent 31%),
    radial-gradient(circle at 58% 78%, rgba(215, 25, 32, 0.12), transparent 26%),
    linear-gradient(120deg, #ffffff 0%, #fff7dc 32%, #fff1ee 64%, #f6f9ff 100%);
}

.product-noshpa-forte-page .product-hero::after {
  background: linear-gradient(135deg, rgba(246, 185, 26, 0.18), rgba(215, 25, 32, 0.14), rgba(17, 17, 17, 0.06));
}

.product-noshpa-forte-page .product-hero-image {
  --noshpa-forte-hero-shadow-opacity: 0.74;
  --noshpa-forte-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 360px;
  padding: 1rem;
  border-color: rgba(215, 25, 32, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 225, 0.95)),
    linear-gradient(90deg, rgba(215, 25, 32, 0.09), rgba(246, 185, 26, 0.1));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-noshpa-forte-page .product-hero-image::after {
  left: 13%;
  right: 13%;
  bottom: 2.05rem;
  height: 22px;
  background: rgba(34, 23, 9, 0.16);
  filter: blur(13px);
  opacity: var(--noshpa-forte-hero-shadow-opacity);
  transform: var(--noshpa-forte-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
}

.product-noshpa-forte-page .product-hero-image > .noshpa-forte-hero-packshot {
  width: min(100%, 560px);
  max-height: 285px;
  border-radius: 6px;
  object-fit: contain;
  backface-visibility: hidden;
  filter: none;
  transform: translate3d(0, var(--noshpa-forte-hero-float-y, 0px), 0);
  will-change: transform;
}

.product-noshpa-forte-page .product-hero-metric:first-child strong {
  color: var(--product-accent);
}

.product-noshpa-forte-page .product-hero-metric:nth-child(2) strong {
  color: #986b00;
}

.product-noshpa-forte-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-berry);
  font-size: 1.5rem;
}

.product-noshpa-forte-page .product-fact-card span {
  color: #ffffff;
  background: var(--product-accent);
}

.product-noshpa-forte-page .product-fact-card:nth-child(2) span {
  color: #8a6200;
  background: var(--product-citrus);
}

.product-noshpa-forte-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-noshpa-forte-page .product-fact-card:nth-child(4) span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #fff0ee, #ffffff);
}

.product-noshpa-forte-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 52%, rgba(246, 185, 26, 0.16), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(215, 25, 32, 0.12), transparent 18%),
    linear-gradient(180deg, #fff8e4 0%, #ffffff 100%);
}

.product-noshpa-forte-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-noshpa-forte-page .noshpa-forte-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-noshpa-forte-page .noshpa-forte-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(246, 185, 26, 0.17) 151px 152px, transparent 153px 208px, rgba(215, 25, 32, 0.14) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(215, 25, 32, 0.052) 1px, transparent 1px),
    linear-gradient(180deg, rgba(246, 185, 26, 0.06) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-noshpa-forte-page .noshpa-forte-formula-system::after {
  right: 12%;
  bottom: 18%;
  width: min(64%, 620px);
  background: radial-gradient(ellipse at center, rgba(246, 185, 26, 0.2), transparent 68%);
}

.product-noshpa-forte-page .noshpa-forte-formula-line {
  stroke: rgba(168, 15, 23, 0.66);
  stroke-width: 2.55;
  filter: drop-shadow(0 0 9px rgba(215, 25, 32, 0.18));
  animation: none;
}

.product-noshpa-forte-page .noshpa-forte-formula-dot {
  fill: var(--product-citrus);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(215, 25, 32, 0.3));
  animation: none;
}

.product-noshpa-forte-page .noshpa-forte-formula-core {
  top: 50%;
  width: min(58vw, 620px);
  height: 430px;
}

.product-noshpa-forte-page .noshpa-forte-formula-pack::after {
  right: 12%;
  bottom: 18%;
  left: 12%;
  height: 20px;
  background: rgba(34, 23, 9, 0.13);
}

.product-noshpa-forte-page .noshpa-forte-formula-product {
  left: 50%;
  bottom: 26%;
  z-index: 3;
  width: min(74%, 480px);
  max-width: 480px;
  max-height: 260px;
  border-radius: 6px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 24px rgba(34, 23, 9, 0.16));
}

.product-noshpa-forte-page .noshpa-forte-formula-point {
  width: 230px;
  min-height: 205px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
  animation: none;
  transform: translate(var(--point-x), var(--noshpa-forte-formula-card-y, 0px));
  will-change: transform;
}

.product-noshpa-forte-page .noshpa-forte-formula-point::before {
  border-color: rgba(215, 25, 32, 0.24);
}

.product-noshpa-forte-page .noshpa-forte-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-citrus), transparent);
  box-shadow: 0 0 10px rgba(215, 25, 32, 0.2);
}

.noshpa-forte-formula-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 62px;
  margin-bottom: 0.82rem;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--product-accent), #111111);
  box-shadow: 0 16px 24px rgba(34, 23, 9, 0.12);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.product-noshpa-forte-page .noshpa-forte-formula-point--drotaverine {
  right: auto;
  top: 0.8rem;
  bottom: auto;
  left: -0.35rem;
}

.product-noshpa-forte-page .noshpa-forte-formula-point--spasm {
  top: 0.8rem;
  right: -0.35rem;
  left: auto;
  bottom: auto;
}

.product-noshpa-forte-page .noshpa-forte-formula-point--format {
  --point-x: -50%;
  right: auto;
  bottom: -1.15rem;
  left: 52%;
}

.product-noshpa-forte-page .noshpa-forte-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-noshpa-forte-page .noshpa-forte-formula-point p {
  margin-top: 0.55rem;
}

.product-noshpa-forte-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #fff6dc);
}

.product-noshpa-forte-page .product-where-to-buy {
  background: #fff9e9;
}

.product-gecsikon-page {
  --product-accent: #005ea8;
  --product-accent-rgb: 0, 94, 168;
  --product-accent-strong: #003d79;
  --product-citrus: #b4c91c;
  --product-citrus-soft: #f4f9d6;
  --product-berry: #0a7ec2;
}

.product-gecsikon-page .product-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(10, 126, 194, 0.16), transparent 31%),
    radial-gradient(circle at 62% 78%, rgba(180, 201, 28, 0.14), transparent 28%),
    linear-gradient(120deg, #ffffff 0%, #f2f9ff 34%, #f8fbec 68%, #ffffff 100%);
}

.product-gecsikon-page .product-hero::after {
  background: linear-gradient(135deg, rgba(0, 94, 168, 0.12), rgba(180, 201, 28, 0.13), rgba(10, 126, 194, 0.08));
}

.product-gecsikon-page .product-hero-image {
  --gecsikon-hero-shadow-opacity: 0.72;
  --gecsikon-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 360px;
  padding: 1rem;
  border-color: rgba(0, 94, 168, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 255, 0.95)),
    linear-gradient(90deg, rgba(0, 94, 168, 0.08), rgba(180, 201, 28, 0.09));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-gecsikon-page .product-hero-image::after {
  left: 13%;
  right: 13%;
  bottom: 2.05rem;
  height: 22px;
  background: rgba(0, 61, 121, 0.14);
  filter: blur(13px);
  opacity: var(--gecsikon-hero-shadow-opacity);
  transform: var(--gecsikon-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
}

.product-gecsikon-page .product-hero-image > .gecsikon-hero-packshot {
  width: min(100%, 560px);
  max-height: 292px;
  object-fit: contain;
  backface-visibility: hidden;
  filter: none;
  transform: translate3d(0, var(--gecsikon-hero-float-y, 0px), 0);
  will-change: transform;
}

.product-gecsikon-page .product-button--primary {
  background: linear-gradient(135deg, var(--product-accent), var(--product-berry));
  box-shadow: 0 16px 34px rgba(0, 94, 168, 0.2);
}

.product-gecsikon-page .product-button--primary:hover {
  box-shadow: 0 20px 42px rgba(0, 94, 168, 0.25);
}

.product-gecsikon-page .product-button--secondary {
  color: var(--product-accent-strong);
  border-color: rgba(0, 94, 168, 0.36);
}

.product-gecsikon-page .product-button--secondary:hover {
  color: #ffffff;
  background: var(--product-accent);
}

.product-gecsikon-page .product-hero-metric:first-child strong,
.product-gecsikon-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-accent);
}

.product-gecsikon-page .product-hero-metric:nth-child(2) strong {
  color: #7d8e00;
}

.product-gecsikon-page .product-fact-card span {
  color: #ffffff;
  background: var(--product-accent);
}

.product-gecsikon-page .product-fact-card:nth-child(2) span {
  color: #4c5700;
  background: var(--product-citrus);
}

.product-gecsikon-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-gecsikon-page .product-fact-card:nth-child(4) span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #eef8ff, #ffffff);
}

.product-gecsikon-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 52%, rgba(10, 126, 194, 0.13), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(180, 201, 28, 0.14), transparent 18%),
    linear-gradient(180deg, #f3faff 0%, #ffffff 100%);
}

.product-gecsikon-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-gecsikon-page .gecsikon-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-gecsikon-page .gecsikon-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(0, 94, 168, 0.13) 151px 152px, transparent 153px 208px, rgba(180, 201, 28, 0.15) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(0, 94, 168, 0.048) 1px, transparent 1px),
    linear-gradient(180deg, rgba(180, 201, 28, 0.055) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-gecsikon-page .gecsikon-formula-system::after {
  right: 12%;
  bottom: 18%;
  width: min(64%, 620px);
  background: radial-gradient(ellipse at center, rgba(10, 126, 194, 0.16), transparent 68%);
}

.product-gecsikon-page .gecsikon-formula-line {
  stroke: rgba(0, 94, 168, 0.68);
  stroke-width: 2.55;
  filter: drop-shadow(0 0 9px rgba(0, 94, 168, 0.17));
  animation: none;
}

.product-gecsikon-page .gecsikon-formula-dot {
  fill: var(--product-citrus);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(0, 94, 168, 0.26));
  animation: none;
}

.product-gecsikon-page .gecsikon-formula-core {
  top: 50%;
  width: min(58vw, 620px);
  height: 430px;
}

.product-gecsikon-page .gecsikon-formula-pack::after {
  right: 12%;
  bottom: 18%;
  left: 12%;
  height: 20px;
  background: rgba(0, 61, 121, 0.12);
}

.product-gecsikon-page .gecsikon-formula-product {
  left: 50%;
  bottom: 25%;
  z-index: 3;
  width: min(74%, 480px);
  max-width: 480px;
  max-height: 260px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 24px rgba(0, 61, 121, 0.14));
}

.product-gecsikon-page .gecsikon-formula-point {
  width: 230px;
  min-height: 205px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
  animation: none;
  transform: translate(var(--point-x), var(--gecsikon-formula-card-y, 0px));
  will-change: transform;
}

.product-gecsikon-page .gecsikon-formula-point::before {
  border-color: rgba(0, 94, 168, 0.24);
}

.product-gecsikon-page .gecsikon-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-citrus), transparent);
  box-shadow: 0 0 10px rgba(0, 94, 168, 0.2);
}

.gecsikon-formula-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 62px;
  margin-bottom: 0.82rem;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--product-accent), var(--product-berry));
  box-shadow: 0 16px 24px rgba(0, 61, 121, 0.12);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.product-gecsikon-page .gecsikon-formula-point--chlorhexidine {
  right: auto;
  top: 1.6rem;
  bottom: auto;
  left: -0.35rem;
}

.product-gecsikon-page .gecsikon-formula-point--local {
  top: 1.6rem;
  right: -0.35rem;
  left: auto;
  bottom: auto;
}

.product-gecsikon-page .gecsikon-formula-point--format {
  --point-x: -50%;
  right: auto;
  bottom: -1.15rem;
  left: 52%;
}

.product-gecsikon-page .gecsikon-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-gecsikon-page .gecsikon-formula-point p {
  margin-top: 0.55rem;
}

.product-gecsikon-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #f5fbe1);
}

.product-gecsikon-page .product-where-to-buy {
  background: #f4faff;
}

.product-terginan-page {
  --product-accent: #1f9be2;
  --product-accent-rgb: 31, 155, 226;
  --product-accent-strong: #0b6da8;
  --product-citrus: #c9dff4;
  --product-citrus-soft: #eef7ff;
  --product-berry: #2a2b33;
}

.product-terginan-page .product-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(31, 155, 226, 0.2), transparent 31%),
    radial-gradient(circle at 62% 78%, rgba(42, 43, 51, 0.1), transparent 28%),
    linear-gradient(120deg, #ffffff 0%, #f0f8ff 34%, #f2f3f7 68%, #ffffff 100%);
}

.product-terginan-page .product-hero::after {
  background: linear-gradient(135deg, rgba(31, 155, 226, 0.16), rgba(42, 43, 51, 0.08), rgba(201, 223, 244, 0.14));
}

.product-terginan-page .product-hero-image {
  --terginan-hero-shadow-opacity: 0.74;
  --terginan-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 360px;
  padding: 1rem;
  border-color: rgba(31, 155, 226, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 255, 0.95)),
    linear-gradient(90deg, rgba(31, 155, 226, 0.08), rgba(42, 43, 51, 0.05));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-terginan-page .product-hero-image::after {
  left: 13%;
  right: 13%;
  bottom: 2.05rem;
  height: 22px;
  background: rgba(42, 43, 51, 0.14);
  filter: blur(13px);
  opacity: var(--terginan-hero-shadow-opacity);
  transform: var(--terginan-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
}

.product-terginan-page .product-hero-image > .terginan-hero-packshot {
  width: min(100%, 560px);
  max-height: 292px;
  object-fit: contain;
  backface-visibility: hidden;
  filter: none;
  transform: translate3d(0, var(--terginan-hero-float-y, 0px), 0);
  will-change: transform;
}

.product-terginan-page .product-button--primary {
  background: linear-gradient(135deg, var(--product-accent), var(--product-accent-strong));
  box-shadow: 0 16px 34px rgba(31, 155, 226, 0.2);
}

.product-terginan-page .product-button--primary:hover {
  box-shadow: 0 20px 42px rgba(31, 155, 226, 0.25);
}

.product-terginan-page .product-button--secondary {
  color: var(--product-accent-strong);
  border-color: rgba(31, 155, 226, 0.34);
}

.product-terginan-page .product-button--secondary:hover {
  color: #ffffff;
  background: var(--product-accent);
}

.product-terginan-page .product-hero-metric:first-child strong,
.product-terginan-page .product-hero-metric:nth-child(2) strong {
  color: var(--product-accent);
}

.product-terginan-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-berry);
  font-size: 1.5rem;
}

.product-terginan-page .product-fact-card span {
  color: #ffffff;
  background: var(--product-accent);
}

.product-terginan-page .product-fact-card:nth-child(2) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-terginan-page .product-fact-card:nth-child(3) span {
  color: var(--product-accent-strong);
  background: var(--product-citrus);
}

.product-terginan-page .product-fact-card:nth-child(4) span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #eef7ff, #ffffff);
}

.product-terginan-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 52%, rgba(31, 155, 226, 0.13), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(42, 43, 51, 0.08), transparent 18%),
    linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
}

.product-terginan-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-terginan-page .terginan-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-terginan-page .terginan-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(31, 155, 226, 0.14) 151px 152px, transparent 153px 208px, rgba(42, 43, 51, 0.1) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(31, 155, 226, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(42, 43, 51, 0.04) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-terginan-page .terginan-formula-system::after {
  right: 12%;
  bottom: 18%;
  width: min(64%, 620px);
  background: radial-gradient(ellipse at center, rgba(31, 155, 226, 0.16), transparent 68%);
}

.product-terginan-page .terginan-formula-line {
  stroke: rgba(11, 109, 168, 0.68);
  stroke-width: 2.55;
  filter: drop-shadow(0 0 9px rgba(31, 155, 226, 0.17));
  animation: none;
}

.product-terginan-page .terginan-formula-dot {
  fill: var(--product-accent);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(31, 155, 226, 0.22));
  animation: none;
  opacity: 0;
}

.product-terginan-page .terginan-formula-core {
  top: 50%;
  width: min(58vw, 620px);
  height: 430px;
}

.product-terginan-page .terginan-formula-pack::after {
  right: 12%;
  bottom: 18%;
  left: 12%;
  height: 20px;
  background: rgba(42, 43, 51, 0.12);
}

.product-terginan-page .terginan-formula-product {
  left: 50%;
  bottom: 25%;
  z-index: 3;
  width: min(74%, 480px);
  max-width: 480px;
  max-height: 260px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 24px rgba(42, 43, 51, 0.14));
}

.product-terginan-page .terginan-formula-point {
  width: 230px;
  min-height: 205px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
  animation: none;
  transform: translate(var(--point-x), var(--terginan-formula-card-y, 0px));
  will-change: transform;
}

.product-terginan-page .terginan-formula-point::before {
  border-color: rgba(31, 155, 226, 0.24);
}

.product-terginan-page .terginan-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-citrus), transparent);
  box-shadow: 0 0 10px rgba(31, 155, 226, 0.2);
}

.terginan-formula-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 62px;
  margin-bottom: 0.82rem;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--product-accent), var(--product-berry));
  box-shadow: 0 16px 24px rgba(42, 43, 51, 0.12);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.product-terginan-page .terginan-formula-point--components {
  right: auto;
  top: 1.6rem;
  bottom: auto;
  left: -0.35rem;
}

.product-terginan-page .terginan-formula-point--local {
  top: 1.6rem;
  right: -0.35rem;
  left: auto;
  bottom: auto;
}

.product-terginan-page .terginan-formula-point--format {
  --point-x: -50%;
  right: auto;
  bottom: -1.15rem;
  left: 52%;
}

.product-terginan-page .terginan-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-terginan-page .terginan-formula-point p {
  margin-top: 0.55rem;
}

.product-terginan-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #eef7ff);
}

.product-terginan-page .product-where-to-buy {
  background: #eef7ff;
}

.product-klopidogrel-teva-page {
  --product-accent: #cf1730;
  --product-accent-rgb: 207, 23, 48;
  --product-accent-strong: #a50f25;
  --product-citrus: #8ec412;
  --product-citrus-soft: #f0f8d7;
  --product-berry: #004f68;
}

.product-klopidogrel-teva-page .product-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(207, 23, 48, 0.17), transparent 31%),
    radial-gradient(circle at 62% 78%, rgba(142, 196, 18, 0.14), transparent 28%),
    linear-gradient(120deg, #ffffff 0%, #fff3f4 34%, #f8fce9 68%, #f5fbff 100%);
}

.product-klopidogrel-teva-page .product-hero::after {
  background: linear-gradient(135deg, rgba(207, 23, 48, 0.13), rgba(142, 196, 18, 0.14), rgba(0, 79, 104, 0.08));
}

.product-klopidogrel-teva-page .product-hero-image {
  --klopidogrel-teva-hero-shadow-opacity: 0.74;
  --klopidogrel-teva-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 360px;
  padding: 1rem;
  border-color: rgba(207, 23, 48, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 246, 0.95)),
    linear-gradient(90deg, rgba(207, 23, 48, 0.08), rgba(142, 196, 18, 0.09));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-klopidogrel-teva-page .product-hero-image::after {
  left: 13%;
  right: 13%;
  bottom: 2.05rem;
  height: 22px;
  background: rgba(80, 9, 18, 0.15);
  filter: blur(13px);
  opacity: var(--klopidogrel-teva-hero-shadow-opacity);
  transform: var(--klopidogrel-teva-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
}

.product-klopidogrel-teva-page .product-hero-image > .klopidogrel-teva-hero-packshot {
  width: min(100%, 560px);
  max-height: 292px;
  object-fit: contain;
  backface-visibility: hidden;
  filter: none;
  transform: translate3d(0, var(--klopidogrel-teva-hero-float-y, 0px), 0);
  will-change: transform;
}

.product-klopidogrel-teva-page .product-button--primary {
  background: linear-gradient(135deg, var(--product-accent), #f25f6f);
  box-shadow: 0 16px 34px rgba(207, 23, 48, 0.2);
}

.product-klopidogrel-teva-page .product-button--primary:hover {
  box-shadow: 0 20px 42px rgba(207, 23, 48, 0.25);
}

.product-klopidogrel-teva-page .product-button--secondary {
  color: var(--product-accent-strong);
  border-color: rgba(207, 23, 48, 0.34);
}

.product-klopidogrel-teva-page .product-button--secondary:hover {
  color: #ffffff;
  background: var(--product-accent);
}

.product-klopidogrel-teva-page .product-hero-metric:first-child strong,
.product-klopidogrel-teva-page .product-hero-metric:nth-child(2) strong {
  color: var(--product-accent);
}

.product-klopidogrel-teva-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-berry);
  font-size: 1.5rem;
}

.product-klopidogrel-teva-page .product-fact-card span {
  color: #ffffff;
  background: var(--product-accent);
}

.product-klopidogrel-teva-page .product-fact-card:nth-child(2) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-klopidogrel-teva-page .product-fact-card:nth-child(3) span {
  color: #3f5700;
  background: var(--product-citrus);
}

.product-klopidogrel-teva-page .product-fact-card:nth-child(4) span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #fff0f2, #ffffff);
}

.product-klopidogrel-teva-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 52%, rgba(207, 23, 48, 0.12), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(142, 196, 18, 0.14), transparent 18%),
    linear-gradient(180deg, #fff5f6 0%, #ffffff 100%);
}

.product-klopidogrel-teva-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-klopidogrel-teva-page .klopidogrel-teva-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-klopidogrel-teva-page .klopidogrel-teva-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(207, 23, 48, 0.13) 151px 152px, transparent 153px 208px, rgba(142, 196, 18, 0.15) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(207, 23, 48, 0.048) 1px, transparent 1px),
    linear-gradient(180deg, rgba(142, 196, 18, 0.055) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-klopidogrel-teva-page .klopidogrel-teva-formula-system::after {
  right: 12%;
  bottom: 18%;
  width: min(64%, 620px);
  background: radial-gradient(ellipse at center, rgba(207, 23, 48, 0.14), transparent 68%);
}

.product-klopidogrel-teva-page .klopidogrel-teva-formula-line {
  stroke: rgba(165, 15, 37, 0.68);
  stroke-width: 2.55;
  filter: drop-shadow(0 0 9px rgba(207, 23, 48, 0.16));
  animation: none;
}

.product-klopidogrel-teva-page .klopidogrel-teva-formula-dot {
  fill: var(--product-citrus);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(207, 23, 48, 0.24));
  animation: none;
  opacity: 0;
}

.product-klopidogrel-teva-page .klopidogrel-teva-formula-core {
  top: 50%;
  width: min(58vw, 620px);
  height: 430px;
}

.product-klopidogrel-teva-page .klopidogrel-teva-formula-pack::after {
  right: 12%;
  bottom: 18%;
  left: 12%;
  height: 20px;
  background: rgba(80, 9, 18, 0.12);
}

.product-klopidogrel-teva-page .klopidogrel-teva-formula-product {
  left: 50%;
  bottom: 25%;
  z-index: 3;
  width: min(74%, 480px);
  max-width: 480px;
  max-height: 260px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 24px rgba(80, 9, 18, 0.14));
}

.product-klopidogrel-teva-page .klopidogrel-teva-formula-point {
  width: 230px;
  min-height: 205px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
  animation: none;
  transform: translate(var(--point-x), var(--klopidogrel-teva-formula-card-y, 0px));
  will-change: transform;
}

.product-klopidogrel-teva-page .klopidogrel-teva-formula-point::before {
  border-color: rgba(207, 23, 48, 0.22);
}

.product-klopidogrel-teva-page .klopidogrel-teva-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-citrus), transparent);
  box-shadow: 0 0 10px rgba(207, 23, 48, 0.2);
}

.klopidogrel-teva-formula-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 62px;
  margin-bottom: 0.82rem;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--product-accent), var(--product-berry));
  box-shadow: 0 16px 24px rgba(80, 9, 18, 0.12);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.product-klopidogrel-teva-page .klopidogrel-teva-formula-point--component {
  right: auto;
  top: 1.6rem;
  bottom: auto;
  left: -0.35rem;
}

.product-klopidogrel-teva-page .klopidogrel-teva-formula-point--dose {
  top: 1.6rem;
  right: -0.35rem;
  left: auto;
  bottom: auto;
}

.product-klopidogrel-teva-page .klopidogrel-teva-formula-point--format {
  --point-x: -50%;
  right: auto;
  bottom: -1.15rem;
  left: 52%;
}

.product-klopidogrel-teva-page .klopidogrel-teva-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-klopidogrel-teva-page .klopidogrel-teva-formula-point p {
  margin-top: 0.55rem;
}

.product-klopidogrel-teva-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #f8fbe5);
}

.product-klopidogrel-teva-page .product-where-to-buy {
  background: #fff6f7;
}

.product-meloksikam-page {
  --product-accent: #174f96;
  --product-accent-rgb: 23, 79, 150;
  --product-accent-strong: #0e3568;
  --product-accent-strong-rgb: 14, 53, 104;
  --product-accent-soft: #eaf3ff;
  --product-citrus: #58b6d8;
  --product-citrus-soft: #e9f8fd;
  --product-berry: #b2172d;
  --product-blue-dark: #102f5f;
  --product-ink: #172841;
  --product-muted: #566276;
}

.product-meloksikam-page .product-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(23, 79, 150, 0.17), transparent 31%),
    radial-gradient(circle at 62% 78%, rgba(88, 182, 216, 0.14), transparent 28%),
    linear-gradient(120deg, #ffffff 0%, #eef6ff 36%, #f4fbff 70%, #fff7f8 100%);
}

.product-meloksikam-page .product-hero::after {
  background: linear-gradient(135deg, rgba(23, 79, 150, 0.13), rgba(88, 182, 216, 0.14), rgba(178, 23, 45, 0.08));
}

.product-meloksikam-page .product-hero-image {
  min-height: 360px;
  padding: 1rem;
  border-color: rgba(23, 79, 150, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.95)),
    linear-gradient(90deg, rgba(23, 79, 150, 0.08), rgba(88, 182, 216, 0.09));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-meloksikam-page .product-hero-image::after {
  left: 13%;
  right: 13%;
  bottom: 2.05rem;
  height: 22px;
  background: rgba(14, 53, 104, 0.15);
  filter: blur(13px);
}

.product-meloksikam-page .product-hero-image > .meloksikam-hero-packshot {
  width: min(100%, 560px);
  max-height: 292px;
  object-fit: contain;
  filter: none;
}

.product-meloksikam-page .product-button--primary {
  background: linear-gradient(135deg, var(--product-accent), #2479c2);
  box-shadow: 0 16px 34px rgba(23, 79, 150, 0.2);
}

.product-meloksikam-page .product-button--primary:hover {
  box-shadow: 0 20px 42px rgba(23, 79, 150, 0.25);
}

.product-meloksikam-page .product-button--secondary {
  color: var(--product-accent-strong);
  border-color: rgba(23, 79, 150, 0.34);
}

.product-meloksikam-page .product-button--secondary:hover {
  color: #ffffff;
  background: var(--product-accent);
}

.product-meloksikam-page .product-hero-metric:first-child strong,
.product-meloksikam-page .product-hero-metric:nth-child(2) strong {
  color: var(--product-accent);
}

.product-meloksikam-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-berry);
  font-size: 1.5rem;
}

.product-meloksikam-page .product-fact-card span {
  color: #ffffff;
  background: var(--product-accent);
}

.product-meloksikam-page .product-fact-card:nth-child(2) span {
  color: #ffffff;
  background: #2479c2;
}

.product-meloksikam-page .product-fact-card:nth-child(3) span {
  color: #0e3568;
  background: var(--product-citrus);
}

.product-meloksikam-page .product-fact-card:nth-child(4) span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #eaf3ff, #ffffff);
}

.product-meloksikam-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 52%, rgba(23, 79, 150, 0.12), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(88, 182, 216, 0.14), transparent 18%),
    linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
}

.product-meloksikam-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-meloksikam-page .meloksikam-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-meloksikam-page .meloksikam-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(23, 79, 150, 0.13) 151px 152px, transparent 153px 208px, rgba(88, 182, 216, 0.15) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(23, 79, 150, 0.048) 1px, transparent 1px),
    linear-gradient(180deg, rgba(88, 182, 216, 0.055) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-meloksikam-page .meloksikam-formula-system::after {
  right: 12%;
  bottom: 18%;
  width: min(64%, 620px);
  background: radial-gradient(ellipse at center, rgba(23, 79, 150, 0.14), transparent 68%);
}

.product-meloksikam-page .meloksikam-formula-line {
  stroke: rgba(14, 53, 104, 0.68);
  stroke-width: 2.55;
  filter: drop-shadow(0 0 9px rgba(23, 79, 150, 0.16));
  animation: none;
}

.product-meloksikam-page .meloksikam-formula-dot {
  fill: var(--product-citrus);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(23, 79, 150, 0.24));
  animation: none;
  opacity: 0;
}

.product-meloksikam-page .meloksikam-formula-core {
  top: 50%;
  width: min(58vw, 620px);
  height: 430px;
}

.product-meloksikam-page .meloksikam-formula-pack::after {
  right: 12%;
  bottom: 18%;
  left: 12%;
  height: 20px;
  background: rgba(14, 53, 104, 0.12);
}

.product-meloksikam-page .meloksikam-formula-product {
  left: 50%;
  bottom: 25%;
  z-index: 3;
  width: min(74%, 480px);
  max-width: 480px;
  max-height: 260px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 24px rgba(14, 53, 104, 0.14));
}

.product-meloksikam-page .meloksikam-formula-point {
  width: 230px;
  min-height: 205px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
  animation: none;
  transform: translate(var(--point-x), var(--meloksikam-formula-card-y, 0px));
  will-change: transform;
}

.product-meloksikam-page .meloksikam-formula-point::before {
  border-color: rgba(23, 79, 150, 0.22);
}

.product-meloksikam-page .meloksikam-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-citrus), transparent);
  box-shadow: 0 0 10px rgba(23, 79, 150, 0.2);
}

.meloksikam-formula-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 62px;
  margin-bottom: 0.82rem;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--product-accent), #2479c2);
  box-shadow: 0 16px 24px rgba(14, 53, 104, 0.12);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.product-meloksikam-page .meloksikam-formula-point--component {
  right: auto;
  top: 1.6rem;
  bottom: auto;
  left: -0.35rem;
}

.product-meloksikam-page .meloksikam-formula-point--dose {
  top: 1.6rem;
  right: -0.35rem;
  left: auto;
  bottom: auto;
}

.product-meloksikam-page .meloksikam-formula-point--format {
  --point-x: -50%;
  right: auto;
  bottom: -1.15rem;
  left: 52%;
}

.product-meloksikam-page .meloksikam-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-meloksikam-page .meloksikam-formula-point p {
  margin-top: 0.55rem;
}

.product-meloksikam-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #eef7ff);
}

.product-meloksikam-page .product-where-to-buy {
  background: #eef6ff;
}

.product-kamistad-baby-page {
  --product-accent: #d50058;
  --product-accent-rgb: 213, 0, 88;
  --product-accent-strong: #a90046;
  --product-accent-strong-rgb: 169, 0, 70;
  --product-accent-soft: #fff0f6;
  --product-citrus: #ffd23f;
  --product-citrus-soft: #fff7d7;
  --product-berry: #005bb9;
  --product-blue-dark: #073b75;
  --product-ink: #172841;
  --product-muted: #566276;
}

.product-kamistad-baby-page .product-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 91, 185, 0.16), transparent 31%),
    radial-gradient(circle at 15% 78%, rgba(255, 210, 63, 0.22), transparent 27%),
    radial-gradient(circle at 62% 72%, rgba(213, 0, 88, 0.12), transparent 28%),
    linear-gradient(120deg, #ffffff 0%, #fff3f8 34%, #eef6ff 72%, #fff9dc 100%);
}

.product-kamistad-baby-page .product-hero::after {
  background: linear-gradient(135deg, rgba(213, 0, 88, 0.12), rgba(0, 91, 185, 0.12), rgba(255, 210, 63, 0.14));
}

.product-kamistad-baby-page .product-hero-image {
  min-height: 360px;
  padding: 1rem;
  border-color: rgba(213, 0, 88, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 243, 248, 0.95)),
    linear-gradient(90deg, rgba(213, 0, 88, 0.08), rgba(0, 91, 185, 0.08));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-kamistad-baby-page .product-hero-image::after {
  left: 13%;
  right: 13%;
  bottom: 2.05rem;
  height: 22px;
  background: rgba(7, 59, 117, 0.14);
  filter: blur(13px);
}

.product-kamistad-baby-page .product-hero-image > .kamistad-baby-hero-packshot {
  width: min(100%, 600px);
  max-height: 292px;
  object-fit: contain;
  filter: none;
}

.product-kamistad-baby-page .product-button--primary {
  background: linear-gradient(135deg, var(--product-accent), #ec407a);
  box-shadow: 0 16px 34px rgba(213, 0, 88, 0.2);
}

.product-kamistad-baby-page .product-button--primary:hover {
  box-shadow: 0 20px 42px rgba(213, 0, 88, 0.25);
}

.product-kamistad-baby-page .product-button--secondary {
  color: var(--product-accent-strong);
  border-color: rgba(213, 0, 88, 0.34);
}

.product-kamistad-baby-page .product-button--secondary:hover {
  color: #ffffff;
  background: var(--product-accent);
}

.product-kamistad-baby-page .product-hero-metric:first-child strong,
.product-kamistad-baby-page .product-hero-metric:nth-child(2) strong {
  color: var(--product-accent);
}

.product-kamistad-baby-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-berry);
  font-size: 1.5rem;
}

.product-kamistad-baby-page .product-fact-card span {
  color: #ffffff;
  background: var(--product-accent);
}

.product-kamistad-baby-page .product-fact-card:nth-child(2) span {
  color: #12314f;
  background: var(--product-citrus);
}

.product-kamistad-baby-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-kamistad-baby-page .product-fact-card:nth-child(4) span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #fff0f6, #ffffff);
}

.product-kamistad-baby-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 52%, rgba(213, 0, 88, 0.1), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(0, 91, 185, 0.13), transparent 18%),
    radial-gradient(circle at 24% 72%, rgba(255, 210, 63, 0.18), transparent 20%),
    linear-gradient(180deg, #fff3f8 0%, #ffffff 100%);
}

.product-kamistad-baby-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-kamistad-baby-page .kamistad-baby-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-kamistad-baby-page .kamistad-baby-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(213, 0, 88, 0.12) 151px 152px, transparent 153px 208px, rgba(0, 91, 185, 0.14) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(213, 0, 88, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 91, 185, 0.05) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-kamistad-baby-page .kamistad-baby-formula-system::after {
  right: 12%;
  bottom: 18%;
  width: min(64%, 620px);
  background: radial-gradient(ellipse at center, rgba(213, 0, 88, 0.12), transparent 68%);
}

.product-kamistad-baby-page .kamistad-baby-formula-line {
  stroke: rgba(169, 0, 70, 0.64);
  stroke-width: 2.55;
  filter: drop-shadow(0 0 9px rgba(213, 0, 88, 0.15));
  animation: none;
}

.product-kamistad-baby-page .kamistad-baby-formula-dot {
  fill: var(--product-citrus);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(213, 0, 88, 0.24));
  animation: none;
  opacity: 0;
}

.product-kamistad-baby-page .kamistad-baby-formula-core {
  top: 50%;
  width: min(60vw, 650px);
  height: 430px;
}

.product-kamistad-baby-page .kamistad-baby-formula-pack::after {
  right: 12%;
  bottom: 18%;
  left: 12%;
  height: 20px;
  background: rgba(7, 59, 117, 0.12);
}

.product-kamistad-baby-page .kamistad-baby-formula-product {
  left: 50%;
  bottom: 25%;
  z-index: 3;
  width: min(78%, 520px);
  max-width: 520px;
  max-height: 260px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 24px rgba(7, 59, 117, 0.14));
}

.product-kamistad-baby-page .kamistad-baby-formula-point {
  width: 230px;
  min-height: 205px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
  animation: none;
  transform: translate(var(--point-x), var(--kamistad-baby-formula-card-y, 0px));
  will-change: transform;
}

.product-kamistad-baby-page .kamistad-baby-formula-point::before {
  border-color: rgba(213, 0, 88, 0.2);
}

.product-kamistad-baby-page .kamistad-baby-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-berry), transparent);
  box-shadow: 0 0 10px rgba(213, 0, 88, 0.2);
}

.kamistad-baby-formula-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 62px;
  margin-bottom: 0.82rem;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--product-accent), var(--product-berry));
  box-shadow: 0 16px 24px rgba(7, 59, 117, 0.12);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.product-kamistad-baby-page .kamistad-baby-formula-point--chamomile {
  right: auto;
  top: 1.6rem;
  bottom: auto;
  left: -0.35rem;
}

.product-kamistad-baby-page .kamistad-baby-formula-point--gel {
  top: 1.6rem;
  right: -0.35rem;
  left: auto;
  bottom: auto;
}

.product-kamistad-baby-page .kamistad-baby-formula-point--format {
  --point-x: -50%;
  right: auto;
  bottom: -1.15rem;
  left: 52%;
}

.product-kamistad-baby-page .kamistad-baby-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-kamistad-baby-page .kamistad-baby-formula-point p {
  margin-top: 0.55rem;
}

.product-kamistad-baby-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #fff6dc);
}

.product-kamistad-baby-page .product-where-to-buy {
  background: #fff3f8;
}

.product-psilo-balsam-page {
  --product-accent: #005bb9;
  --product-accent-rgb: 0, 91, 185;
  --product-accent-strong: #003f86;
  --product-accent-strong-rgb: 0, 63, 134;
  --product-accent-soft: #eaf4ff;
  --product-citrus: #ffba00;
  --product-citrus-soft: #fff4cf;
  --product-berry: #2a9958;
  --product-blue-dark: #073b75;
  --product-ink: #172841;
  --product-muted: #566276;
}

.product-psilo-balsam-page .product-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 91, 185, 0.17), transparent 31%),
    radial-gradient(circle at 72% 72%, rgba(42, 153, 88, 0.12), transparent 24%),
    radial-gradient(circle at 20% 78%, rgba(255, 186, 0, 0.18), transparent 28%),
    linear-gradient(120deg, #ffffff 0%, #edf7ff 42%, #f4fbff 72%, #fff8dc 100%);
}

.product-psilo-balsam-page .product-hero::after {
  background: linear-gradient(135deg, rgba(0, 91, 185, 0.13), rgba(42, 153, 88, 0.1), rgba(255, 186, 0, 0.14));
}

.product-psilo-balsam-page .product-hero-image {
  min-height: 360px;
  padding: 1rem;
  border-color: rgba(0, 91, 185, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(237, 247, 255, 0.95)),
    linear-gradient(90deg, rgba(0, 91, 185, 0.08), rgba(255, 186, 0, 0.08));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-psilo-balsam-page .product-hero-image::after {
  left: 13%;
  right: 13%;
  bottom: 2.05rem;
  height: 22px;
  background: rgba(7, 59, 117, 0.14);
  filter: blur(13px);
}

.product-psilo-balsam-page .product-hero-image > .psilo-balsam-hero-packshot {
  width: min(100%, 600px);
  max-height: 292px;
  object-fit: contain;
  filter: none;
}

.product-psilo-balsam-page .product-button--primary {
  background: linear-gradient(135deg, var(--product-accent), #1d83d4);
  box-shadow: 0 16px 34px rgba(0, 91, 185, 0.2);
}

.product-psilo-balsam-page .product-button--primary:hover {
  box-shadow: 0 20px 42px rgba(0, 91, 185, 0.25);
}

.product-psilo-balsam-page .product-button--secondary {
  color: var(--product-accent-strong);
  border-color: rgba(0, 91, 185, 0.34);
}

.product-psilo-balsam-page .product-button--secondary:hover {
  color: #ffffff;
  background: var(--product-accent);
}

.product-psilo-balsam-page .product-hero-metric:first-child strong,
.product-psilo-balsam-page .product-hero-metric:nth-child(2) strong {
  color: var(--product-accent);
}

.product-psilo-balsam-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-berry);
  font-size: 1.5rem;
}

.product-psilo-balsam-page .product-fact-card span {
  color: #ffffff;
  background: var(--product-accent);
}

.product-psilo-balsam-page .product-fact-card:nth-child(2) span {
  color: #12314f;
  background: var(--product-citrus);
}

.product-psilo-balsam-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-psilo-balsam-page .product-fact-card:nth-child(4) span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #eaf4ff, #ffffff);
}

.product-psilo-balsam-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 52%, rgba(0, 91, 185, 0.11), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(42, 153, 88, 0.12), transparent 18%),
    radial-gradient(circle at 24% 72%, rgba(255, 186, 0, 0.16), transparent 20%),
    linear-gradient(180deg, #edf7ff 0%, #ffffff 100%);
}

.product-psilo-balsam-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-psilo-balsam-page .psilo-balsam-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-psilo-balsam-page .psilo-balsam-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(0, 91, 185, 0.12) 151px 152px, transparent 153px 208px, rgba(42, 153, 88, 0.14) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(0, 91, 185, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(42, 153, 88, 0.05) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-psilo-balsam-page .psilo-balsam-formula-system::after {
  right: 12%;
  bottom: 18%;
  width: min(64%, 620px);
  background: radial-gradient(ellipse at center, rgba(0, 91, 185, 0.13), transparent 68%);
}

.product-psilo-balsam-page .psilo-balsam-formula-line {
  stroke: rgba(0, 63, 134, 0.66);
  stroke-width: 2.55;
  filter: drop-shadow(0 0 9px rgba(0, 91, 185, 0.16));
  animation: none;
}

.product-psilo-balsam-page .psilo-balsam-formula-dot {
  fill: var(--product-citrus);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(0, 91, 185, 0.24));
  animation: none;
  opacity: 0;
}

.product-psilo-balsam-page .psilo-balsam-formula-core {
  top: 50%;
  width: min(60vw, 650px);
  height: 430px;
}

.product-psilo-balsam-page .psilo-balsam-formula-pack::after {
  right: 12%;
  bottom: 18%;
  left: 12%;
  height: 20px;
  background: rgba(7, 59, 117, 0.12);
}

.product-psilo-balsam-page .psilo-balsam-formula-product {
  left: 50%;
  bottom: 25%;
  z-index: 3;
  width: min(78%, 520px);
  max-width: 520px;
  max-height: 260px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 24px rgba(7, 59, 117, 0.14));
}

.product-psilo-balsam-page .psilo-balsam-formula-point {
  width: 230px;
  min-height: 205px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
  animation: none;
  transform: translate(var(--point-x), var(--psilo-balsam-formula-card-y, 0px));
  will-change: transform;
}

.product-psilo-balsam-page .psilo-balsam-formula-point::before {
  border-color: rgba(0, 91, 185, 0.2);
}

.product-psilo-balsam-page .psilo-balsam-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-berry), transparent);
  box-shadow: 0 0 10px rgba(0, 91, 185, 0.2);
}

.psilo-balsam-formula-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 62px;
  margin-bottom: 0.82rem;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--product-accent), #1d83d4);
  box-shadow: 0 16px 24px rgba(7, 59, 117, 0.12);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.product-psilo-balsam-page .psilo-balsam-formula-point--component {
  right: auto;
  top: 1.6rem;
  bottom: auto;
  left: -0.35rem;
}

.product-psilo-balsam-page .psilo-balsam-formula-point--dose {
  top: 1.6rem;
  right: -0.35rem;
  left: auto;
  bottom: auto;
}

.product-psilo-balsam-page .psilo-balsam-formula-point--format {
  --point-x: -50%;
  right: auto;
  bottom: -1.15rem;
  left: 52%;
}

.product-psilo-balsam-page .psilo-balsam-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-psilo-balsam-page .psilo-balsam-formula-point p {
  margin-top: 0.55rem;
}

.product-psilo-balsam-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #eef8ff);
}

.product-psilo-balsam-page .product-where-to-buy {
  background: #eef8ff;
}

.product-lizobakt-page {
  --product-accent: #f28a00;
  --product-accent-rgb: 242, 138, 0;
  --product-accent-strong: #cf5b00;
  --product-citrus: #ffd23c;
  --product-citrus-soft: #fff6d5;
  --product-berry: #0052a6;
}

.product-lizobakt-page .product-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 138, 0, 0.2), transparent 31%),
    radial-gradient(circle at 62% 78%, rgba(0, 82, 166, 0.14), transparent 28%),
    linear-gradient(120deg, #ffffff 0%, #fff4de 34%, #f1f7ff 68%, #fffdf8 100%);
}

.product-lizobakt-page .product-hero::after {
  background: linear-gradient(135deg, rgba(242, 138, 0, 0.16), rgba(0, 82, 166, 0.12), rgba(219, 25, 47, 0.1));
}

.product-lizobakt-page .product-hero-image {
  --lizobakt-hero-shadow-opacity: 0.74;
  --lizobakt-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 360px;
  padding: 1rem;
  border-color: rgba(242, 138, 0, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 222, 0.95)),
    linear-gradient(90deg, rgba(242, 138, 0, 0.08), rgba(0, 82, 166, 0.08));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-lizobakt-page .product-hero-image::after {
  left: 13%;
  right: 13%;
  bottom: 2.05rem;
  height: 22px;
  background: rgba(98, 50, 0, 0.14);
  filter: blur(13px);
  opacity: var(--lizobakt-hero-shadow-opacity);
  transform: var(--lizobakt-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
}

.product-lizobakt-page .product-hero-image > .lizobakt-hero-packshot {
  width: min(100%, 560px);
  max-height: 292px;
  object-fit: contain;
  backface-visibility: hidden;
  filter: none;
  transform: translate3d(0, var(--lizobakt-hero-float-y, 0px), 0);
  will-change: transform;
}

.product-lizobakt-page .product-button--primary {
  background: linear-gradient(135deg, var(--product-accent), #db192f);
  box-shadow: 0 16px 34px rgba(242, 138, 0, 0.2);
}

.product-lizobakt-page .product-button--primary:hover {
  box-shadow: 0 20px 42px rgba(242, 138, 0, 0.25);
}

.product-lizobakt-page .product-button--secondary {
  color: var(--product-berry);
  border-color: rgba(0, 82, 166, 0.34);
}

.product-lizobakt-page .product-button--secondary:hover {
  color: #ffffff;
  background: var(--product-berry);
}

.product-lizobakt-page .product-hero-metric:first-child strong,
.product-lizobakt-page .product-hero-metric:nth-child(2) strong {
  color: var(--product-accent);
}

.product-lizobakt-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-berry);
}

.product-lizobakt-page .product-fact-card span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-lizobakt-page .product-fact-card:nth-child(2) span {
  color: #ffffff;
  background: #db192f;
}

.product-lizobakt-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-accent);
}

.product-lizobakt-page .product-fact-card:nth-child(4) span {
  color: #7b4300;
  background: var(--product-citrus);
}

.product-lizobakt-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 52%, rgba(242, 138, 0, 0.13), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(0, 82, 166, 0.12), transparent 18%),
    linear-gradient(180deg, #fff6df 0%, #ffffff 100%);
}

.product-lizobakt-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-lizobakt-page .lizobakt-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-lizobakt-page .lizobakt-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(242, 138, 0, 0.14) 151px 152px, transparent 153px 208px, rgba(0, 82, 166, 0.13) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(242, 138, 0, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 82, 166, 0.048) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-lizobakt-page .lizobakt-formula-system::after {
  right: 12%;
  bottom: 18%;
  width: min(64%, 620px);
  background: radial-gradient(ellipse at center, rgba(242, 138, 0, 0.16), transparent 68%);
}

.product-lizobakt-page .lizobakt-formula-line {
  stroke: rgba(207, 91, 0, 0.68);
  stroke-width: 2.55;
  filter: drop-shadow(0 0 9px rgba(242, 138, 0, 0.17));
  animation: none;
}

.product-lizobakt-page .lizobakt-formula-dot {
  fill: var(--product-berry);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(0, 82, 166, 0.22));
  animation: none;
  opacity: 0;
}

.product-lizobakt-page .lizobakt-formula-core {
  top: 50%;
  width: min(58vw, 620px);
  height: 430px;
}

.product-lizobakt-page .lizobakt-formula-pack::after {
  right: 12%;
  bottom: 18%;
  left: 12%;
  height: 20px;
  background: rgba(98, 50, 0, 0.12);
}

.product-lizobakt-page .lizobakt-formula-product {
  left: 50%;
  bottom: 25%;
  z-index: 3;
  width: min(74%, 480px);
  max-width: 480px;
  max-height: 260px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 24px rgba(98, 50, 0, 0.14));
}

.product-lizobakt-page .lizobakt-formula-point {
  width: 230px;
  min-height: 205px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
  animation: none;
  transform: translate(var(--point-x), var(--lizobakt-formula-card-y, 0px));
  will-change: transform;
}

.product-lizobakt-page .lizobakt-formula-point::before {
  border-color: rgba(242, 138, 0, 0.24);
}

.product-lizobakt-page .lizobakt-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-berry), transparent);
  box-shadow: 0 0 10px rgba(242, 138, 0, 0.2);
}

.lizobakt-formula-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 62px;
  margin-bottom: 0.82rem;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--product-berry), #db192f);
  box-shadow: 0 16px 24px rgba(98, 50, 0, 0.12);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.product-lizobakt-page .lizobakt-formula-point--lysozyme {
  right: auto;
  top: 1.6rem;
  bottom: auto;
  left: -0.35rem;
}

.product-lizobakt-page .lizobakt-formula-point--pyridoxine {
  top: 1.6rem;
  right: -0.35rem;
  left: auto;
  bottom: auto;
}

.product-lizobakt-page .lizobakt-formula-point--format {
  --point-x: -50%;
  right: auto;
  bottom: -1.15rem;
  left: 52%;
}

.product-lizobakt-page .lizobakt-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-lizobakt-page .lizobakt-formula-point p {
  margin-top: 0.55rem;
}

.product-lizobakt-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #fff5dc);
}

.product-lizobakt-page .product-where-to-buy {
  background: #fff8e8;
}

.product-faringosept-page {
  --product-accent: #0b6f2a;
  --product-accent-rgb: 11, 111, 42;
  --product-accent-strong: #064a1d;
  --product-citrus: #ffd43d;
  --product-citrus-soft: #fff8d8;
  --product-berry: #082d70;
}

.product-faringosept-page .product-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(11, 111, 42, 0.2), transparent 31%),
    radial-gradient(circle at 62% 78%, rgba(8, 45, 112, 0.12), transparent 28%),
    linear-gradient(120deg, #ffffff 0%, #eff9f1 36%, #f6fbff 70%, #fffdf4 100%);
}

.product-faringosept-page .product-hero::after {
  background: linear-gradient(135deg, rgba(11, 111, 42, 0.16), rgba(8, 45, 112, 0.1), rgba(255, 212, 61, 0.12));
}

.product-faringosept-page .product-hero-image {
  --faringosept-hero-shadow-opacity: 0.74;
  --faringosept-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 360px;
  padding: 1rem;
  border-color: rgba(11, 111, 42, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 241, 0.95)),
    linear-gradient(90deg, rgba(11, 111, 42, 0.08), rgba(8, 45, 112, 0.07));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-faringosept-page .product-hero-image::after {
  left: 13%;
  right: 13%;
  bottom: 2.05rem;
  height: 22px;
  background: rgba(6, 74, 29, 0.15);
  filter: blur(13px);
  opacity: var(--faringosept-hero-shadow-opacity);
  transform: var(--faringosept-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
}

.product-faringosept-page .product-hero-image > .faringosept-hero-packshot {
  width: min(100%, 560px);
  max-height: 292px;
  object-fit: contain;
  backface-visibility: hidden;
  filter: none;
  transform: translate3d(0, var(--faringosept-hero-float-y, 0px), 0);
  will-change: transform;
}

.product-faringosept-page .product-button--primary {
  background: linear-gradient(135deg, var(--product-accent), #16924b);
  box-shadow: 0 16px 34px rgba(11, 111, 42, 0.2);
}

.product-faringosept-page .product-button--primary:hover {
  box-shadow: 0 20px 42px rgba(11, 111, 42, 0.25);
}

.product-faringosept-page .product-button--secondary {
  color: var(--product-berry);
  border-color: rgba(8, 45, 112, 0.34);
}

.product-faringosept-page .product-button--secondary:hover {
  color: #ffffff;
  background: var(--product-berry);
}

.product-faringosept-page .product-hero-metric:first-child strong,
.product-faringosept-page .product-hero-metric:nth-child(2) strong {
  color: var(--product-accent);
}

.product-faringosept-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-berry);
  font-size: 1.42rem;
}

.product-faringosept-page .product-fact-card span {
  color: #ffffff;
  background: var(--product-accent);
}

.product-faringosept-page .product-fact-card:nth-child(2) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-faringosept-page .product-fact-card:nth-child(3) span {
  color: #4b4200;
  background: var(--product-citrus);
}

.product-faringosept-page .product-fact-card:nth-child(4) span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #eff9f1, #ffffff);
}

.product-faringosept-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 52%, rgba(11, 111, 42, 0.13), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(8, 45, 112, 0.1), transparent 18%),
    linear-gradient(180deg, #f0f9f1 0%, #ffffff 100%);
}

.product-faringosept-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-faringosept-page .faringosept-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-faringosept-page .faringosept-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(11, 111, 42, 0.14) 151px 152px, transparent 153px 208px, rgba(8, 45, 112, 0.11) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(11, 111, 42, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 45, 112, 0.045) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-faringosept-page .faringosept-formula-system::after {
  right: 12%;
  bottom: 18%;
  width: min(64%, 620px);
  background: radial-gradient(ellipse at center, rgba(11, 111, 42, 0.16), transparent 68%);
}

.product-faringosept-page .faringosept-formula-line {
  stroke: rgba(6, 74, 29, 0.68);
  stroke-width: 2.55;
  filter: drop-shadow(0 0 9px rgba(11, 111, 42, 0.17));
  animation: none;
}

.product-faringosept-page .faringosept-formula-dot {
  fill: var(--product-citrus);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(11, 111, 42, 0.22));
  animation: none;
  opacity: 0;
}

.product-faringosept-page .faringosept-formula-core {
  top: 50%;
  width: min(58vw, 620px);
  height: 430px;
}

.product-faringosept-page .faringosept-formula-pack::after {
  right: 12%;
  bottom: 18%;
  left: 12%;
  height: 20px;
  background: rgba(6, 74, 29, 0.12);
}

.product-faringosept-page .faringosept-formula-product {
  left: 50%;
  bottom: 25%;
  z-index: 3;
  width: min(74%, 480px);
  max-width: 480px;
  max-height: 260px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 24px rgba(6, 74, 29, 0.14));
}

.product-faringosept-page .faringosept-formula-point {
  width: 230px;
  min-height: 205px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
  animation: none;
  transform: translate(var(--point-x), var(--faringosept-formula-card-y, 0px));
  will-change: transform;
}

.product-faringosept-page .faringosept-formula-point::before {
  border-color: rgba(11, 111, 42, 0.24);
}

.product-faringosept-page .faringosept-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-citrus), transparent);
  box-shadow: 0 0 10px rgba(11, 111, 42, 0.2);
}

.faringosept-formula-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 62px;
  margin-bottom: 0.82rem;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--product-accent), var(--product-berry));
  box-shadow: 0 16px 24px rgba(6, 74, 29, 0.12);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.product-faringosept-page .faringosept-formula-point--ambazone {
  right: auto;
  top: 1.6rem;
  bottom: auto;
  left: -0.35rem;
}

.product-faringosept-page .faringosept-formula-point--mint {
  top: 1.6rem;
  right: -0.35rem;
  left: auto;
  bottom: auto;
}

.product-faringosept-page .faringosept-formula-point--format {
  --point-x: -50%;
  right: auto;
  bottom: -1.15rem;
  left: 52%;
}

.product-faringosept-page .faringosept-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-faringosept-page .faringosept-formula-point p {
  margin-top: 0.55rem;
}

.product-faringosept-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #f1f9e7);
}

.product-faringosept-page .product-where-to-buy {
  background: #f1f9e7;
}

.product-essentiale-page .product-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(244, 163, 0, 0.18), transparent 30%),
    radial-gradient(circle at 58% 78%, rgba(47, 125, 79, 0.1), transparent 26%),
    linear-gradient(120deg, #ffffff 0%, #fff8df 34%, #f5fbf3 68%, #f7f9ff 100%);
}

.product-essentiale-page .product-hero::after {
  background: linear-gradient(135deg, rgba(255, 211, 77, 0.18), rgba(244, 163, 0, 0.13), rgba(47, 125, 79, 0.08));
}

.product-essentiale-page .product-hero-image {
  --essentiale-hero-shadow-opacity: 0.72;
  --essentiale-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 360px;
  padding: 1rem;
  border-color: rgba(196, 107, 0, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 221, 0.94)),
    linear-gradient(90deg, rgba(244, 163, 0, 0.08), rgba(47, 125, 79, 0.07));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-essentiale-page .product-hero-image::after {
  left: 24%;
  right: 24%;
  bottom: 2rem;
  height: 22px;
  background: rgba(82, 48, 5, 0.14);
  filter: blur(13px);
  opacity: var(--essentiale-hero-shadow-opacity);
  transform: var(--essentiale-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
  animation: essentialeHeroShadow 9.5s ease-in-out infinite;
}

.product-essentiale-page .product-hero-image > .essentiale-hero-packshot {
  width: auto;
  max-height: 330px;
  object-fit: contain;
  backface-visibility: hidden;
  filter: drop-shadow(0 18px 22px rgba(82, 48, 5, 0.08));
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: essentialeHeroFloat 9.5s ease-in-out infinite;
}

.product-essentiale-page .product-hero-metric:first-child strong {
  color: var(--product-accent-strong);
}

.product-essentiale-page .product-hero-metric:nth-child(2) strong {
  color: var(--product-berry);
}

.product-essentiale-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-accent-strong);
  font-size: 1.45rem;
}

.product-essentiale-page .product-fact-card span {
  color: #ffffff;
  background: var(--product-accent-strong);
}

.product-essentiale-page .product-fact-card:nth-child(2) span {
  color: #6c4300;
  background: var(--product-citrus);
}

.product-essentiale-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-essentiale-page .product-fact-card:nth-child(4) span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #fff6df, #ffffff);
}

.product-essentiale-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 52%, rgba(244, 163, 0, 0.15), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(47, 125, 79, 0.1), transparent 18%),
    linear-gradient(180deg, #fff8df 0%, #ffffff 100%);
}

.product-essentiale-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-essentiale-page .essentiale-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-essentiale-page .essentiale-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 142px, rgba(244, 163, 0, 0.16) 143px 144px, transparent 145px 198px, rgba(47, 125, 79, 0.13) 199px 200px, transparent 201px),
    linear-gradient(90deg, rgba(244, 163, 0, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47, 125, 79, 0.052) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-essentiale-page .essentiale-formula-system::after {
  right: 14%;
  bottom: 18%;
  width: min(58%, 560px);
  background: radial-gradient(ellipse at center, rgba(244, 163, 0, 0.18), transparent 68%);
}

.product-essentiale-page .essentiale-formula-line {
  stroke: rgba(196, 107, 0, 0.66);
  stroke-width: 2.55;
  filter: drop-shadow(0 0 9px rgba(244, 163, 0, 0.18));
  animation: none;
}

.product-essentiale-page .essentiale-formula-dot {
  fill: var(--product-berry);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(47, 125, 79, 0.28));
  animation: none;
}

.product-essentiale-page .essentiale-formula-core {
  top: 50%;
  width: min(46vw, 430px);
  height: 390px;
}

.product-essentiale-page .essentiale-formula-pack::after {
  right: 24%;
  bottom: 14%;
  left: 24%;
  height: 18px;
  background: rgba(82, 48, 5, 0.12);
}

.product-essentiale-page .essentiale-formula-product {
  left: 50%;
  bottom: 18%;
  z-index: 3;
  width: auto;
  height: auto;
  max-width: 270px;
  max-height: 320px;
  transform: translateX(-50%);
  filter: drop-shadow(0 22px 22px rgba(82, 48, 5, 0.14));
}

.product-essentiale-page .essentiale-formula-point {
  width: 230px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
}

.product-essentiale-page .essentiale-formula-point::before {
  border-color: rgba(196, 107, 0, 0.22);
}

.product-essentiale-page .essentiale-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-berry), transparent);
  box-shadow: 0 0 10px rgba(244, 163, 0, 0.2);
}

.essentiale-formula-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 62px;
  margin-bottom: 0.82rem;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--product-accent-strong), var(--product-berry));
  box-shadow: 0 16px 24px rgba(82, 48, 5, 0.12);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.product-essentiale-page .essentiale-formula-point--phospholipids {
  left: -0.35rem;
}

.product-essentiale-page .essentiale-formula-point--liver {
  right: -0.35rem;
}

.product-essentiale-page .essentiale-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-essentiale-page .essentiale-formula-point p {
  margin-top: 0.55rem;
}

.product-essentiale-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #fff6df);
}

.product-essentiale-page .product-where-to-buy {
  background: #fff9e9;
}

.product-nizoral-page {
  --product-accent: #f5c400;
  --product-accent-rgb: 245, 196, 0;
  --product-accent-strong: #d59a00;
  --product-citrus: #ffd94a;
  --product-citrus-soft: #fff8d5;
  --product-berry: #1e252c;
}

.product-nizoral-page .product-hero {
  background:
    radial-gradient(circle at 76% 18%, rgba(245, 196, 0, 0.28), transparent 30%),
    radial-gradient(circle at 54% 82%, rgba(30, 37, 44, 0.08), transparent 26%),
    linear-gradient(120deg, #ffffff 0%, #fffbe6 40%, #f7fbff 72%, #ffffff 100%);
}

.product-nizoral-page .product-hero::after {
  background: linear-gradient(135deg, rgba(245, 196, 0, 0.2), rgba(30, 37, 44, 0.08), rgba(0, 93, 185, 0.08));
}

.product-nizoral-page .product-hero-image {
  --nizoral-hero-shadow-opacity: 0.72;
  --nizoral-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 350px;
  padding: 1.25rem;
  border-color: rgba(213, 154, 0, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 231, 0.94)),
    linear-gradient(90deg, rgba(245, 196, 0, 0.1), rgba(30, 37, 44, 0.04));
  box-shadow: 0 28px 60px rgba(82, 48, 5, 0.13);
}

.product-nizoral-page .product-hero-image::after {
  left: 18%;
  right: 18%;
  bottom: 2.25rem;
  height: 22px;
  background: rgba(82, 48, 5, 0.16);
  filter: blur(14px);
  opacity: var(--nizoral-hero-shadow-opacity);
  transform: var(--nizoral-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
  animation: nizoralHeroShadow 9s ease-in-out infinite;
}

.product-nizoral-page .product-hero-image > .nizoral-hero-packshot {
  width: min(92%, 500px);
  max-height: 282px;
  object-fit: contain;
  backface-visibility: hidden;
  filter: drop-shadow(0 20px 22px rgba(82, 48, 5, 0.12));
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: nizoralHeroFloat 9s ease-in-out infinite;
}

.product-nizoral-page.nizoral-hero-paused .product-hero-image::after,
.product-nizoral-page.nizoral-hero-paused .product-hero-image > .nizoral-hero-packshot {
  animation-play-state: paused;
}

.product-nizoral-page .product-hero-metric:first-child strong,
.product-nizoral-page .product-hero-metric:nth-child(2) strong {
  color: var(--product-accent-strong);
}

.product-nizoral-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-berry);
  font-size: 1.45rem;
}

.product-nizoral-page .product-fact-card span {
  color: #1e252c;
  background: var(--product-citrus);
}

.product-nizoral-page .product-fact-card:nth-child(3) span,
.product-nizoral-page .product-fact-card:nth-child(4) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-nizoral-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 52%, rgba(245, 196, 0, 0.16), transparent 24%),
    radial-gradient(circle at 86% 24%, rgba(30, 37, 44, 0.08), transparent 18%),
    linear-gradient(180deg, #fff9df 0%, #ffffff 100%);
}

.product-nizoral-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-nizoral-page .nizoral-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-nizoral-page .nizoral-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 142px, rgba(245, 196, 0, 0.16) 143px 144px, transparent 145px 198px, rgba(30, 37, 44, 0.1) 199px 200px, transparent 201px),
    linear-gradient(90deg, rgba(245, 196, 0, 0.052) 1px, transparent 1px),
    linear-gradient(180deg, rgba(30, 37, 44, 0.045) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-nizoral-page .nizoral-formula-system::after {
  right: 12%;
  bottom: 18%;
  width: min(58%, 560px);
  background: radial-gradient(ellipse at center, rgba(245, 196, 0, 0.18), transparent 68%);
}

.product-nizoral-page .nizoral-formula-line {
  stroke: rgba(213, 154, 0, 0.68);
  stroke-width: 2.55;
  filter: drop-shadow(0 0 9px rgba(245, 196, 0, 0.18));
  animation: none;
}

.product-nizoral-page .nizoral-formula-dot {
  fill: var(--product-berry);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(30, 37, 44, 0.18));
  animation: none;
}

.product-nizoral-page .nizoral-formula-core {
  top: 50%;
  width: min(36vw, 340px);
  height: 315px;
}

.product-nizoral-page .nizoral-formula-pack::after {
  right: 16%;
  bottom: 16%;
  left: 16%;
  height: 17px;
  background: rgba(82, 48, 5, 0.13);
}

.product-nizoral-page .nizoral-formula-product {
  left: 50%;
  bottom: 25%;
  z-index: 3;
  width: auto;
  height: auto;
  max-width: 255px;
  max-height: 132px;
  transform: translateX(-50%);
  filter: drop-shadow(0 20px 20px rgba(82, 48, 5, 0.15));
}

.product-nizoral-page .nizoral-formula-point {
  width: 230px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
  animation: snupFormulaPointFloat 6.4s ease-in-out infinite;
}

.product-nizoral-page .nizoral-formula-point::before {
  border-color: rgba(213, 154, 0, 0.22);
}

.product-nizoral-page .nizoral-formula-point::after {
  bottom: -1px;
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-berry), transparent);
  box-shadow: 0 0 10px rgba(245, 196, 0, 0.2);
}

.nizoral-formula-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 62px;
  margin-bottom: 0.82rem;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: #1e252c;
  background: linear-gradient(135deg, #ffd94a, #f5c400);
  box-shadow: 0 16px 24px rgba(82, 48, 5, 0.12);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.product-nizoral-page .nizoral-formula-point--component {
  left: -0.35rem;
}

.product-nizoral-page .nizoral-formula-point--use {
  right: -0.35rem;
}

.product-nizoral-page .nizoral-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-nizoral-page .nizoral-formula-point p {
  margin-top: 0.55rem;
}

.product-nizoral-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #fff7d4);
}

.product-nizoral-page .product-where-to-buy {
  background: #fff9e9;
}

.catalog-card--nizoral-shampoo .catalog-card__media img {
  width: auto;
  max-width: min(86%, 310px);
  max-height: 255px;
}

.product-nizoral-shampoo-page .product-hero-image {
  min-height: 430px;
}

.product-nizoral-shampoo-page .product-hero-image > .nizoral-hero-packshot {
  width: min(82%, 420px);
  max-height: 380px;
}

.product-nizoral-shampoo-page .nizoral-formula-core {
  height: 390px;
}

.product-nizoral-shampoo-page .nizoral-formula-product {
  bottom: 16%;
  max-width: 310px;
  max-height: 320px;
}

.product-nizoral-shampoo-page .nizoral-formula-pack::after {
  bottom: 14%;
}

.product-aqualor-page .product-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(241, 221, 36, 0.2), transparent 30%),
    radial-gradient(circle at 58% 78%, rgba(0, 166, 200, 0.12), transparent 26%),
    linear-gradient(120deg, #ffffff 0%, #e9fbff 34%, #fffbd8 68%, #f5fbff 100%);
}

.product-aqualor-page .product-hero::after {
  background: linear-gradient(135deg, rgba(0, 166, 200, 0.16), rgba(241, 221, 36, 0.18), rgba(11, 96, 123, 0.08));
}

.product-aqualor-page .product-hero-image {
  --aqualor-hero-shadow-opacity: 0.72;
  --aqualor-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 360px;
  padding: 1rem;
  border-color: rgba(0, 121, 156, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 250, 255, 0.94)),
    linear-gradient(90deg, rgba(0, 166, 200, 0.08), rgba(241, 221, 36, 0.08));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-aqualor-page .product-hero-image::after {
  left: 24%;
  right: 24%;
  bottom: 2rem;
  height: 22px;
  background: rgba(5, 67, 86, 0.14);
  filter: blur(13px);
  opacity: var(--aqualor-hero-shadow-opacity);
  transform: var(--aqualor-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
  animation: aqualorHeroShadow 9.5s ease-in-out infinite;
}

.product-aqualor-page .product-hero-image > .aqualor-hero-packshot {
  width: auto;
  max-height: 335px;
  object-fit: contain;
  backface-visibility: hidden;
  filter: drop-shadow(0 18px 22px rgba(5, 67, 86, 0.08));
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: aqualorHeroFloat 9.5s ease-in-out infinite;
}

.product-aqualor-page .product-hero-metric:first-child strong {
  color: var(--product-accent-strong);
}

.product-aqualor-page .product-hero-metric:nth-child(2) strong {
  color: #9a8900;
}

.product-aqualor-page .product-hero-metric:nth-child(3) strong {
  color: var(--product-berry);
  font-size: 1.38rem;
}

.product-aqualor-page .product-fact-card span {
  color: #ffffff;
  background: var(--product-accent-strong);
}

.product-aqualor-page .product-fact-card:nth-child(2) span {
  color: #5d5400;
  background: var(--product-citrus);
}

.product-aqualor-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-aqualor-page .product-fact-card:nth-child(4) span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #e7faff, #ffffff);
}

.product-aqualor-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 52%, rgba(0, 166, 200, 0.14), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(241, 221, 36, 0.14), transparent 18%),
    linear-gradient(180deg, #e9fbff 0%, #ffffff 100%);
}

.product-aqualor-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-aqualor-page .aqualor-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-aqualor-page .aqualor-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 142px, rgba(0, 166, 200, 0.16) 143px 144px, transparent 145px 198px, rgba(241, 221, 36, 0.16) 199px 200px, transparent 201px),
    linear-gradient(90deg, rgba(0, 166, 200, 0.052) 1px, transparent 1px),
    linear-gradient(180deg, rgba(241, 221, 36, 0.06) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-aqualor-page .aqualor-formula-system::after {
  right: 14%;
  bottom: 18%;
  width: min(58%, 560px);
  background: radial-gradient(ellipse at center, rgba(0, 166, 200, 0.18), transparent 68%);
}

.product-aqualor-page .aqualor-formula-line {
  stroke: rgba(0, 121, 156, 0.66);
  stroke-width: 2.55;
  filter: drop-shadow(0 0 9px rgba(0, 166, 200, 0.18));
  animation: none;
}

.product-aqualor-page .aqualor-formula-dot {
  fill: var(--product-citrus);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(0, 166, 200, 0.28));
  animation: none;
}

.product-aqualor-page .aqualor-formula-core {
  top: 50%;
  width: min(46vw, 430px);
  height: 390px;
}

.product-aqualor-page .aqualor-formula-pack::after {
  right: 24%;
  bottom: 14%;
  left: 24%;
  height: 18px;
  background: rgba(5, 67, 86, 0.12);
}

.product-aqualor-page .aqualor-formula-product {
  left: 50%;
  bottom: 18%;
  z-index: 3;
  width: auto;
  height: auto;
  max-width: 250px;
  max-height: 320px;
  transform: translateX(-50%);
  filter: drop-shadow(0 22px 22px rgba(5, 67, 86, 0.14));
}

.product-aqualor-page .aqualor-formula-point {
  width: 230px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 46, 84, 0.08);
}

.product-aqualor-page .aqualor-formula-point::before {
  border-color: rgba(0, 121, 156, 0.22);
}

.product-aqualor-page .aqualor-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-citrus), transparent);
  box-shadow: 0 0 10px rgba(0, 166, 200, 0.2);
}

.aqualor-formula-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 62px;
  margin-bottom: 0.82rem;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--product-accent-strong), var(--product-berry));
  box-shadow: 0 16px 24px rgba(5, 67, 86, 0.12);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.product-aqualor-page .aqualor-formula-point--seawater {
  left: -0.35rem;
}

.product-aqualor-page .aqualor-formula-point--nose {
  right: -0.35rem;
}

.product-aqualor-page .aqualor-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-aqualor-page .aqualor-formula-point p {
  margin-top: 0.55rem;
}

.product-aqualor-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #e7faff);
}

.product-aqualor-page .product-where-to-buy {
  background: #effcff;
}

.product-related {
  background:
    radial-gradient(circle at 12% 20%, rgba(var(--product-accent-rgb), 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--product-accent-soft) 100%);
}

.product-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.product-related-card {
  position: relative;
  display: grid;
  grid-template-rows: 148px auto auto;
  min-height: 340px;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(var(--product-accent-rgb), 0.16);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(8, 46, 84, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-related-card:hover,
.product-related-card:focus-visible {
  border-color: rgba(var(--product-accent-rgb), 0.36);
  box-shadow: 0 24px 50px rgba(8, 46, 84, 0.12);
  transform: translateY(-4px);
}

.product-related-card:focus-visible {
  outline: 3px solid rgba(var(--product-accent-rgb), 0.25);
  outline-offset: 3px;
}

.product-related-card__tag {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 32px;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: var(--product-accent-strong);
  background: var(--product-accent-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-related-card img {
  align-self: center;
  justify-self: center;
  width: auto;
  max-width: min(82%, 150px);
  max-height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(5, 67, 86, 0.1));
  transition: transform 0.25s ease;
}

.product-related-card:hover img,
.product-related-card:focus-visible img {
  transform: translateY(-3px) scale(1.03);
}

.product-related-card h3 {
  margin: 0.8rem 0 0;
  color: var(--product-blue-dark);
  font-size: 1.02rem;
  line-height: 1.25;
}

.product-related-card p {
  display: -webkit-box;
  margin: 0.55rem 0 0;
  overflow: hidden;
  color: var(--product-muted);
  font-size: 0.9rem;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.product-aqualor-forte-page .product-hero-image {
  --aqualor-hero-shadow-opacity: 0.68;
  min-height: 370px;
}

.product-aqualor-forte-page .product-hero-image::after {
  left: 18%;
  right: 18%;
  bottom: 1.85rem;
  height: 20px;
  opacity: var(--aqualor-hero-shadow-opacity);
}

.product-aqualor-forte-page .product-hero-image > .aqualor-forte-hero-packshot {
  max-width: min(92%, 365px);
  max-height: 345px;
  animation-duration: 10.5s;
}

.product-aqualor-forte-page.aqualor-forte-hero-paused .product-hero-image::after,
.product-aqualor-forte-page.aqualor-forte-hero-paused .product-hero-image > .aqualor-forte-hero-packshot {
  animation-play-state: paused;
}

.product-aqualor-forte-page .aqualor-formula-core {
  width: min(40vw, 385px);
  height: 350px;
}

.product-aqualor-forte-page .aqualor-formula-pack::after {
  right: 28%;
  left: 28%;
  bottom: 14%;
}

.product-aqualor-forte-page .aqualor-formula-product {
  bottom: 18%;
  max-width: 205px;
  max-height: 270px;
}

.product-aqualor-baby-page .product-hero-image {
  --aqualor-hero-shadow-opacity: 0.7;
  min-height: 370px;
}

.product-aqualor-baby-page .product-hero-image::after {
  left: 29%;
  right: 29%;
  bottom: 1.8rem;
  height: 20px;
  background: rgba(72, 37, 55, 0.13);
  opacity: var(--aqualor-hero-shadow-opacity);
}

.product-aqualor-baby-page .product-hero-image > .aqualor-baby-hero-packshot {
  max-width: min(82%, 270px);
  max-height: 345px;
  animation-duration: 10.5s;
}

.product-aqualor-baby-page.aqualor-baby-hero-paused .product-hero-image::after,
.product-aqualor-baby-page.aqualor-baby-hero-paused .product-hero-image > .aqualor-baby-hero-packshot {
  animation-play-state: paused;
}

.product-aqualor-baby-page .product-fact-card:nth-child(2) span,
.product-aqualor-baby-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-aqualor-baby-page .aqualor-formula-line {
  stroke: rgba(217, 80, 130, 0.64);
}

.product-aqualor-baby-page .aqualor-formula-dot {
  fill: var(--product-citrus);
}

.product-aqualor-baby-page .aqualor-formula-core {
  width: min(35vw, 330px);
  height: 345px;
}

.product-aqualor-baby-page .aqualor-formula-pack::after {
  right: 31%;
  left: 31%;
  bottom: 15%;
  background: rgba(72, 37, 55, 0.12);
}

.product-aqualor-baby-page .aqualor-formula-product {
  bottom: 17%;
  max-width: 155px;
  max-height: 255px;
}

.product-aqualor-baby-page .aqualor-formula-point {
  z-index: 5;
  background: rgba(255, 255, 255, 0.97);
  animation: none;
}

.product-aqualor-baby-page .aqualor-formula-point::after {
  top: auto;
  bottom: -1px;
  background: linear-gradient(90deg, transparent, var(--product-citrus), var(--product-accent), transparent);
}

.product-aqualor-baby-page .aqualor-formula-point--seawater,
.product-aqualor-baby-page .aqualor-formula-point--nose {
  top: 0.8rem;
}

.product-aqualor-baby-page .aqualor-formula-point--format {
  bottom: 0.8rem;
}

.product-aqualor-gorlo-page .product-hero-image {
  --aqualor-hero-shadow-opacity: 0.68;
  min-height: 370px;
}

.product-aqualor-gorlo-page .product-hero-image::after {
  left: 31%;
  right: 31%;
  bottom: 1.8rem;
  height: 20px;
  background: rgba(72, 17, 45, 0.14);
  opacity: var(--aqualor-hero-shadow-opacity);
}

.product-aqualor-gorlo-page .product-hero-image > .aqualor-gorlo-hero-packshot {
  max-width: min(76%, 230px);
  max-height: 348px;
  animation-duration: 10.5s;
}

.product-aqualor-gorlo-page.aqualor-gorlo-hero-paused .product-hero-image::after,
.product-aqualor-gorlo-page.aqualor-gorlo-hero-paused .product-hero-image > .aqualor-gorlo-hero-packshot {
  animation-play-state: paused;
}

.product-aqualor-gorlo-page .product-fact-card:nth-child(2) span,
.product-aqualor-gorlo-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-aqualor-gorlo-page .aqualor-formula-line {
  stroke: rgba(230, 0, 90, 0.6);
}

.product-aqualor-gorlo-page .aqualor-formula-dot {
  fill: var(--product-citrus);
}

.product-aqualor-gorlo-page .aqualor-formula-core {
  width: min(33vw, 310px);
  height: 335px;
}

.product-aqualor-gorlo-page .aqualor-formula-pack::after {
  right: 32%;
  left: 32%;
  bottom: 15%;
  background: rgba(72, 17, 45, 0.12);
}

.product-aqualor-gorlo-page .aqualor-formula-product {
  bottom: 17%;
  max-width: 128px;
  max-height: 250px;
}

.product-aqualor-gorlo-page .aqualor-formula-point {
  z-index: 5;
  background: rgba(255, 255, 255, 0.97);
  animation: none;
}

.product-aqualor-gorlo-page .aqualor-formula-point::after {
  top: auto;
  bottom: -1px;
  background: linear-gradient(90deg, transparent, var(--product-citrus), var(--product-accent), transparent);
}

.product-aqualor-gorlo-page .aqualor-formula-point--seawater,
.product-aqualor-gorlo-page .aqualor-formula-point--nose {
  top: 0.8rem;
}

.product-aqualor-gorlo-page .aqualor-formula-point--format {
  bottom: 0.8rem;
}

.product-aqualor-soft-page .product-hero-image {
  --aqualor-hero-shadow-opacity: 0.7;
  min-height: 370px;
}

.product-aqualor-soft-page .product-hero-image::after {
  left: 30%;
  right: 30%;
  bottom: 1.8rem;
  height: 20px;
  background: rgba(0, 91, 118, 0.14);
  opacity: var(--aqualor-hero-shadow-opacity);
}

.product-aqualor-soft-page .product-hero-image > .aqualor-soft-hero-packshot {
  max-width: min(78%, 245px);
  max-height: 348px;
  animation-duration: 10.5s;
}

.product-aqualor-soft-page.aqualor-soft-hero-paused .product-hero-image::after,
.product-aqualor-soft-page.aqualor-soft-hero-paused .product-hero-image > .aqualor-soft-hero-packshot {
  animation-play-state: paused;
}

.product-aqualor-soft-page .product-fact-card:nth-child(2) span,
.product-aqualor-soft-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-aqualor-soft-page .aqualor-formula-line {
  stroke: rgba(0, 166, 200, 0.58);
}

.product-aqualor-soft-page .aqualor-formula-dot {
  fill: var(--product-citrus);
}

.product-aqualor-soft-page .aqualor-formula-core {
  width: min(34vw, 320px);
  height: 335px;
}

.product-aqualor-soft-page .aqualor-formula-pack::after {
  right: 31%;
  left: 31%;
  bottom: 15%;
  background: rgba(0, 91, 118, 0.12);
}

.product-aqualor-soft-page .aqualor-formula-product {
  bottom: 17%;
  max-width: 138px;
  max-height: 250px;
}

.product-aqualor-soft-page .aqualor-formula-point {
  z-index: 5;
  background: rgba(255, 255, 255, 0.97);
  animation: snupFormulaPointFloat 6.4s ease-in-out infinite;
}

.product-aqualor-soft-page .aqualor-formula-point::after {
  top: auto;
  bottom: -1px;
  background: linear-gradient(90deg, transparent, var(--product-citrus), var(--product-accent), transparent);
}

.product-aqualor-soft-page .aqualor-formula-point--seawater,
.product-aqualor-soft-page .aqualor-formula-point--nose {
  top: 0.8rem;
}

.product-aqualor-soft-page .aqualor-formula-point--format {
  bottom: 0.8rem;
}

.product-aqualor-soft-mini-page .product-hero-image {
  --aqualor-hero-shadow-opacity: 0.7;
  min-height: 370px;
}

.product-aqualor-soft-mini-page .product-hero-image::after {
  left: 30%;
  right: 30%;
  bottom: 1.8rem;
  height: 20px;
  background: rgba(0, 91, 118, 0.14);
  opacity: var(--aqualor-hero-shadow-opacity);
}

.product-aqualor-soft-mini-page .product-hero-image > .aqualor-soft-mini-hero-packshot {
  max-width: min(78%, 238px);
  max-height: 348px;
  animation-duration: 10.5s;
}

.product-aqualor-soft-mini-page.aqualor-soft-mini-hero-paused .product-hero-image::after,
.product-aqualor-soft-mini-page.aqualor-soft-mini-hero-paused .product-hero-image > .aqualor-soft-mini-hero-packshot {
  animation-play-state: paused;
}

.product-aqualor-soft-mini-page .product-fact-card:nth-child(2) span,
.product-aqualor-soft-mini-page .product-fact-card:nth-child(3) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-aqualor-soft-mini-page .aqualor-formula-line {
  stroke: rgba(0, 166, 200, 0.58);
}

.product-aqualor-soft-mini-page .aqualor-formula-dot {
  fill: var(--product-citrus);
}

.product-aqualor-soft-mini-page .aqualor-formula-core {
  width: min(34vw, 310px);
  height: 335px;
}

.product-aqualor-soft-mini-page .aqualor-formula-pack::after {
  right: 32%;
  left: 32%;
  bottom: 15%;
  background: rgba(0, 91, 118, 0.12);
}

.product-aqualor-soft-mini-page .aqualor-formula-product {
  bottom: 17%;
  max-width: 128px;
  max-height: 250px;
}

.product-aqualor-soft-mini-page .aqualor-formula-point {
  z-index: 5;
  background: rgba(255, 255, 255, 0.97);
  animation: snupFormulaPointFloat 6.4s ease-in-out infinite;
}

.product-aqualor-soft-mini-page .aqualor-formula-point::after {
  top: auto;
  bottom: -1px;
  background: linear-gradient(90deg, transparent, var(--product-citrus), var(--product-accent), transparent);
}

.product-aqualor-soft-mini-page .aqualor-formula-point--seawater,
.product-aqualor-soft-mini-page .aqualor-formula-point--nose {
  top: 0.8rem;
}

.product-aqualor-soft-mini-page .aqualor-formula-point--format {
  bottom: 0.8rem;
}

.product-magne-page .product-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(243, 196, 59, 0.18), transparent 30%),
    radial-gradient(circle at 58% 78%, rgba(0, 167, 165, 0.08), transparent 24%),
    linear-gradient(120deg, #ffffff 0%, #fff9de 32%, #f3efff 66%, #eef9fb 100%);
}

.product-magne-page .product-hero::after {
  background: linear-gradient(135deg, rgba(123, 97, 200, 0.12), rgba(243, 196, 59, 0.16), rgba(0, 167, 165, 0.06));
}

.product-magne-page .product-hero-image {
  --magne-hero-shadow-opacity: 0.78;
  --magne-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 335px;
  overflow: hidden;
  border-color: rgba(0, 93, 185, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 225, 0.96)),
    linear-gradient(90deg, rgba(123, 97, 200, 0.1), rgba(243, 196, 59, 0.08));
  box-shadow: 0 28px 60px rgba(8, 46, 84, 0.14);
}

.product-magne-page .product-hero-image::after {
  left: 24%;
  right: 24%;
  bottom: 2.2rem;
  height: 24px;
  background: rgba(47, 40, 104, 0.14);
  filter: blur(13px);
  opacity: var(--magne-hero-shadow-opacity);
  transform: var(--magne-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
  animation: magneHeroShadow 9.5s ease-in-out infinite;
}

.product-magne-page .product-hero-image > .magne-hero-packshot {
  width: auto;
  max-height: 320px;
  filter: none;
  backface-visibility: hidden;
  transform: translate3d(0, var(--magne-hero-float-y, 0px), 0);
  will-change: transform;
  animation: magneHeroFloat 9.5s ease-in-out infinite;
}

.product-magne-page.magne-hero-paused .product-hero-image > .magne-hero-packshot,
.product-magne-page.magne-hero-paused .product-hero-image::after {
  animation-play-state: paused;
}

.product-hero-nutrients--magne span {
  border-color: rgba(123, 97, 200, 0.18);
  color: var(--product-accent-strong);
  background: rgba(255, 255, 255, 0.92);
}

.product-hero-nutrients--magne span:nth-child(2),
.product-hero-nutrients--magne span:nth-child(4) {
  color: #7d6200;
  background: rgba(255, 247, 212, 0.94);
}

.product-magne-page .product-hero-metric:nth-child(2) strong {
  color: var(--product-accent-strong);
}

.product-magne-page .product-hero-metric:nth-child(3) strong {
  color: #7d6200;
}

.product-magne-page .product-fact-card span {
  color: var(--product-accent-strong);
  background: linear-gradient(135deg, #f0ebff, #ffffff);
}

.product-magne-page .product-fact-card:nth-child(2) span {
  color: #ffffff;
  background: var(--product-accent-strong);
}

.product-magne-page .product-fact-card:nth-child(3) span {
  color: #7d6200;
  background: var(--product-citrus);
}

.product-magne-page .product-fact-card:nth-child(4) span {
  color: #ffffff;
  background: var(--product-berry);
}

.product-magne-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 52%, rgba(123, 97, 200, 0.14), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(243, 196, 59, 0.14), transparent 18%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.product-magne-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-magne-page .magne-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-magne-page .magne-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(123, 97, 200, 0.18) 151px 152px, transparent 153px 208px, rgba(243, 196, 59, 0.16) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(123, 97, 200, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(243, 196, 59, 0.065) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-magne-page .magne-formula-system::after {
  right: 18%;
  bottom: 17%;
  background: radial-gradient(ellipse at center, rgba(123, 97, 200, 0.18), transparent 68%);
}

.product-magne-page .magne-formula-line {
  stroke: rgba(79, 62, 167, 0.58);
  stroke-width: 2.35;
  filter: drop-shadow(0 0 8px rgba(79, 62, 167, 0.18));
}

.product-magne-page .magne-formula-dot {
  fill: var(--product-citrus);
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(79, 62, 167, 0.32));
}

.product-magne-page .magne-formula-core {
  top: 43%;
  width: min(50vw, 500px);
  height: 460px;
}

.product-magne-page .magne-formula-pack::after {
  right: 23%;
  bottom: 13%;
  left: 23%;
  background: rgba(47, 40, 104, 0.14);
}

.product-magne-page .magne-formula-product {
  left: 50%;
  bottom: 16%;
  z-index: 3;
  width: min(48%, 235px);
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 24px rgba(47, 40, 104, 0.18));
}

.product-magne-page .magne-formula-point {
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 0 16px 34px rgba(47, 40, 104, 0.06);
}

.product-magne-page .magne-formula-point::before {
  border-color: rgba(123, 97, 200, 0.28);
}

.product-magne-page .magne-formula-point::after {
  background: linear-gradient(90deg, transparent, var(--product-accent), var(--product-citrus), transparent);
  box-shadow: 0 0 10px rgba(123, 97, 200, 0.24);
}

.product-magne-page .magne-formula-point img {
  max-width: 138px;
  height: 104px;
  margin-bottom: 0.7rem;
  padding: 0.1rem;
}

.product-magne-page .magne-formula-point--b6 img {
  max-width: 132px;
}

.product-magne-page .magne-formula-point--format img {
  max-width: 136px;
}

.product-magne-page .magne-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-magne-page .magne-formula-point p {
  margin-top: 0.55rem;
}

.product-magne-page .product-note {
  border-top-color: var(--product-accent);
  background: linear-gradient(135deg, #ffffff, #fff8dc);
}

.product-magne-page .product-where-to-buy {
  background: #f7f4ff;
}

.catalog-card--femilex .catalog-card__media {
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 205, 32, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(225, 0, 122, 0.1), rgba(255, 255, 255, 0.92));
}

.catalog-card--femilex .catalog-card__media img {
  width: min(92%, 360px);
  max-height: 220px;
  object-fit: contain;
}

.product-femilex-page .product-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(225, 0, 122, 0.14), transparent 30%),
    radial-gradient(circle at 58% 78%, rgba(255, 205, 32, 0.12), transparent 24%),
    linear-gradient(120deg, #ffffff 0%, #fff7fb 35%, #f4f6fb 68%, #fff9dc 100%);
}

.product-femilex-page .product-hero::after {
  background: linear-gradient(135deg, rgba(225, 0, 122, 0.12), rgba(255, 205, 32, 0.16), rgba(120, 130, 150, 0.08));
}

.product-femilex-page .product-hero-image {
  --femilex-hero-shadow-opacity: 0.78;
  --femilex-hero-shadow-transform: scale3d(1, 1, 1);
  min-height: 335px;
  overflow: hidden;
  border-color: rgba(225, 0, 122, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 251, 0.96)),
    linear-gradient(90deg, rgba(225, 0, 122, 0.08), rgba(255, 205, 32, 0.08));
  box-shadow: 0 28px 60px rgba(82, 36, 62, 0.14);
}

.product-femilex-page .product-hero-image::after {
  left: 18%;
  right: 18%;
  bottom: 2.25rem;
  height: 25px;
  background: rgba(83, 38, 58, 0.15);
  filter: blur(13px);
  opacity: var(--femilex-hero-shadow-opacity);
  transform: var(--femilex-hero-shadow-transform);
  transform-origin: center;
  will-change: opacity, transform;
}

.product-femilex-page .product-hero-image > .femilex-hero-packshot {
  width: auto;
  max-width: min(96%, 520px);
  max-height: 300px;
  filter: none;
  backface-visibility: hidden;
  transform: translate3d(0, var(--femilex-hero-float-y, 0px), 0);
  will-change: transform;
}

.product-femilex-page .product-button--primary {
  border-color: #e1007a;
  color: #ffffff;
  background: linear-gradient(135deg, #e1007a 0%, #f23b98 48%, #ff7ab8 100%);
  box-shadow: 0 16px 32px rgba(225, 0, 122, 0.22);
}

.product-femilex-page .product-button--primary:hover {
  border-color: #c9006e;
  color: #ffffff;
  background: linear-gradient(135deg, #c9006e 0%, #e1007a 52%, #ff5fab 100%);
  box-shadow: 0 20px 38px rgba(225, 0, 122, 0.3);
}

.product-femilex-page .product-button--secondary {
  border-color: rgba(225, 0, 122, 0.62);
  color: #c9006e;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 239, 248, 0.96));
}

.product-femilex-page .product-button--secondary:hover {
  border-color: #e1007a;
  color: #b10061;
  background: linear-gradient(135deg, #fff3fa 0%, #ffe2f0 100%);
  box-shadow: 0 16px 32px rgba(225, 0, 122, 0.16);
}

.product-femilex-page .product-hero-metric:first-child strong,
.product-femilex-page .product-hero-metric:nth-child(3) strong {
  color: #e1007a;
}

.product-femilex-page .product-hero-metric:nth-child(2) strong {
  color: #8a6100;
}

.product-femilex-page .product-fact-card span {
  color: #e1007a;
  background: linear-gradient(135deg, #ffe6f3, #ffffff);
}

.product-femilex-page .product-fact-card:nth-child(2) span {
  color: #ffffff;
  background: #e1007a;
}

.product-femilex-page .product-fact-card:nth-child(3) span {
  color: #765400;
  background: #ffd942;
}

.product-femilex-page .product-fact-card:nth-child(4) span {
  color: #ffffff;
  background: #727986;
}

.product-femilex-page .product-formula {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 52%, rgba(225, 0, 122, 0.12), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(255, 205, 32, 0.16), transparent 18%),
    linear-gradient(180deg, #fff7fb 0%, #ffffff 100%);
}

.product-femilex-page .product-formula .product-section-inner {
  width: min(1420px, 100%);
}

.product-femilex-page .femilex-formula-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(720px, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.product-femilex-page .femilex-formula-system::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 150px, rgba(225, 0, 122, 0.16) 151px 152px, transparent 153px 208px, rgba(255, 205, 32, 0.17) 209px 210px, transparent 211px),
    linear-gradient(90deg, rgba(225, 0, 122, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 205, 32, 0.06) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}

.product-femilex-page .femilex-formula-system::after {
  right: 18%;
  bottom: 15%;
  background: radial-gradient(ellipse at center, rgba(225, 0, 122, 0.16), transparent 68%);
}

.product-femilex-page .femilex-formula-line {
  stroke: rgba(225, 0, 122, 0.56);
  stroke-width: 2.35;
  filter: drop-shadow(0 0 8px rgba(225, 0, 122, 0.18));
}

.product-femilex-page .femilex-formula-dot {
  fill: #ffd942;
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(225, 0, 122, 0.28));
}

.product-femilex-page .femilex-formula-core {
  top: 43%;
  width: min(44vw, 460px);
  height: 430px;
}

.product-femilex-page .femilex-formula-pack::after {
  right: 25%;
  bottom: 15%;
  left: 25%;
  background: rgba(83, 38, 58, 0.14);
}

.product-femilex-page .femilex-formula-product {
  left: 50%;
  bottom: 25%;
  z-index: 3;
  width: min(58%, 270px);
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 22px 22px rgba(83, 38, 58, 0.16));
}

.product-femilex-page .femilex-formula-point {
  width: 260px;
  min-height: 220px;
  padding: 1.1rem 1.2rem 1.25rem;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(83, 38, 58, 0.06);
}

.product-femilex-page .femilex-formula-point::before {
  border-color: rgba(225, 0, 122, 0.24);
}

.product-femilex-page .femilex-formula-point::after {
  background: linear-gradient(90deg, transparent, #e1007a, #ffd942, transparent);
  box-shadow: 0 0 10px rgba(225, 0, 122, 0.22);
}

.product-femilex-page .femilex-formula-point--acid,
.product-femilex-page .femilex-formula-point--balance {
  top: 0.8rem;
  bottom: auto;
}

.product-femilex-page .femilex-formula-point--format {
  bottom: -2.2rem;
}

.femilex-formula-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #e1007a, #ffcf2f);
  box-shadow: 0 14px 28px rgba(225, 0, 122, 0.18);
}

.product-femilex-page .femilex-formula-point h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--product-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.product-femilex-page .femilex-formula-point p {
  margin-top: 0.55rem;
}

.product-femilex-page .product-note {
  border-top-color: #e1007a;
  background: linear-gradient(135deg, #ffffff, #fff4fa);
}

.product-femilex-page .product-where-to-buy {
  background: #fff4fa;
}

.product-snup-page .product-note {
  border-top-color: var(--product-citrus);
  background: linear-gradient(135deg, #ffffff, #fff4f6);
}

.product-detail-page .product-note {
  border-top-color: var(--stada-red);
  background: linear-gradient(135deg, #ffffff, #fff5f8);
}

.product-detail-page .product-note h3 {
  color: var(--stada-red);
}

.product-snup-page .product-where-to-buy {
  background: #f2f9fd;
}

.product-detail-page.vitrum-reveal-ready .vitrum-animate {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.product-detail-page.vitrum-reveal-ready .vitrum-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-detail-page.vitrum-reveal-ready .vitrum-stagger .vitrum-animate:nth-child(2) {
  transition-delay: 0.08s;
}

.product-detail-page.vitrum-reveal-ready .vitrum-stagger .vitrum-animate:nth-child(3) {
  transition-delay: 0.16s;
}

.product-detail-page.vitrum-reveal-ready .vitrum-stagger .vitrum-animate:nth-child(4) {
  transition-delay: 0.24s;
}

@keyframes vitrumProductFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes magneHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -7px, 0);
  }
}

@keyframes magneHeroShadow {
  0%,
  100% {
    opacity: 0.78;
    transform: scale3d(1, 1, 1);
  }

  50% {
    opacity: 0.64;
    transform: scale3d(0.94, 0.88, 1);
  }
}

@keyframes enterogerminaHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes enterogerminaHeroShadow {
  0%,
  100% {
    opacity: 0.76;
    transform: scale3d(1, 1, 1);
  }

  50% {
    opacity: 0.64;
    transform: scale3d(0.95, 0.9, 1);
  }
}

@keyframes enterogerminaCapsulesHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes enterogerminaCapsulesHeroShadow {
  0%,
  100% {
    opacity: 0.76;
    transform: scale3d(1, 1, 1);
  }

  50% {
    opacity: 0.64;
    transform: scale3d(0.95, 0.9, 1);
  }
}

@keyframes enterogerminaForteHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes enterogerminaForteHeroShadow {
  0%,
  100% {
    opacity: 0.72;
    transform: scale3d(1, 1, 1);
  }

  50% {
    opacity: 0.62;
    transform: scale3d(0.96, 0.92, 1);
  }
}

@keyframes sinulanHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes sinulanHeroShadow {
  0%,
  100% {
    opacity: 0.76;
    transform: scale3d(1, 1, 1);
  }

  50% {
    opacity: 0.64;
    transform: scale3d(0.95, 0.9, 1);
  }
}

@keyframes edarbiHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes edarbiHeroShadow {
  0%,
  100% {
    opacity: 0.76;
    transform: scale3d(1, 1, 1);
  }

  50% {
    opacity: 0.64;
    transform: scale3d(0.95, 0.9, 1);
  }
}

@keyframes cardiomagnilHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes cardiomagnilHeroShadow {
  0%,
  100% {
    opacity: 0.74;
    transform: scale3d(1, 1, 1);
  }

  50% {
    opacity: 0.64;
    transform: scale3d(0.96, 0.92, 1);
  }
}

@keyframes noshpaHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes noshpaHeroShadow {
  0%,
  100% {
    opacity: 0.74;
    transform: scale3d(1, 1, 1);
  }

  50% {
    opacity: 0.64;
    transform: scale3d(0.96, 0.92, 1);
  }
}

@keyframes essentialeHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes essentialeHeroShadow {
  0%,
  100% {
    opacity: 0.72;
    transform: scale3d(1, 1, 1);
  }

  50% {
    opacity: 0.62;
    transform: scale3d(0.96, 0.92, 1);
  }
}

@keyframes nizoralHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.6deg);
  }

  50% {
    transform: translate3d(0, -14px, 0) rotate(0.5deg);
  }
}

@keyframes nizoralHeroShadow {
  0%,
  100% {
    opacity: 0.72;
    transform: scale3d(1, 1, 1);
  }

  50% {
    opacity: 0.48;
    transform: scale3d(0.9, 0.78, 1);
  }
}

@keyframes aqualorHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes aqualorHeroShadow {
  0%,
  100% {
    opacity: 0.72;
    transform: scale3d(1, 1, 1);
  }

  50% {
    opacity: 0.62;
    transform: scale3d(0.96, 0.92, 1);
  }
}

@keyframes coldrexHeroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  12.5%,
  87.5% {
    transform: translate3d(0, -1px, 0);
  }
  25%,
  75% {
    transform: translate3d(0, -4px, 0);
  }
  37.5%,
  62.5% {
    transform: translate3d(0, -7px, 0);
  }
  50% {
    transform: translate3d(0, -9px, 0);
  }
}

@keyframes vitrumPhotoDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

@keyframes snupFormulaLevitate {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes snupFormulaPointFloat {
  0%,
  100% {
    transform: translate(var(--point-x), 0);
  }
  50% {
    transform: translate(var(--point-x), -10px);
  }
}

@keyframes snupConnectorPulse {
  0%,
  100% {
    opacity: 0.52;
  }
  50% {
    opacity: 0.95;
  }
}

@media (max-width: 980px) {
  .product-detail-page .product-hero {
    padding-top: 3rem;
  }

  .product-detail-page .product-hero-content,
  .product-formula-layout,
  .product-usage-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-page .product-hero-text h1 {
    font-size: 2.65rem;
  }

  .product-detail-page .product-hero-image {
    min-height: 350px;
  }

  .product-facts-grid,
  .product-detail-page .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-snup-page .snup-formula-layout,
  .product-vitrum-page .vitrum-formula-layout,
  .product-coldrex-page .coldrex-formula-layout,
  .product-enterogermina-page .enterogermina-formula-layout,
  .product-enterogermina-capsules-page .enterogermina-capsules-formula-layout,
  .product-enterogermina-forte-page .enterogermina-forte-formula-layout,
  .product-sinulan-page .sinulan-formula-layout,
  .product-edarbi-page .edarbi-formula-layout,
  .product-cardiomagnil-page .cardiomagnil-formula-layout,
  .product-noshpa-page .noshpa-formula-layout,
  .product-noshpa-forte-page .noshpa-forte-formula-layout,
  .product-gecsikon-page .gecsikon-formula-layout,
  .product-terginan-page .terginan-formula-layout,
  .product-klopidogrel-teva-page .klopidogrel-teva-formula-layout,
  .product-meloksikam-page .meloksikam-formula-layout,
  .product-kamistad-baby-page .kamistad-baby-formula-layout,
  .product-psilo-balsam-page .psilo-balsam-formula-layout,
  .product-lizobakt-page .lizobakt-formula-layout,
  .product-faringosept-page .faringosept-formula-layout,
  .product-essentiale-page .essentiale-formula-layout,
  .product-nizoral-page .nizoral-formula-layout,
  .product-aqualor-page .aqualor-formula-layout,
  .product-magne-page .magne-formula-layout,
  .product-femilex-page .femilex-formula-layout {
    grid-template-columns: 1fr;
  }

  .snup-formula-system {
    min-height: 620px;
  }
}

@media (max-width: 980px) {
  .product-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .product-detail-page .product-hero,
  .product-detail-section,
  .product-detail-page .product-where-to-buy {
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .product-detail-page .product-hero-content,
  .product-detail-page .product-section-inner,
  .product-detail-page .product-hero-text,
  .product-detail-page .product-hero-visual,
  .product-detail-page .product-hero-image,
  .product-detail-page .product-facts-grid,
  .product-detail-page .product-benefits-panel,
  .product-detail-page .usage-list,
  .product-detail-page .product-note {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .product-detail-page .product-hero-content,
  .product-detail-page .product-section-inner {
    width: calc(100vw - 1.7rem);
    max-width: calc(100vw - 1.7rem);
  }

  .product-detail-page .product-hero-text,
  .product-detail-page .product-section-header,
  .product-detail-page .product-fact-card,
  .product-detail-page .benefits-list li,
  .product-detail-page .usage-item,
  .product-detail-page .product-note {
    overflow-wrap: anywhere;
  }

  .product-detail-page .product-hero-text h1,
  .product-section-header h2,
  .product-benefits-panel h2 {
    font-size: 2rem;
    line-height: 1.14;
  }

  .product-detail-page .product-hero-text p {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .product-aqualor-forte-page .product-hero-text p,
  .product-aqualor-baby-page .product-hero-text p,
  .product-aqualor-gorlo-page .product-hero-text p,
  .product-aqualor-soft-page .product-hero-text p,
  .product-aqualor-soft-mini-page .product-hero-text p {
    max-width: min(100%, 33ch);
  }

  .product-hero-actions,
  .product-detail-page .benefits-list,
  .product-facts-grid,
  .product-detail-page .partners-grid,
  .product-hero-metrics {
    grid-template-columns: 1fr;
  }

  .product-hero-actions {
    display: grid;
  }

  .product-related-grid {
    grid-template-columns: 1fr;
  }

  .product-related-card {
    grid-template-rows: 132px auto auto;
    min-height: auto;
  }

  .product-related-card img {
    max-height: 124px;
  }

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

  .product-badges span {
    justify-content: center;
    min-width: 0;
    text-align: center;
  }

  .product-aqualor-baby-page .product-badges,
  .product-aqualor-gorlo-page .product-badges,
  .product-aqualor-soft-page .product-badges,
  .product-aqualor-soft-mini-page .product-badges {
    grid-template-columns: 1fr;
  }

  .product-magne-page .product-badges span:last-child {
    grid-column: 1 / -1;
  }

  .product-button {
    width: 100%;
  }

  .product-detail-page .product-hero-image {
    min-height: 230px;
    padding: 1.25rem;
  }

  .product-detail-page .product-hero-image > img {
    max-height: 190px;
  }

  .product-magne-page .product-hero-image > .magne-hero-packshot {
    max-height: 190px;
  }

  .product-enterogermina-page .product-hero-image > .enterogermina-hero-packshot {
    width: min(100%, 420px);
    max-height: 170px;
  }

  .product-enterogermina-capsules-page .product-hero-image > .enterogermina-capsules-hero-packshot {
    width: min(100%, 440px);
    max-height: 180px;
  }

  .product-enterogermina-forte-page .product-hero-image > .enterogermina-forte-hero-packshot {
    width: min(100%, 460px);
    max-height: 180px;
  }

  .product-sinulan-page .product-hero-image > .sinulan-hero-packshot {
    width: min(100%, 430px);
    max-height: 175px;
  }

  .product-edarbi-page .product-hero-image > .edarbi-hero-packshot {
    width: min(100%, 430px);
    max-height: 165px;
  }

  .product-cardiomagnil-page .product-hero-image > .cardiomagnil-hero-packshot {
    width: min(100%, 320px);
    max-height: 170px;
  }

  .product-noshpa-page .product-hero-image > .noshpa-hero-packshot {
    width: min(100%, 345px);
    max-height: 170px;
  }

  .product-noshpa-forte-page .product-hero-image > .noshpa-forte-hero-packshot {
    width: min(100%, 345px);
    max-height: 170px;
  }

  .product-gecsikon-page .product-hero-image > .gecsikon-hero-packshot {
    width: min(100%, 345px);
    max-height: 170px;
  }

  .product-terginan-page .product-hero-image > .terginan-hero-packshot {
    width: min(100%, 345px);
    max-height: 170px;
  }

  .product-klopidogrel-teva-page .product-hero-image > .klopidogrel-teva-hero-packshot {
    width: min(100%, 345px);
    max-height: 170px;
  }

  .product-meloksikam-page .product-hero-image > .meloksikam-hero-packshot {
    width: min(100%, 345px);
    max-height: 170px;
  }

  .product-kamistad-baby-page .product-hero-image > .kamistad-baby-hero-packshot {
    width: min(100%, 345px);
    max-height: 170px;
  }

  .product-psilo-balsam-page .product-hero-image > .psilo-balsam-hero-packshot {
    width: min(100%, 345px);
    max-height: 170px;
  }

  .product-lizobakt-page .product-hero-image > .lizobakt-hero-packshot {
    width: min(100%, 345px);
    max-height: 170px;
  }

  .product-faringosept-page .product-hero-image > .faringosept-hero-packshot {
    width: min(100%, 345px);
    max-height: 170px;
  }

  .product-essentiale-page .product-hero-image > .essentiale-hero-packshot {
    max-height: 185px;
  }

  .product-nizoral-page .product-hero-image > .nizoral-hero-packshot {
    width: min(100%, 390px);
    max-height: 172px;
  }

  .product-aqualor-page .product-hero-image > .aqualor-hero-packshot {
    max-height: 190px;
  }

  .product-hero-nutrients {
    display: none;
  }

  .product-detail-page .product-hero-metrics {
    display: none;
  }

  .usage-item {
    grid-template-columns: 1fr;
  }

  .usage-item:hover,
  .usage-item:focus-visible,
  .usage-item.is-active {
    transform: none;
  }

  .usage-item > span {
    width: 100%;
    height: 6px;
    min-height: 6px;
  }

  .snup-formula-system {
    display: grid;
    gap: 1rem;
    min-height: auto;
  }

  .snup-formula-system::before,
  .snup-formula-lines,
  .snup-formula-connector {
    display: none;
  }

  .snup-formula-core {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 220px);
    height: 300px;
    margin: 0 auto;
    transform: none;
  }

  .snup-formula-points {
    position: relative;
    display: grid;
    gap: 0.8rem;
  }

  .snup-formula-point,
  .snup-formula-point--active,
  .snup-formula-point--seawater,
  .snup-formula-point--format {
    --point-x: 0;
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
    transform: none;
    animation: none;
  }

  .product-coldrex-page .coldrex-formula-core {
    width: min(100%, 260px);
    height: 310px;
  }

  .product-coldrex-page .coldrex-formula-product {
    bottom: 5%;
    width: 100%;
  }

  .product-magne-page .magne-formula-core {
    width: min(100%, 240px);
    height: 280px;
    margin-bottom: 2.5rem;
  }

  .product-magne-page .magne-formula-product {
    bottom: 22%;
    width: min(100%, 120px);
  }

  .product-magne-page .magne-formula-points {
    margin-top: 1.5rem;
  }

  .product-femilex-page .femilex-formula-core {
    width: min(100%, 270px);
    height: 230px;
    margin-bottom: 2rem;
  }

  .product-femilex-page .femilex-formula-product {
    bottom: 24%;
    width: min(100%, 230px);
  }

  .product-femilex-page .femilex-formula-points {
    margin-top: 1.35rem;
  }

  .product-femilex-page .femilex-formula-point,
  .product-femilex-page .femilex-formula-point--acid,
  .product-femilex-page .femilex-formula-point--balance,
  .product-femilex-page .femilex-formula-point--format {
    width: 100%;
    min-height: 0;
  }

  .product-gecsikon-page .gecsikon-formula-core {
    width: min(100%, 270px);
    height: 230px;
    margin-bottom: 2rem;
  }

  .product-gecsikon-page .gecsikon-formula-product {
    bottom: 24%;
    width: min(100%, 235px);
    max-height: 138px;
  }

  .product-gecsikon-page .gecsikon-formula-points {
    margin-top: 1.35rem;
  }

  .product-gecsikon-page .gecsikon-formula-point,
  .product-gecsikon-page .gecsikon-formula-point--chlorhexidine,
  .product-gecsikon-page .gecsikon-formula-point--local,
  .product-gecsikon-page .gecsikon-formula-point--format {
    width: 100%;
    min-height: 0;
  }

  .product-terginan-page .terginan-formula-core {
    width: min(100%, 270px);
    height: 230px;
    margin-bottom: 2rem;
  }

  .product-terginan-page .terginan-formula-product {
    bottom: 24%;
    width: min(100%, 235px);
    max-height: 138px;
  }

  .product-terginan-page .terginan-formula-points {
    margin-top: 1.35rem;
  }

  .product-terginan-page .terginan-formula-point,
  .product-terginan-page .terginan-formula-point--components,
  .product-terginan-page .terginan-formula-point--local,
  .product-terginan-page .terginan-formula-point--format {
    width: 100%;
    min-height: 0;
  }

  .product-klopidogrel-teva-page .klopidogrel-teva-formula-core {
    width: min(100%, 270px);
    height: 230px;
    margin-bottom: 2rem;
  }

  .product-klopidogrel-teva-page .klopidogrel-teva-formula-product {
    bottom: 24%;
    width: min(100%, 235px);
    max-height: 138px;
  }

  .product-klopidogrel-teva-page .klopidogrel-teva-formula-points {
    margin-top: 1.35rem;
  }

  .product-klopidogrel-teva-page .klopidogrel-teva-formula-point,
  .product-klopidogrel-teva-page .klopidogrel-teva-formula-point--component,
  .product-klopidogrel-teva-page .klopidogrel-teva-formula-point--dose,
  .product-klopidogrel-teva-page .klopidogrel-teva-formula-point--format {
    width: 100%;
    min-height: 0;
  }

  .product-meloksikam-page .meloksikam-formula-core {
    width: min(100%, 270px);
    height: 230px;
    margin-bottom: 2rem;
  }

  .product-meloksikam-page .meloksikam-formula-product {
    bottom: 24%;
    width: min(100%, 235px);
    max-height: 138px;
  }

  .product-meloksikam-page .meloksikam-formula-points {
    margin-top: 1.35rem;
  }

  .product-meloksikam-page .meloksikam-formula-point,
  .product-meloksikam-page .meloksikam-formula-point--component,
  .product-meloksikam-page .meloksikam-formula-point--dose,
  .product-meloksikam-page .meloksikam-formula-point--format {
    width: 100%;
    min-height: 0;
  }

  .product-kamistad-baby-page .kamistad-baby-formula-core {
    width: min(100%, 270px);
    height: 230px;
    margin-bottom: 2rem;
  }

  .product-kamistad-baby-page .kamistad-baby-formula-product {
    bottom: 24%;
    width: min(100%, 235px);
    max-height: 138px;
  }

  .product-kamistad-baby-page .kamistad-baby-formula-points {
    margin-top: 1.35rem;
  }

  .product-kamistad-baby-page .kamistad-baby-formula-point,
  .product-kamistad-baby-page .kamistad-baby-formula-point--chamomile,
  .product-kamistad-baby-page .kamistad-baby-formula-point--gel,
  .product-kamistad-baby-page .kamistad-baby-formula-point--format {
    width: 100%;
    min-height: 0;
  }

  .product-psilo-balsam-page .psilo-balsam-formula-core {
    width: min(100%, 270px);
    height: 230px;
    margin-bottom: 2rem;
  }

  .product-psilo-balsam-page .psilo-balsam-formula-product {
    bottom: 24%;
    width: min(100%, 235px);
    max-height: 138px;
  }

  .product-psilo-balsam-page .psilo-balsam-formula-points {
    margin-top: 1.35rem;
  }

  .product-psilo-balsam-page .psilo-balsam-formula-point,
  .product-psilo-balsam-page .psilo-balsam-formula-point--component,
  .product-psilo-balsam-page .psilo-balsam-formula-point--dose,
  .product-psilo-balsam-page .psilo-balsam-formula-point--format {
    width: 100%;
    min-height: 0;
  }

  .product-lizobakt-page .lizobakt-formula-core {
    width: min(100%, 270px);
    height: 230px;
    margin-bottom: 2rem;
  }

  .product-lizobakt-page .lizobakt-formula-product {
    bottom: 24%;
    width: min(100%, 235px);
    max-height: 138px;
  }

  .product-lizobakt-page .lizobakt-formula-points {
    margin-top: 1.35rem;
  }

  .product-lizobakt-page .lizobakt-formula-point,
  .product-lizobakt-page .lizobakt-formula-point--lysozyme,
  .product-lizobakt-page .lizobakt-formula-point--pyridoxine,
  .product-lizobakt-page .lizobakt-formula-point--format {
    width: 100%;
    min-height: 0;
  }

  .product-faringosept-page .faringosept-formula-core {
    width: min(100%, 270px);
    height: 230px;
    margin-bottom: 2rem;
  }

  .product-faringosept-page .faringosept-formula-product {
    bottom: 24%;
    width: min(100%, 235px);
    max-height: 138px;
  }

  .product-faringosept-page .faringosept-formula-points {
    margin-top: 1.35rem;
  }

  .product-faringosept-page .faringosept-formula-point,
  .product-faringosept-page .faringosept-formula-point--ambazone,
  .product-faringosept-page .faringosept-formula-point--mint,
  .product-faringosept-page .faringosept-formula-point--format {
    width: 100%;
    min-height: 0;
  }

  .product-enterogermina-page .enterogermina-formula-core {
    width: min(100%, 300px);
    height: 220px;
    margin-bottom: 1rem;
  }

  .product-enterogermina-page .enterogermina-formula-product {
    bottom: 20%;
    width: 100%;
  }

  .product-enterogermina-page .enterogermina-formula-pack::after {
    bottom: 14%;
  }

  .product-enterogermina-capsules-page .enterogermina-capsules-formula-core {
    width: min(100%, 260px);
    height: 210px;
    margin-bottom: 0.75rem;
  }

  .product-enterogermina-capsules-page .enterogermina-capsules-formula-product {
    bottom: 28%;
    width: min(100%, 240px);
  }

  .product-enterogermina-capsules-page .enterogermina-capsules-formula-pack::after {
    bottom: 20%;
  }

  .product-enterogermina-forte-page .enterogermina-forte-formula-core {
    width: min(100%, 260px);
    height: 210px;
    margin-bottom: 0.75rem;
  }

  .product-enterogermina-forte-page .enterogermina-forte-formula-product {
    top: 50%;
    bottom: auto;
    width: min(108%, 276px);
    transform: translate(-50%, -50%);
  }

  .product-enterogermina-forte-page .enterogermina-forte-formula-pack::after {
    bottom: 20%;
  }

  .product-sinulan-page .sinulan-formula-core {
    width: min(100%, 280px);
    height: 225px;
    margin-bottom: 1rem;
  }

  .product-sinulan-page .sinulan-formula-product {
    bottom: 14%;
    width: 100%;
  }

  .product-sinulan-page .sinulan-formula-pack::after {
    bottom: 13%;
  }

  .product-edarbi-page .edarbi-formula-core {
    width: min(100%, 300px);
    height: 210px;
    margin-bottom: 1rem;
  }

  .product-edarbi-page .edarbi-formula-product {
    bottom: 22%;
    width: 100%;
  }

  .product-edarbi-page .edarbi-formula-pack::after {
    bottom: 18%;
  }

  .product-edarbi-page .edarbi-formula-point,
  .product-edarbi-page .edarbi-formula-point--azilsartan,
  .product-edarbi-page .edarbi-formula-point--chlorthalidone,
  .product-edarbi-page .edarbi-formula-point--control {
    right: auto;
    left: auto;
    width: 100%;
  }

  .product-cardiomagnil-page .cardiomagnil-formula-core {
    width: min(100%, 300px);
    height: 210px;
    margin-bottom: 1rem;
  }

  .product-cardiomagnil-page .cardiomagnil-formula-product {
    bottom: 22%;
    width: min(100%, 260px);
  }

  .product-cardiomagnil-page .cardiomagnil-formula-pack::after {
    bottom: 18%;
  }

  .product-cardiomagnil-page .cardiomagnil-formula-point,
  .product-cardiomagnil-page .cardiomagnil-formula-point--asa,
  .product-cardiomagnil-page .cardiomagnil-formula-point--magnesium,
  .product-cardiomagnil-page .cardiomagnil-formula-point--format {
    right: auto;
    left: auto;
    width: 100%;
  }

  .product-noshpa-page .noshpa-formula-core {
    width: min(100%, 320px);
    height: 210px;
    margin-bottom: 1rem;
  }

  .product-noshpa-page .noshpa-formula-product {
    bottom: 24%;
    width: min(100%, 300px);
  }

  .product-noshpa-page .noshpa-formula-pack::after {
    bottom: 18%;
  }

  .product-noshpa-page .noshpa-formula-point,
  .product-noshpa-page .noshpa-formula-point--drotaverine,
  .product-noshpa-page .noshpa-formula-point--spasm,
  .product-noshpa-page .noshpa-formula-point--format {
    right: auto;
    left: auto;
    width: 100%;
  }

  .product-noshpa-forte-page .noshpa-forte-formula-core {
    width: min(100%, 320px);
    height: 210px;
    margin-bottom: 1rem;
  }

  .product-noshpa-forte-page .noshpa-forte-formula-product {
    bottom: 28%;
    width: min(86%, 260px);
    max-height: 150px;
  }

  .product-noshpa-forte-page .noshpa-forte-formula-pack::after {
    bottom: 18%;
  }

  .product-noshpa-forte-page .noshpa-forte-formula-point,
  .product-noshpa-forte-page .noshpa-forte-formula-point--drotaverine,
  .product-noshpa-forte-page .noshpa-forte-formula-point--spasm,
  .product-noshpa-forte-page .noshpa-forte-formula-point--format {
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .product-essentiale-page .essentiale-formula-core {
    top: auto;
    left: auto;
    width: min(100%, 260px);
    height: 230px;
    margin-bottom: 1rem;
    transform: none;
  }

  .product-essentiale-page .essentiale-formula-product {
    bottom: 14%;
    max-width: 150px;
    max-height: 210px;
  }

  .product-essentiale-page .essentiale-formula-pack::after {
    bottom: 12%;
  }

  .product-essentiale-page .essentiale-formula-point,
  .product-essentiale-page .essentiale-formula-point--phospholipids,
  .product-essentiale-page .essentiale-formula-point--liver,
  .product-essentiale-page .essentiale-formula-point--format {
    right: auto;
    left: auto;
    width: 100%;
  }

  .product-nizoral-page .nizoral-formula-core {
    top: auto;
    left: auto;
    width: min(100%, 280px);
    height: 190px;
    margin-bottom: 1rem;
    transform: none;
  }

  .product-nizoral-page .nizoral-formula-product {
    bottom: 26%;
    max-width: 230px;
    max-height: 118px;
  }

  .product-nizoral-shampoo-page .nizoral-formula-core {
    height: 300px;
  }

  .product-nizoral-shampoo-page .nizoral-formula-product {
    bottom: 14%;
    max-width: 220px;
    max-height: 245px;
  }

  .product-nizoral-page .nizoral-formula-pack::after {
    bottom: 18%;
  }

  .product-nizoral-page .nizoral-formula-point,
  .product-nizoral-page .nizoral-formula-point--component,
  .product-nizoral-page .nizoral-formula-point--use,
  .product-nizoral-page .nizoral-formula-point--format {
    right: auto;
    left: auto;
    width: 100%;
  }

  .product-aqualor-page .aqualor-formula-core {
    top: auto;
    left: auto;
    width: min(100%, 260px);
    height: 230px;
    margin-bottom: 1rem;
    transform: none;
  }

  .product-aqualor-page .aqualor-formula-product {
    bottom: 14%;
    max-width: 150px;
    max-height: 210px;
  }

  .product-aqualor-forte-page .aqualor-formula-core {
    height: 218px;
  }

  .product-aqualor-forte-page .aqualor-formula-product {
    max-width: 136px;
    max-height: 178px;
  }

  .product-aqualor-baby-page .aqualor-formula-core {
    height: 214px;
  }

  .product-aqualor-baby-page .aqualor-formula-product {
    max-width: 112px;
    max-height: 172px;
  }

  .product-aqualor-gorlo-page .aqualor-formula-core {
    height: 210px;
  }

  .product-aqualor-gorlo-page .aqualor-formula-product {
    max-width: 96px;
    max-height: 168px;
  }

  .product-aqualor-soft-page .aqualor-formula-core {
    height: 210px;
  }

  .product-aqualor-soft-page .aqualor-formula-product {
    max-width: 104px;
    max-height: 168px;
  }

  .product-aqualor-soft-mini-page .aqualor-formula-core {
    height: 210px;
  }

  .product-aqualor-soft-mini-page .aqualor-formula-product {
    max-width: 96px;
    max-height: 168px;
  }

  .product-aqualor-page .aqualor-formula-pack::after {
    bottom: 12%;
  }

  .product-aqualor-page .aqualor-formula-point,
  .product-aqualor-page .aqualor-formula-point--seawater,
  .product-aqualor-page .aqualor-formula-point--nose,
  .product-aqualor-page .aqualor-formula-point--format {
    right: auto;
    left: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .product-detail-page .product-hero {
    padding-top: 2rem;
    padding-bottom: 2.25rem;
  }

  .product-detail-page .product-hero-image {
    min-height: 210px;
  }

  .product-detail-page .product-hero-image > img {
    max-height: 175px;
  }

  .product-magne-page .product-hero-image > .magne-hero-packshot {
    max-height: 175px;
  }

  .product-enterogermina-page .product-hero-image > .enterogermina-hero-packshot {
    max-height: 150px;
  }

  .product-enterogermina-capsules-page .product-hero-image > .enterogermina-capsules-hero-packshot {
    max-height: 160px;
  }

  .product-enterogermina-forte-page .product-hero-image > .enterogermina-forte-hero-packshot {
    max-height: 155px;
  }

  .product-sinulan-page .product-hero-image > .sinulan-hero-packshot {
    max-height: 150px;
  }

  .product-edarbi-page .product-hero-image > .edarbi-hero-packshot {
    max-height: 145px;
  }

  .product-cardiomagnil-page .product-hero-image > .cardiomagnil-hero-packshot {
    max-height: 150px;
  }

  .product-noshpa-page .product-hero-image > .noshpa-hero-packshot {
    max-height: 145px;
  }

  .product-noshpa-forte-page .product-hero-image > .noshpa-forte-hero-packshot {
    max-height: 145px;
  }

  .product-gecsikon-page .product-hero-image > .gecsikon-hero-packshot {
    max-height: 145px;
  }

  .product-terginan-page .product-hero-image > .terginan-hero-packshot {
    max-height: 145px;
  }

  .product-klopidogrel-teva-page .product-hero-image > .klopidogrel-teva-hero-packshot {
    max-height: 145px;
  }

  .product-lizobakt-page .product-hero-image > .lizobakt-hero-packshot {
    max-height: 145px;
  }

  .product-faringosept-page .product-hero-image > .faringosept-hero-packshot {
    max-height: 145px;
  }

  .product-essentiale-page .product-hero-image > .essentiale-hero-packshot {
    max-height: 165px;
  }

  .product-nizoral-page .product-hero-image > .nizoral-hero-packshot {
    max-height: 150px;
  }

  .product-nizoral-shampoo-page .product-hero-image > .nizoral-hero-packshot {
    max-height: 245px;
  }

  .product-aqualor-page .product-hero-image > .aqualor-hero-packshot {
    max-height: 170px;
  }

  .product-aqualor-forte-page .product-hero-image > .aqualor-forte-hero-packshot {
    max-height: 168px;
  }

  .product-aqualor-baby-page .product-hero-image > .aqualor-baby-hero-packshot {
    max-height: 168px;
  }

  .product-aqualor-gorlo-page .product-hero-image > .aqualor-gorlo-hero-packshot {
    max-height: 168px;
  }

  .product-aqualor-soft-page .product-hero-image > .aqualor-soft-hero-packshot {
    max-height: 168px;
  }

  .product-aqualor-soft-mini-page .product-hero-image > .aqualor-soft-mini-hero-packshot {
    max-height: 168px;
  }

  .product-enterogermina-page .enterogermina-formula-core {
    height: 190px;
  }

  .product-enterogermina-capsules-page .enterogermina-capsules-formula-core {
    height: 195px;
  }

  .product-enterogermina-forte-page .enterogermina-forte-formula-core {
    height: 195px;
  }

  .product-sinulan-page .sinulan-formula-core {
    height: 205px;
  }

  .product-edarbi-page .edarbi-formula-core {
    height: 185px;
  }

  .product-cardiomagnil-page .cardiomagnil-formula-core {
    height: 185px;
  }

  .product-noshpa-page .noshpa-formula-core {
    height: 185px;
  }

  .product-essentiale-page .essentiale-formula-core {
    height: 205px;
  }

  .product-essentiale-page .essentiale-formula-product {
    max-height: 190px;
  }

  .product-nizoral-page .nizoral-formula-core {
    height: 172px;
  }

  .product-nizoral-page .nizoral-formula-product {
    max-width: 210px;
    max-height: 104px;
  }

  .product-gecsikon-page .gecsikon-formula-core {
    height: 208px;
  }

  .product-gecsikon-page .gecsikon-formula-product {
    max-width: 218px;
    max-height: 118px;
  }

  .product-terginan-page .terginan-formula-core {
    height: 208px;
  }

  .product-terginan-page .terginan-formula-product {
    max-width: 218px;
    max-height: 118px;
  }

  .product-klopidogrel-teva-page .klopidogrel-teva-formula-core {
    height: 208px;
  }

  .product-klopidogrel-teva-page .klopidogrel-teva-formula-product {
    max-width: 218px;
    max-height: 118px;
  }

  .product-meloksikam-page .meloksikam-formula-core {
    height: 208px;
  }

  .product-meloksikam-page .meloksikam-formula-product {
    max-width: 218px;
    max-height: 118px;
  }

  .product-kamistad-baby-page .kamistad-baby-formula-core {
    height: 208px;
  }

  .product-kamistad-baby-page .kamistad-baby-formula-product {
    max-width: 218px;
    max-height: 118px;
  }

  .product-psilo-balsam-page .psilo-balsam-formula-core {
    height: 208px;
  }

  .product-psilo-balsam-page .psilo-balsam-formula-product {
    max-width: 218px;
    max-height: 118px;
  }

  .product-lizobakt-page .lizobakt-formula-core {
    height: 208px;
  }

  .product-lizobakt-page .lizobakt-formula-product {
    max-width: 218px;
    max-height: 118px;
  }

  .product-faringosept-page .faringosept-formula-core {
    height: 208px;
  }

  .product-faringosept-page .faringosept-formula-product {
    max-width: 218px;
    max-height: 118px;
  }

  .product-aqualor-page .aqualor-formula-core {
    height: 205px;
  }

  .product-aqualor-page .aqualor-formula-product {
    max-height: 190px;
  }

  .product-aqualor-forte-page .aqualor-formula-core {
    height: 190px;
  }

  .product-aqualor-forte-page .aqualor-formula-product {
    max-height: 158px;
  }

  .product-aqualor-baby-page .aqualor-formula-core {
    height: 188px;
  }

  .product-aqualor-baby-page .aqualor-formula-product {
    max-height: 148px;
  }

  .product-aqualor-gorlo-page .aqualor-formula-core {
    height: 184px;
  }

  .product-aqualor-gorlo-page .aqualor-formula-product {
    max-height: 144px;
  }

  .product-aqualor-soft-page .aqualor-formula-core {
    height: 184px;
  }

  .product-aqualor-soft-page .aqualor-formula-product {
    max-height: 144px;
  }

  .product-aqualor-soft-mini-page .aqualor-formula-core {
    height: 184px;
  }

  .product-aqualor-soft-mini-page .aqualor-formula-product {
    max-height: 144px;
  }

  .product-fact-card,
  .snup-formula-point,
  .usage-item,
  .product-note {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .product-detail-page .product-formula {
    overflow: hidden;
  }

  .product-detail-page .product-formula-layout {
    gap: 1.25rem;
  }

  .product-detail-page .product-formula .snup-formula-system {
    display: grid;
    gap: 1rem;
    min-height: auto;
    align-items: stretch;
  }

  .product-detail-page .product-formula .snup-formula-system::after {
    display: none;
  }

  .product-detail-page .product-formula .snup-formula-core {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 220px);
    height: 188px;
    margin: 0 auto 0.5rem;
    transform: none;
  }

  .product-detail-page .product-formula .snup-formula-pack {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-detail-page .product-formula .snup-formula-pack::after {
    right: 11%;
    bottom: 12%;
    left: 11%;
    height: 16px;
    opacity: 0.68;
  }

  .product-detail-page .product-formula .snup-formula-product {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 188px);
    max-width: 100%;
    height: auto;
    max-height: 188px;
    object-fit: contain;
    transform: none;
  }

  .product-detail-page .product-formula .snup-formula-points {
    position: relative;
    display: grid;
    gap: 0.75rem;
    margin-top: 0;
  }

  .product-detail-page .product-formula .snup-formula-point,
  .product-detail-page .product-formula .snup-formula-point--active,
  .product-detail-page .product-formula .snup-formula-point--seawater,
  .product-detail-page .product-formula .snup-formula-point--format {
    --point-x: 0;
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    column-gap: 0.9rem;
    width: 100%;
    min-height: 124px;
    padding: 1rem;
    border: 1px solid rgba(0, 93, 185, 0.16);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 30px rgba(8, 46, 84, 0.075);
    backdrop-filter: none;
    overflow: hidden;
    text-align: left;
    transform: none;
    animation: none;
  }

  .product-detail-page .product-formula .snup-formula-point::before {
    display: none;
  }

  .product-detail-page .product-formula .snup-formula-point::after {
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--product-berry), var(--product-accent), var(--product-citrus));
    box-shadow: none;
    transform: none;
  }

  .product-detail-page .product-formula .snup-formula-point > img,
  .product-detail-page .product-formula .snup-formula-point > span {
    grid-row: 1 / span 2;
    justify-self: center;
    align-self: center;
    width: 78px;
    max-width: 78px;
    height: 78px;
    margin: 0;
    padding: 0.2rem;
    border-radius: 8px;
    object-fit: contain;
  }

  .product-detail-page .product-formula .snup-formula-point > span {
    display: grid;
    place-items: center;
    min-width: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    background: linear-gradient(135deg, var(--product-accent), var(--product-citrus));
    box-shadow: 0 12px 24px rgba(var(--product-accent-rgb), 0.16);
  }

  .product-detail-page .product-formula .snup-formula-point > img {
    background: linear-gradient(145deg, #ffffff, rgba(255, 245, 196, 0.5));
  }

  .product-detail-page .product-formula .snup-formula-point h3,
  .product-detail-page .product-formula .snup-formula-point p {
    grid-column: 2;
  }

  .product-detail-page .product-formula .snup-formula-point h3 {
    align-self: end;
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
  }

  .product-detail-page .product-formula .snup-formula-point p {
    align-self: start;
    margin-top: 0.35rem;
    font-size: 0.9rem;
    line-height: 1.45;
  }
}

@media (max-width: 480px) {
  .product-detail-page .product-formula {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .product-detail-page .product-formula .snup-formula-core {
    height: 164px;
    margin-bottom: 0.25rem;
  }

  .product-detail-page .product-formula .snup-formula-product {
    width: min(100%, 164px);
    max-height: 164px;
  }

  .product-detail-page .product-formula .snup-formula-point,
  .product-detail-page .product-formula .snup-formula-point--active,
  .product-detail-page .product-formula .snup-formula-point--seawater,
  .product-detail-page .product-formula .snup-formula-point--format {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 112px;
    padding: 0.85rem;
    column-gap: 0.8rem;
  }

  .product-detail-page .product-formula .snup-formula-point > img,
  .product-detail-page .product-formula .snup-formula-point > span {
    width: 68px;
    max-width: 68px;
    height: 68px;
  }

  .product-detail-page .product-formula .snup-formula-point h3 {
    font-size: 0.98rem;
  }

  .product-detail-page .product-formula .snup-formula-point p {
    font-size: 0.86rem;
    line-height: 1.42;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-enterogermina-page .product-hero-image::after,
  .product-enterogermina-page .product-hero-image > .enterogermina-hero-packshot,
  .product-enterogermina-capsules-page .product-hero-image::after,
  .product-enterogermina-capsules-page .product-hero-image > .enterogermina-capsules-hero-packshot,
  .product-enterogermina-forte-page .product-hero-image::after,
  .product-enterogermina-forte-page .product-hero-image > .enterogermina-forte-hero-packshot,
  .product-sinulan-page .product-hero-image::after,
  .product-sinulan-page .product-hero-image > .sinulan-hero-packshot,
  .product-edarbi-page .product-hero-image::after,
  .product-edarbi-page .product-hero-image > .edarbi-hero-packshot,
  .product-cardiomagnil-page .product-hero-image::after,
  .product-cardiomagnil-page .product-hero-image > .cardiomagnil-hero-packshot,
  .product-noshpa-page .product-hero-image::after,
  .product-noshpa-page .product-hero-image > .noshpa-hero-packshot,
  .product-noshpa-forte-page .product-hero-image::after,
  .product-noshpa-forte-page .product-hero-image > .noshpa-forte-hero-packshot,
  .product-noshpa-forte-page .noshpa-forte-formula-point,
  .product-gecsikon-page .product-hero-image::after,
  .product-gecsikon-page .product-hero-image > .gecsikon-hero-packshot,
  .product-gecsikon-page .gecsikon-formula-point,
  .product-terginan-page .product-hero-image::after,
  .product-terginan-page .product-hero-image > .terginan-hero-packshot,
  .product-terginan-page .terginan-formula-point,
  .product-klopidogrel-teva-page .product-hero-image::after,
  .product-klopidogrel-teva-page .product-hero-image > .klopidogrel-teva-hero-packshot,
  .product-klopidogrel-teva-page .klopidogrel-teva-formula-point,
  .product-lizobakt-page .product-hero-image::after,
  .product-lizobakt-page .product-hero-image > .lizobakt-hero-packshot,
  .product-lizobakt-page .lizobakt-formula-point,
  .product-faringosept-page .product-hero-image::after,
  .product-faringosept-page .product-hero-image > .faringosept-hero-packshot,
  .product-faringosept-page .faringosept-formula-point,
  .product-essentiale-page .product-hero-image::after,
  .product-essentiale-page .product-hero-image > .essentiale-hero-packshot,
  .product-nizoral-page .product-hero-image::after,
  .product-nizoral-page .product-hero-image > .nizoral-hero-packshot,
  .product-aqualor-page .product-hero-image::after,
  .product-aqualor-page .product-hero-image > .aqualor-hero-packshot,
  .product-magne-page .product-hero-image::after,
  .product-magne-page .product-hero-image > .magne-hero-packshot,
  .product-femilex-page .product-hero-image::after,
  .product-femilex-page .product-hero-image > .femilex-hero-packshot,
  .product-detail-page .product-hero-image > img,
  .product-hero-nutrients span,
  .snup-formula-pack,
  .snup-formula-point,
  .snup-formula-line,
  .coldrex-formula-line,
  .snup-formula-dot,
  .snup-formula-connector {
    animation: none;
  }

  .product-detail-page.vitrum-reveal-ready .vitrum-animate,
  .usage-item {
    transition: none;
  }
}

/* Simple hero slider for static images (replaces Swiper) */
.hero-section {
  position: relative;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: heroFade 15s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
@keyframes heroFade {
  0%, 20% { opacity: 1; }
  33.33%, 100% { opacity: 0; }
}

/* Homepage hero redesign */
.hero-section {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: auto;
  min-height: 640px;
  padding: clamp(1.75rem, 3vw, 3rem) 1.5rem clamp(3rem, 6vw, 5.5rem);
  overflow: hidden;
  opacity: 1;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 44%, rgba(247, 250, 255, 0.78) 68%),
    #f7faff;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--stada-blue), var(--stada-red));
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: start;
  column-gap: clamp(2rem, 5vw, 5rem);
  row-gap: 0;
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  max-width: 640px;
}

.hero-eyebrow {
  margin-bottom: 1rem;
  color: var(--stada-red);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 620px;
  color: var(--stada-blue);
  font-size: 3.35rem;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
}

html[lang="kz"] .hero-content h1 {
  font-size: 3rem;
  line-height: 1.1;
}

.hero-lead {
  max-width: 560px;
  color: #394555;
  font-size: 1.2rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.hero-actions {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin: 2rem 0 2.25rem;
}

.hero-section .hero-btn {
  margin-top: 0;
  padding: 0.9rem 1.35rem;
  border: 2px solid var(--stada-blue);
  border-radius: 6px;
  background-color: var(--stada-blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 93, 185, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.hero-section .hero-btn::after {
  content: "\2192";
}

.hero-section .hero-btn:hover {
  background-color: #00467a;
  border-color: #00467a;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 70, 122, 0.25);
}

.hero-section .hero-btn-secondary {
  background-color: #fff;
  color: var(--stada-blue);
  box-shadow: none;
}

.hero-section .hero-btn-secondary:hover {
  background-color: #eef6ff;
  color: #00467a;
}

.hero-metrics {
  grid-column: 1;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 620px;
}

.hero-metric {
  min-height: 104px;
  padding: 1rem;
  border: 1px solid rgba(0, 93, 185, 0.14);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(0, 50, 110, 0.07);
}

.hero-metric strong {
  display: block;
  color: var(--stada-blue);
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-metric span {
  display: block;
  margin-top: 0.35rem;
  color: #526070;
  font-size: 0.92rem;
  line-height: 1.35;
}

.hero-visual {
  grid-column: 2;
  grid-row: 1 / 4;
  position: relative;
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #dfeaf6;
  box-shadow: 0 24px 54px rgba(0, 46, 100, 0.18);
}

.hero-carousel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.7s ease, transform 5.5s ease;
}

.hero-carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero-carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 93, 185, 0.46) 0%, rgba(0, 93, 185, 0.2) 30%, rgba(0, 93, 185, 0) 62%);
  pointer-events: none;
}

.hero-carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center center;
}

.hero-carousel-slide:nth-child(1) img {
  object-position: center 48%;
}

.hero-carousel-slide:nth-child(2) img {
  object-position: 54% center;
}

.hero-carousel-slide:nth-child(3) img {
  object-position: center center;
}

.hero-carousel-slide--awards {
  transform: none;
  transition: opacity 0.3s ease;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.98), transparent 36%),
    radial-gradient(circle at 82% 20%, rgba(0, 93, 185, 0.08), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4f9fe 48%, #eaf3fb 100%);
}

.hero-carousel-slide--awards.is-active {
  transform: none;
}

.hero-carousel-slide--awards::after {
  display: none;
}

.hero-awards-kicker {
  position: absolute;
  z-index: 2;
  top: 1.4rem;
  left: 1.5rem;
  color: var(--stada-red);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-carousel-slide .hero-awards-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center 44%;
}

.hero-carousel-dots {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 18px rgba(0, 46, 100, 0.12);
}

.hero-carousel-dot {
  width: 0.62rem;
  height: 0.62rem;
  border: 0;
  border-radius: 50%;
  background-color: rgba(0, 93, 185, 0.32);
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.hero-carousel-dot.is-active {
  width: 1.35rem;
  border-radius: 999px;
  background-color: var(--stada-blue);
}

.hero-visual-caption {
  position: absolute;
  z-index: 4;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--stada-blue);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 12px 24px rgba(0, 46, 100, 0.16);
}

.hero-carousel--awards-active + .hero-visual-caption {
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.58rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.96);
  font-size: 0.86rem;
  line-height: 1.2;
}

@media (max-width: 1100px) {
  .hero-section {
    min-height: auto;
    padding: 1.75rem 1.25rem 3rem;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    row-gap: 1.35rem;
    max-width: 820px;
    min-width: 0;
  }

  .hero-content,
  .hero-actions,
  .hero-metrics,
  .hero-visual {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-content { order: 1; }
  .hero-visual { order: 2; }
  .hero-metrics { order: 3; }
  .hero-actions { order: 4; }

  .hero-content {
    width: 100%;
    max-width: 780px;
    min-width: 0;
  }

  .hero-content h1 {
    max-width: 650px;
    font-size: 2.75rem;
    overflow-wrap: break-word;
  }

  html[lang="kz"] .hero-content h1 {
    max-width: 650px;
    font-size: 2.45rem;
    line-height: 1.12;
  }

  .hero-lead {
    max-width: 680px;
    overflow-wrap: break-word;
  }

  .hero-actions {
    justify-content: flex-start;
    margin: 0.25rem 0 0;
  }

  .hero-metrics {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-carousel {
    min-height: 380px;
  }

  .hero-carousel-slide img {
    min-height: 380px;
  }

  .hero-carousel-slide .hero-awards-image {
    min-height: 380px;
    object-position: center 42%;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 1.5rem 1rem 2.75rem;
    justify-content: flex-start;
  }

  .hero-shell {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  .hero-eyebrow {
    font-size: 0.85rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.14;
  }

  html[lang="kz"] .hero-content h1 {
    font-size: 1.72rem;
    line-height: 1.16;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    order: 4;
    align-items: stretch;
    flex-direction: column;
    margin: 0;
  }

  .hero-visual {
    order: 2;
  }

  .hero-section .hero-btn {
    justify-content: center;
    width: 100%;
  }

  .hero-metrics {
    display: none;
  }

  .hero-metric {
    min-height: auto;
  }

  .hero-visual {
    min-height: 260px;
  }

  .hero-carousel {
    min-height: 260px;
  }

  .hero-carousel-slide img {
    min-height: 260px;
  }

  .hero-carousel-slide .hero-awards-image {
    min-height: 260px;
    object-position: center 42%;
  }

  .hero-awards-kicker {
    top: 0.72rem;
    left: 0.8rem;
    max-width: calc(100% - 5.6rem);
    font-size: 0.66rem;
  }

  .hero-carousel-dots {
    top: 0.65rem;
    right: 0.65rem;
  }

  .hero-visual-caption {
    position: static;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-carousel--awards-active + .hero-visual-caption {
    position: static;
    padding: 0.55rem 0.75rem;
    font-size: 0.78rem;
  }
}

/* STADA.com-style homepage hero */
.stada-home-hero {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(380px, 24vw, 456px);
  min-height: 0;
  padding: 0;
  overflow: hidden;
  --stada-hero-circle-color: 0, 93, 185;
  background: var(--stada-blue);
}

.stada-home-hero::before {
  content: '';
  position: absolute;
  z-index: 3;
  top: 5%;
  right: auto;
  bottom: auto;
  left: -54vw;
  width: 104vw;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(var(--stada-hero-circle-color), 0.85);
  opacity: 0;
  transform: translate3d(-78vw, -50%, 0) scale(0.98);
  pointer-events: none;
  will-change: transform;
}

.stada-home-hero::after {
  content: '';
  position: absolute;
  z-index: 3;
  top: 125%;
  right: auto;
  bottom: auto;
  left: -54vw;
  width: 104vw;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(var(--stada-hero-circle-color), 0.85);
  opacity: 0;
  transform: translate3d(-78vw, -50%, 0) scale(0.98);
  pointer-events: none;
  will-change: transform;
}

.stada-home-hero.loaded::before {
  animation: stadaHeroCirclePrimary 1.15s cubic-bezier(0.18, 0.78, 0.22, 1) 0.95s both;
}

.stada-home-hero.loaded::after {
  animation: stadaHeroCircleSecondary 1.3s cubic-bezier(0.16, 0.76, 0.2, 1) 1.05s both;
}

@keyframes stadaHeroCirclePrimary {
  0% {
    opacity: 0;
    transform: translate3d(-78vw, -50%, 0) scale(0.98);
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, -50%, 0) scale(1);
  }
}

@keyframes stadaHeroCircleSecondary {
  0% {
    opacity: 0;
    transform: translate3d(-62vw, -50%, 0) scale(0.98);
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, -50%, 0) scale(1);
  }
}

.stada-home-hero__media,
.stada-home-hero .hero-carousel {
  position: absolute;
  z-index: auto;
  inset: 0;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
  background: #dfeaf6;
}

.stada-home-hero .hero-carousel-slide {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 0.7s ease, transform 5.5s ease;
}

.stada-home-hero .hero-carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.stada-home-hero .hero-carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(90deg, rgba(0, 48, 102, 0.2) 0%, rgba(0, 48, 102, 0.05) 44%, rgba(0, 48, 102, 0) 72%);
  pointer-events: none;
}

.stada-home-hero .hero-carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

.stada-home-hero .hero-carousel-slide:nth-child(1) img {
  object-position: 65% 40%;
  transform: scale(1.10);
  transform-origin: 5% center;
}

.stada-home-hero .hero-carousel-slide:nth-child(2) img {
  object-position: center 10%;
}

.stada-home-hero .hero-carousel-slide:nth-child(3) img {
  object-position: 60% 10%;
}

.stada-home-hero__copy {
  position: relative;
  z-index: 4;
  width: min(470px, 38vw);
  margin-left: max(1rem, calc((100vw - 1200px) / 2));
  padding-top: clamp(3.7rem, 4.5vw, 5.1rem);
  color: #fff;
  opacity: 0;
  transform: translate3d(-18px, 0, 0);
}

.stada-home-hero.loaded .stada-home-hero__copy {
  animation: stadaHeroCopyIn 0.55s ease-out 1.65s both;
}

@keyframes stadaHeroCopyIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.stada-home-hero__copy h1 {
  max-width: 13ch;
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2.65rem, 3.75vw, 3.55rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-shadow: 0 3px 14px rgba(0, 31, 64, 0.28);
}

.stada-home-hero__kicker {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.stada-home-hero__lead {
  max-width: 32ch;
  margin: 0 0 1.45rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-weight: 700;
  line-height: 1.45;
}

header.stada-home-hero[data-hero-active-slide="1"] .stada-home-hero__lead {
  max-width: 38ch;
}

html[lang="kz"] .stada-home-hero__copy h1 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 3.35vw, 3.2rem);
  line-height: 1.16;
}

.stada-home-hero .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin: 0;
  padding: 0.74rem 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  box-shadow: none;
  font-size: 1.05rem;
  font-weight: 700;
}

.stada-home-hero .hero-btn::after {
  display: none;
}

.stada-home-hero .hero-btn:hover,
.stada-home-hero .hero-btn:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--stada-blue);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 36, 82, 0.22);
}

.stada-home-hero__progress {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  height: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.stada-home-hero__progress .hero-carousel-dot {
  width: 100%;
  height: 8px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.stada-home-hero__progress .hero-carousel-dot.is-active {
  width: 100%;
  border-radius: 0;
  background: linear-gradient(90deg, var(--stada-blue), var(--stada-red));
}

.stada-home-hero > .hero-visual-caption {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .stada-home-hero {
    height: clamp(360px, 42vw, 460px);
    padding: 0;
  }

  .stada-home-hero::before {
    top: 24%;
    left: -76vw;
    width: 150vw;
  }

  .stada-home-hero::after {
    top: 118%;
    left: -76vw;
    width: 150vw;
  }

  .stada-home-hero__copy {
    width: min(430px, 47vw);
    margin-left: 1rem;
    padding-top: clamp(3.25rem, 7vw, 4.8rem);
  }

  .stada-home-hero__progress {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .stada-home-hero {
    height: 460px;
  }

  .stada-home-hero::before {
    top: 42%;
    left: -108vw;
    width: 190vw;
  }

  .stada-home-hero::after {
    top: 116%;
    left: -108vw;
    width: 190vw;
  }

  .stada-home-hero .hero-carousel-slide img {
    width: 142%;
    max-width: none;
    object-fit: cover;
    object-position: 70% center;
  }

  .stada-home-hero .hero-carousel-slide:nth-child(2) img {
    object-position: 52% center;
  }

  .stada-home-hero .hero-carousel-slide:nth-child(3) img {
    object-position: 50% center;
  }

  .stada-home-hero__copy {
    width: min(330px, calc(100% - 2rem));
    margin-left: 1.25rem;
    padding-top: 4rem;
  }

  .stada-home-hero__copy h1,
  html[lang="kz"] .stada-home-hero__copy h1 {
    max-width: 13ch;
    margin-bottom: 1rem;
    font-size: 2.1rem;
    line-height: 1.16;
  }

  .stada-home-hero__kicker {
    margin-bottom: 0.65rem;
    font-size: 0.68rem;
  }

  .stada-home-hero__lead {
    max-width: 28ch;
    margin-bottom: 1.25rem;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .stada-home-hero .hero-btn {
    width: auto;
    min-height: 46px;
    padding: 0.64rem 1.3rem;
    font-size: 1rem;
  }

  .stada-home-hero__progress {
    width: 100%;
    height: 7px;
  }

  .stada-home-hero__progress .hero-carousel-dot {
    height: 7px;
  }
}

@media (max-width: 760px) {
  header.stada-home-hero {
    height: min(560px, calc(100vh - 78px));
    min-height: 470px;
  }

  header.stada-home-hero::before,
  header.stada-home-hero::after {
    background: rgba(var(--stada-hero-circle-color), 0.86);
  }

  header.stada-home-hero::before {
    top: -137vw;
    left: -146vw;
    width: 245vw;
    height: 245vw;
    transform: translate3d(0, 0, 0);
  }

  header.stada-home-hero::after {
    top: -118vw;
    left: -162vw;
    width: 245vw;
    height: 245vw;
    transform: translate3d(0, 0, 0);
  }

  header.stada-home-hero.loaded::before {
    animation-name: stadaHistoryMobileCirclePrimary;
  }

  header.stada-home-hero.loaded::after {
    animation-name: stadaHistoryMobileCircleSecondary;
  }

  header.stada-home-hero .hero-carousel-slide img {
    width: 160%;
    max-width: none;
    object-fit: cover;
    object-position: 54% center;
    transform: translateX(-12%) scale(1.02);
  }

  header.stada-home-hero .hero-carousel-slide:nth-child(1) img,
  header.stada-home-hero .hero-carousel-slide:nth-child(2) img,
  header.stada-home-hero .hero-carousel-slide:nth-child(3) img {
    object-position: 54% center;
  }

  header.stada-home-hero .stada-home-hero__copy {
    width: min(calc(100vw - 1.5rem), 360px);
    margin-left: clamp(1.5rem, 5vw, 3rem);
    padding-top: clamp(4.6rem, 13vh, 6.3rem);
  }

  header.stada-home-hero .stada-home-hero__copy h1,
  html[lang="kz"] header.stada-home-hero .stada-home-hero__copy h1 {
    max-width: 13ch;
    margin-bottom: 1rem;
    font-size: 2.1rem;
    line-height: 1.16;
    overflow-wrap: normal;
    word-break: normal;
  }

  header.stada-home-hero .stada-home-hero__lead {
    max-width: 28ch;
    margin-bottom: 1.25rem;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.45;
  }

  header.stada-home-hero .hero-btn {
    width: min(100%, 13.2rem);
    min-height: 40px;
    padding: 0.52rem 0.82rem;
    font-size: clamp(0.8rem, 3.45vw, 0.94rem);
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  header.stada-home-hero {
    min-height: 450px;
  }

  header.stada-home-hero::before {
    top: -142vw;
    left: -142vw;
    width: 268vw;
    height: 268vw;
  }

  header.stada-home-hero::after {
    top: -115vw;
    left: -168vw;
    width: 268vw;
    height: 268vw;
  }

  header.stada-home-hero .stada-home-hero__copy {
    width: min(calc(100vw - 1.5rem), 360px);
    margin-left: 0.75rem;
    padding-top: 5.4rem;
  }

  header.stada-home-hero .stada-home-hero__copy h1,
  html[lang="kz"] header.stada-home-hero .stada-home-hero__copy h1 {
    font-size: clamp(2rem, 9.4vw, 2.65rem);
  }
}

header.stada-home-hero.is-changing-out::before {
  animation: stadaHeroCirclePrimaryOut 0.52s cubic-bezier(0.68, 0, 0.32, 1) both;
}

header.stada-home-hero.has-carousel-transitioned.loaded:not(.is-changing-out):not(.is-changing-in)::before,
header.stada-home-hero.has-carousel-transitioned.loaded:not(.is-changing-out):not(.is-changing-in)::after,
header.stada-home-hero.has-carousel-transitioned.loaded:not(.is-changing-out):not(.is-changing-in) .stada-home-hero__copy {
  animation: none;
  opacity: 1;
}

header.stada-home-hero.has-carousel-transitioned.loaded:not(.is-changing-out):not(.is-changing-in)::before,
header.stada-home-hero.has-carousel-transitioned.loaded:not(.is-changing-out):not(.is-changing-in)::after {
  transform: translate3d(0, -50%, 0) scale(1);
}

header.stada-home-hero.has-carousel-transitioned.loaded:not(.is-changing-out):not(.is-changing-in) .stada-home-hero__copy {
  transform: translate3d(0, 0, 0);
}

header.stada-home-hero.is-changing-out::after {
  animation: stadaHeroCircleSecondaryOut 0.58s cubic-bezier(0.68, 0, 0.32, 1) 0.03s both;
}

header.stada-home-hero.is-changing-out .stada-home-hero__copy {
  animation: stadaHeroCopyOut 0.34s ease-in both;
}

header.stada-home-hero.is-changing-in::before {
  animation: stadaHeroCirclePrimary 0.82s cubic-bezier(0.18, 0.78, 0.22, 1) both;
}

header.stada-home-hero.is-changing-in::after {
  animation: stadaHeroCircleSecondary 0.92s cubic-bezier(0.16, 0.76, 0.2, 1) 0.06s both;
}

header.stada-home-hero.is-changing-in .stada-home-hero__copy {
  animation: stadaHeroCopyIn 0.42s ease-out 0.54s both;
}

@keyframes stadaHeroCirclePrimaryOut {
  0% {
    opacity: 1;
    transform: translate3d(0, -50%, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(-78vw, -50%, 0) scale(0.98);
  }
}

@keyframes stadaHeroCircleSecondaryOut {
  0% {
    opacity: 1;
    transform: translate3d(0, -50%, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(-62vw, -50%, 0) scale(0.98);
  }
}

@keyframes stadaHeroCopyOut {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(-18px, 0, 0);
  }
}

@media (max-width: 760px) {
  header.stada-home-hero.has-carousel-transitioned.loaded:not(.is-changing-out):not(.is-changing-in)::before,
  header.stada-home-hero.has-carousel-transitioned.loaded:not(.is-changing-out):not(.is-changing-in)::after {
    transform: translate3d(0, 0, 0) scale(1);
  }

  header.stada-home-hero.is-changing-in::before {
    animation-name: stadaHistoryMobileCirclePrimary;
  }

  header.stada-home-hero.is-changing-in::after {
    animation-name: stadaHistoryMobileCircleSecondary;
  }

  header.stada-home-hero.is-changing-out::before {
    animation-name: stadaHomeMobileCirclePrimaryOut;
  }

  header.stada-home-hero.is-changing-out::after {
    animation-name: stadaHomeMobileCircleSecondaryOut;
  }
}

@keyframes stadaHomeMobileCirclePrimaryOut {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(-82vw, -4%, 0) scale(0.98);
  }
}

@keyframes stadaHomeMobileCircleSecondaryOut {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(-68vw, 2%, 0) scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stada-home-hero::before,
  .stada-home-hero::after,
  .stada-home-hero__copy {
    animation: none;
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }

  .stada-home-hero__copy {
    transform: none;
  }
}

/* Homepage sections below hero */
.home-main {
  background: #ffffff;
}

.home-section {
  position: relative;
  overflow: hidden;
}

.home-section__inner {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.home-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--home-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.home-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.home-reveal--left {
  transform: translate3d(-28px, 0, 0);
}

.home-reveal--right {
  transform: translate3d(28px, 0, 0);
}

.home-reveal--scale {
  transform: translate3d(0, 24px, 0) scale(0.985);
}

.home-reveal--left.is-visible,
.home-reveal--right.is-visible,
.home-reveal--scale.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .home-reveal,
  .home-reveal--left,
  .home-reveal--right,
  .home-reveal--scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.9rem;
  color: var(--stada-red);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker::before {
  content: '';
  width: 2rem;
  height: 3px;
  border-radius: 8px;
  background: var(--stada-red);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-header h2,
.about-copy h2,
.career-content h2,
.hero-products-text .hero-heading {
  margin: 0;
  color: #073b75;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-header h2,
.about-copy h2,
.career-content h2 {
  font-size: clamp(2rem, 3.5vw, 3.05rem);
}

.home-main .hero-btn {
  margin-top: 0.7rem;
  padding: 0.85rem 1.25rem;
  border: 2px solid var(--stada-blue);
  border-radius: 6px;
  background: var(--stada-blue);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 70, 122, 0.18);
}

.home-main .hero-btn:hover {
  background: #00467a;
  border-color: #00467a;
  box-shadow: 0 16px 30px rgba(0, 70, 122, 0.24);
}

.about-section.home-section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background:
    linear-gradient(135deg, rgba(0, 93, 185, 0.08) 0 32%, transparent 32% 100%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.about-section.home-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 93, 185, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 93, 185, 0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

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

.about-text {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
  max-width: 720px;
  color: #3f4d5f;
  font-size: 1.04rem;
  line-height: 1.78;
}

.about-text p {
  margin: 0;
}

.about-stats {
  display: grid;
  gap: 1.1rem;
  min-width: 0;
}

.about-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(0, 93, 185, 0.16);
  border-radius: 8px;
  background: #dfeaf2;
  box-shadow: 0 24px 52px rgba(8, 46, 84, 0.14);
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(1, 38, 77, 0.84) 100%);
}

.about-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-visual__caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 3;
  display: grid;
  gap: 0.35rem;
  color: #ffffff;
}

.about-visual__caption strong {
  color: #ffffff;
  font-size: 0.82rem;
  letter-spacing: 0;
  line-height: 1;
}

.about-visual__caption span {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.about-section .stats {
  display: grid;
  gap: 0.8rem;
}

.about-section .stat {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  min-height: 96px;
  padding: 1rem;
  border: 1px solid rgba(0, 93, 185, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(8, 46, 84, 0.07);
  color: #14365d;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
}

.about-section .stat::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--stada-red), var(--stada-blue));
}

.stat-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 93, 185, 0.09);
  color: var(--stada-blue);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.values-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.about-values {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.values-list li {
  display: grid;
  gap: 0.95rem;
  align-items: start;
  align-content: start;
  margin: 0;
  min-height: 180px;
  padding: 1rem 1rem 1.1rem;
  border: 1px solid rgba(0, 93, 185, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    linear-gradient(135deg, rgba(0, 93, 185, 0.08), rgba(228, 0, 43, 0.05));
  color: #405066;
  box-shadow: 0 12px 28px rgba(8, 46, 84, 0.055);
  font-size: 0.94rem;
  line-height: 1.52;
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 8px;
  background: var(--stada-red);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.news-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background:
    linear-gradient(135deg, #edf5fb 0%, #ffffff 48%, #f7fbfe 100%),
    repeating-linear-gradient(0deg, rgba(0, 93, 185, 0.04) 0 1px, transparent 1px 84px);
}

.news-section .section-header {
  align-items: end;
  margin-bottom: 1.35rem;
}

.news-header-copy {
  max-width: 720px;
}

.news-header-copy p:last-child {
  margin: 0.85rem 0 0;
  color: #526174;
  font-size: 1rem;
  line-height: 1.65;
}

.news-carousel {
  position: relative;
}

.news-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(320px, 31vw, 380px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.35rem 0.1rem 1.15rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.news-track::-webkit-scrollbar {
  display: none;
}

.news-card {
  position: relative;
  display: grid;
  grid-template-rows: 220px 1fr;
  min-height: 475px;
  overflow: hidden;
  border: 1px solid rgba(0, 93, 185, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(8, 46, 84, 0.08);
  scroll-snap-align: start;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.news-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  z-index: 2;
  background: linear-gradient(90deg, var(--stada-blue), var(--stada-red));
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 93, 185, 0.24);
  box-shadow: 0 26px 56px rgba(8, 46, 84, 0.13);
}

.news-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(239, 246, 251, 0.95), rgba(255, 255, 255, 0.9)),
    linear-gradient(90deg, rgba(0, 93, 185, 0.08), rgba(213, 0, 88, 0.05));
}

.news-card__media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(7, 59, 117, 0), rgba(7, 59, 117, 0.28));
  pointer-events: none;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.news-card__media--hq img {
  object-position: center center;
}

.news-card__media--production img {
  object-position: 58% center;
}

.news-card__media--lab-team img {
  object-position: center 38%;
}

.news-card__media--lab-detail img {
  object-position: center center;
}

.news-card__media--historic img {
  object-position: center center;
}

.news-card:hover .news-card__media img {
  transform: scale(1.04);
}

.news-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.2rem;
}

.news-card__date {
  align-self: flex-start;
  margin-bottom: 0.9rem;
  padding: 0.34rem 0.55rem;
  border-radius: 6px;
  background: rgba(0, 93, 185, 0.08);
  color: var(--stada-blue);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.news-card h3 {
  margin: 0;
  color: #173352;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.news-card p {
  display: -webkit-box;
  margin: 0.75rem 0 0;
  color: #526174;
  font-size: 0.94rem;
  line-height: 1.55;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.news-carousel__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem;
  border: 1px solid rgba(0, 93, 185, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(8, 46, 84, 0.07);
}

.news-carousel__button {
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: var(--stada-blue);
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.news-carousel__button:hover {
  background: #00467a;
  transform: translateY(-1px);
}

.news-carousel__button:focus-visible {
  outline: 3px solid rgba(213, 0, 88, 0.35);
  outline-offset: 3px;
}

.news-carousel__status {
  min-width: 58px;
  color: #173352;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.news-carousel__progress {
  position: relative;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 93, 185, 0.12);
}

.news-carousel__progress span {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--stada-blue), var(--stada-red));
  transform-origin: left center;
  transition: transform 0.28s ease, width 0.28s ease;
}

.career-section.home-section {
  padding: clamp(4.25rem, 7vw, 6rem) 0;
  background:
    linear-gradient(135deg, #ffffff 0%, #f6fafd 54%, #edf5fb 100%),
    repeating-linear-gradient(90deg, rgba(0, 93, 185, 0.045) 0 1px, transparent 1px 88px);
}

.career-section.home-section::before {
  content: '';
  position: absolute;
  inset: 0 0 0 auto;
  width: min(44vw, 620px);
  background: linear-gradient(145deg, rgba(0, 93, 185, 0.1), rgba(213, 0, 88, 0.07));
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 88%);
  pointer-events: none;
}

.career-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.68fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.career-media {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.career-media img {
  display: block;
  width: 100%;
  height: clamp(300px, 24vw, 380px);
  min-height: 0;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 20px 30px rgba(0, 46, 100, 0.18));
}

.career-media img:nth-child(2) {
  width: calc(86% + 10px);
  height: clamp(200px, 15.7vw, 255px);
  justify-self: center;
}

.career-content {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  max-width: 760px;
}

.career-content h2 {
  max-width: 680px;
  margin-bottom: 1.15rem;
  font-size: 2.7rem;
}

.career-section p {
  margin: 0 0 1rem;
  max-width: 730px;
  color: #405066;
  font-size: 1rem;
  line-height: 1.7;
}

.career-section p[data-i18n-key="career_par1"] {
  color: #213a58;
  font-size: 1.06rem;
  line-height: 1.72;
}

.career-content .career-facts {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
  margin: clamp(1.45rem, 2.6vw, 2rem) 0 clamp(1.3rem, 2.6vw, 1.8rem);
}

.career-content .career-fact {
  grid-column: span 2;
  min-height: 126px;
  padding: 1rem;
  border: 1px solid rgba(15, 39, 66, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  text-align: left;
  box-shadow: 0 14px 30px rgba(8, 46, 84, 0.075);
}

.career-content .career-fact:nth-child(4),
.career-content .career-fact:nth-child(5) {
  grid-column: span 3;
}

.career-fact .number {
  display: block;
  color: var(--stada-red);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 700;
  line-height: 1;
}

.career-fact .text {
  display: block;
  margin-top: 0.65rem;
  color: #526174;
  font-size: 0.86rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.hero-products.home-section {
  padding: clamp(4.5rem, 7vw, 6.75rem) 0 clamp(3.75rem, 6vw, 5.25rem);
  background:
    linear-gradient(118deg, rgba(0, 93, 185, 0.1) 0 36%, transparent 36% 100%),
    radial-gradient(circle at 92% 12%, rgba(228, 0, 43, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3f8fb 100%);
}

.hero-products.home-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 93, 185, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 93, 185, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.hero-products-container.products-showcase {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-products-text {
  max-width: 620px;
}

.hero-products-text .hero-label {
  margin: 0 0 0.85rem;
  color: var(--stada-red);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-products-text .hero-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.hero-products-text .hero-description {
  max-width: 560px;
  margin: 1rem 0 1.45rem;
  color: #415064;
  font-size: 1.05rem;
  line-height: 1.7;
}

.products-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 150px));
  gap: 0.75rem;
  margin: 0 0 1.3rem;
}

.products-highlight {
  min-height: 96px;
  padding: 0.9rem;
  border: 1px solid rgba(0, 93, 185, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(8, 46, 84, 0.06);
}

.products-highlight strong {
  display: block;
  color: var(--stada-red);
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1;
}

.products-highlight span {
  display: block;
  margin-top: 0.55rem;
  color: #405066;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-products-image {
  min-width: 0;
}

.products-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 410px;
  overflow: visible;
}

.products-stage img {
  position: relative;
  z-index: 1;
  width: min(106%, 680px);
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(8, 46, 84, 0.09));
}

.product-preview-shell {
  position: relative;
  z-index: 1;
  margin-top: clamp(1.35rem, 3vw, 2.25rem);
}

.product-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-preview-header .section-kicker {
  margin: 0;
}

.product-preview-header a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(0, 93, 185, 0.16);
  border-radius: 8px;
  background: #ffffff;
  color: #073b75;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(8, 46, 84, 0.055);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-preview-header a::after {
  content: '>';
  margin-left: 0.45rem;
  color: var(--stada-red);
  font-size: 1.2rem;
  line-height: 1;
}

.product-preview-header a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 93, 185, 0.3);
  box-shadow: 0 14px 30px rgba(8, 46, 84, 0.09);
}

.product-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0;
}

.product-preview-card {
  position: relative;
  --product-accent: var(--stada-blue);
  --product-accent-soft: rgba(0, 93, 185, 0.08);
  display: grid;
  grid-template-rows: auto minmax(148px, 1fr) auto;
  gap: 0.7rem;
  min-height: 250px;
  padding: 0.95rem;
  overflow: hidden;
  border: 1px solid rgba(0, 93, 185, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  color: #173352;
  text-decoration: none;
  box-shadow: 0 15px 34px rgba(8, 46, 84, 0.075);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--product-accent);
}

.product-preview-card--cold {
  --product-accent: #005db9;
  --product-accent-soft: rgba(0, 93, 185, 0.08);
}

.product-preview-card--digestive {
  --product-accent: #198754;
  --product-accent-soft: rgba(25, 135, 84, 0.08);
}

.product-preview-card--respiratory {
  --product-accent: #0091af;
  --product-accent-soft: rgba(0, 145, 175, 0.08);
}

.product-preview-card--immunity {
  --product-accent: #e4002b;
  --product-accent-soft: rgba(228, 0, 43, 0.07);
}

.product-preview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 93, 185, 0.3);
  box-shadow: 0 22px 46px rgba(8, 46, 84, 0.13);
}

.product-preview-card__category {
  position: relative;
  z-index: 1;
  justify-self: start;
  min-height: 28px;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  background: var(--product-accent-soft);
  color: #173352;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.product-preview-card img {
  position: relative;
  z-index: 1;
  align-self: center;
  width: 100%;
  height: 148px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(8, 46, 84, 0.12));
  transition: transform 0.22s ease;
}

.product-preview-card:hover img {
  transform: translateY(-3px) scale(1.02);
}

.product-preview-card__name {
  position: relative;
  z-index: 1;
  align-self: center;
  color: #173352;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  overflow-wrap: anywhere;
}

/* Company history page */
.history-page {
  background:
    radial-gradient(circle at 9% 12%, rgba(0, 93, 185, 0.08), transparent 30rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #f6f9fc 100%);
}

.history-page main {
  overflow: hidden;
}

.history-hero {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(135deg, rgba(0, 93, 185, 0.09), rgba(213, 0, 88, 0.05) 54%, rgba(255, 255, 255, 0.94)),
    #ffffff;
}

.history-hero::before {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 93, 185, 0.2), transparent);
}

.history-hero__inner,
.history-summary__inner,
.history-periods__inner,
.history-timeline__inner {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.history-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: clamp(2rem, 5vw, 4.8rem);
  align-items: center;
}

.history-hero__content,
.history-hero__visual,
.history-period__header,
.history-summary-card,
.history-event {
  min-width: 0;
}

.history-eyebrow {
  margin: 0 0 0.85rem;
  color: var(--stada-red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.history-hero h1 {
  margin: 0;
  color: #073b75;
  font-size: clamp(2.6rem, 6vw, 5.9rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.history-hero__content > p:not(.history-eyebrow) {
  max-width: 760px;
  margin: 1.35rem 0 0;
  color: #38526c;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.history-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.history-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.15rem;
  border: 1px solid rgba(0, 93, 185, 0.2);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.history-button--primary {
  background: var(--stada-blue);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 93, 185, 0.18);
}

.history-button--secondary {
  background: #ffffff;
  color: #073b75;
}

.history-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(7, 59, 117, 0.14);
}

.history-hero__visual {
  position: relative;
  max-width: 100%;
  min-height: clamp(360px, 42vw, 560px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(7, 59, 117, 0.16);
  isolation: isolate;
}

.history-hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 59, 117, 0.02), rgba(7, 59, 117, 0.34));
}

.history-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.02);
}

.history-hero__badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  min-width: 150px;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 34px rgba(7, 59, 117, 0.16);
}

.history-hero__badge strong {
  color: var(--stada-red);
  font-size: 2.1rem;
  line-height: 1;
}

.history-hero__badge span {
  color: #38526c;
  font-size: 0.92rem;
  font-weight: 700;
}

.history-summary {
  padding: clamp(2.2rem, 5vw, 4rem) 0;
  background: #ffffff;
}

.history-summary__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.history-summary-card {
  display: grid;
  grid-template-rows: 156px auto auto 1fr;
  min-height: 225px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(0, 93, 185, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 36px rgba(7, 59, 117, 0.08);
}

.history-summary-card__media {
  width: 100%;
  height: 156px;
  overflow: hidden;
  background: #e9f1f8;
}

.history-summary-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.history-summary-card:hover .history-summary-card__media img {
  transform: scale(1.04);
}

.history-summary-card span {
  display: inline-flex;
  padding: 1.05rem 1.15rem 0;
  color: var(--stada-red);
  font-size: 0.88rem;
  font-weight: 800;
}

.history-summary-card h2 {
  margin: 0.55rem 0 0;
  padding: 0 1.15rem;
  color: #073b75;
  font-size: 1.12rem;
  line-height: 1.25;
}

.history-summary-card p {
  margin: 0.55rem 0 0;
  padding: 0 1.15rem 1.2rem;
  color: #526174;
  font-size: 0.95rem;
  line-height: 1.58;
}

.history-periods {
  position: sticky;
  top: 82px;
  z-index: 9;
  padding: 0.75rem 0;
  background: rgba(247, 251, 255, 0.94);
  border-top: 1px solid rgba(0, 93, 185, 0.1);
  border-bottom: 1px solid rgba(0, 93, 185, 0.1);
  backdrop-filter: blur(14px);
}

.history-periods__inner {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: thin;
}

.history-periods a {
  flex: 0 0 auto;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(0, 93, 185, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: #073b75;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.history-periods a:hover {
  border-color: rgba(213, 0, 88, 0.42);
  color: var(--stada-red);
  transform: translateY(-1px);
}

.history-timeline {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
}

.history-section-heading {
  max-width: 850px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.history-section-heading h2 {
  margin: 0;
  color: #073b75;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.history-section-heading p:last-child {
  margin: 1rem 0 0;
  color: #526174;
  font-size: 1.02rem;
  line-height: 1.7;
}

.history-period {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.3rem, 4vw, 3.5rem);
  padding: clamp(2rem, 4vw, 3.4rem) 0;
  border-top: 1px solid rgba(0, 93, 185, 0.12);
  scroll-margin-top: 150px;
}

.history-period__header {
  position: sticky;
  top: 150px;
  align-self: start;
  padding: 1rem 0;
}

.history-period__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.68;
  margin: 0 0 1.15rem;
  overflow: hidden;
  border-radius: 8px;
  background: #e9f1f8;
  box-shadow: 0 20px 44px rgba(7, 59, 117, 0.12);
}

.history-period__media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 59, 117, 0), rgba(7, 59, 117, 0.2));
}

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

.history-period__header span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--stada-red);
  font-size: 0.92rem;
  font-weight: 800;
}

.history-period__header h3 {
  margin: 0;
  color: #073b75;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.12;
}

.history-period__header p {
  margin: 1rem 0 0;
  color: #526174;
  font-size: 0.98rem;
  line-height: 1.68;
}

.history-events {
  position: relative;
  display: grid;
  gap: 0.9rem;
}

.history-events::before {
  content: none;
}

.history-event {
  position: relative;
  display: grid;
  grid-template-columns: minmax(132px, 0.28fr) 76px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 0.85rem 1rem;
  min-height: 164px;
  overflow: hidden;
  padding: 0.78rem;
  border: 1px solid rgba(0, 93, 185, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(7, 59, 117, 0.07);
}

.history-event::before {
  content: none;
}

.history-event__media {
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  min-height: 148px;
  overflow: hidden;
  border-radius: 6px;
  background: #e9f1f8;
}

.history-event__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.history-event:hover .history-event__media img {
  transform: scale(1.04);
}

.history-event time {
  grid-column: 2;
  min-width: 0;
  color: var(--stada-blue);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.15;
}

.history-event h4 {
  grid-column: 3;
  margin: 0;
  color: #173352;
  font-size: 1.04rem;
  line-height: 1.35;
}

.history-event p {
  grid-column: 3;
  margin: -0.2rem 0 0;
  color: #526174;
  font-size: 0.95rem;
  line-height: 1.62;
}

@media (max-width: 1080px) {
  .history-hero__inner,
  .history-period {
    grid-template-columns: 1fr;
  }

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

  .history-period__header {
    position: relative;
    top: auto;
    padding-bottom: 0;
  }
}

@media (max-width: 720px) {
  .history-page,
  .history-page main,
  .history-page section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .history-hero__inner,
  .history-summary__inner,
  .history-periods__inner,
  .history-timeline__inner {
    width: min(calc(100vw - 1.5rem), 1200px);
  }

  .history-hero {
    padding-top: 3.5rem;
  }

  .history-hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.35rem);
    line-height: 1.12;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .history-hero__content > p:not(.history-eyebrow) {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.58;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .history-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .history-button {
    width: 100%;
    max-width: 100%;
    min-height: 46px;
  }

  .history-hero__visual {
    width: 100%;
    min-height: 300px;
  }

  .history-hero__badge {
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }

  .history-summary__inner {
    grid-template-columns: 1fr;
  }

  .history-periods {
    top: 66px;
  }

  .history-period {
    scroll-margin-top: 120px;
  }

  .history-event {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.55rem;
    padding: 1rem;
  }

  .history-event__media {
    grid-row: auto;
    min-height: 210px;
  }

  .history-events::before,
  .history-event::before {
    display: none;
  }

  .history-event time,
  .history-event h4,
  .history-event p {
    grid-column: auto;
    padding-left: 0;
  }
}

@media (max-width: 520px) {
  .history-hero__inner,
  .history-summary__inner,
  .history-periods__inner,
  .history-timeline__inner {
    width: min(calc(100vw - 1.5rem), 360px);
  }
}

.home-main + footer,
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef6fb 100%);
  color: #173352;
  isolation: isolate;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--stada-blue), var(--stada-red));
}

.site-footer::after {
  content: none;
}

.footer-modern {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  width: min(1200px, calc(100% - 2rem));
  padding: clamp(2.2rem, 4vw, 3.2rem) 0 0;
  text-align: left;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.5fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: start;
  padding: 0 0 clamp(1.55rem, 3.2vw, 2.35rem);
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 0.75rem;
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: var(--stada-blue);
  text-decoration: none;
}

.footer-logo img {
  display: none;
}

.footer-logo::before {
  content: 'STADA';
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--stada-blue);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.footer-eyebrow {
  margin: -0.25rem 0 0;
  color: #173352;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.footer-text {
  max-width: 460px;
  margin: 0;
  color: #526174;
  font-size: 0.98rem;
  line-height: 1.65;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.footer-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.65rem 0 0;
  border: 0;
  border-right: 1px solid rgba(0, 93, 185, 0.18);
  border-radius: 0;
  background: transparent;
  color: #073b75;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.footer-trust span:last-child {
  border-right: 0;
}

.footer-nav {
  position: relative;
  top: auto;
  z-index: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2.4rem);
  width: auto;
  min-width: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  transform: none;
  animation: none;
}

.footer-nav__group {
  position: relative;
  min-width: 0;
  padding-top: 0.9rem;
}

.footer-nav__group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 2px;
  background: rgba(213, 0, 88, 0.55);
}

.footer-nav__group h3 {
  margin: 0 0 0.75rem;
  color: #6d7888;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-nav__group a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0.34rem 0;
  border-radius: 0;
  color: #173352;
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.28;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-nav__group a::after {
  content: '>';
  position: absolute;
  right: 0;
  color: var(--stada-red);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-nav__group a:hover {
  background: transparent;
  color: var(--stada-blue);
  transform: translateX(4px);
}

.footer-nav__group a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.footer-warning {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  padding: 1.05rem 0;
  border-top: 1px solid rgba(0, 93, 185, 0.12);
  border-bottom: 1px solid rgba(0, 93, 185, 0.12);
  background: transparent;
}

.footer-warning strong {
  color: #073b75;
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer-warning p {
  margin: 0;
  color: #526174;
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 1rem 0 clamp(1rem, 2vw, 1.25rem);
  border-top: 1px solid rgba(0, 93, 185, 0.12);
  background: transparent;
}

.footer-bottom p {
  margin: 0;
  color: #526174;
  font-size: 0.86rem;
  line-height: 1.45;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.footer-bottom__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.55rem 0.75rem;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  color: #073b75;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-top::after {
  content: '^';
  margin-left: 0.45rem;
  color: #073b75;
  font-size: 0.92rem;
}

.footer-bottom__links a:hover {
  background: transparent;
  color: var(--stada-blue);
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .about-layout,
  .career-layout,
  .hero-products-container.products-showcase {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    align-items: stretch;
  }

  .products-stage {
    min-height: 380px;
  }

  .about-visual,
  .about-visual img {
    min-height: 320px;
  }

  .career-content,
  .career-media {
    grid-column: auto;
    grid-row: auto;
  }

  .career-content {
    order: 1;
  }

  .career-media {
    order: 2;
    min-height: 0;
    grid-template-columns: 1fr;
    justify-self: center;
    width: min(520px, 100%);
  }

  .career-media img {
    min-height: 0;
    height: clamp(230px, 36vw, 320px);
  }

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

  .career-content .career-fact,
  .career-content .career-fact:nth-child(4),
  .career-content .career-fact:nth-child(5) {
    grid-column: auto;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
  }

  .news-track {
    grid-auto-columns: clamp(300px, 44vw, 420px);
  }
}

@media (max-width: 720px) {
  .home-section__inner,
  .hero-products-container.products-showcase {
    width: min(100% - 1.5rem, 1200px);
  }

  .section-header {
    display: block;
  }

  .news-section .section-header {
    display: grid;
    gap: 1rem;
  }

  .news-carousel__controls {
    justify-self: start;
  }

  .about-section.home-section,
  .news-section,
  .career-section.home-section,
  .hero-products.home-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .about-stats,
  .about-values,
  .products-highlights,
  .career-content .career-facts,
  .product-preview-grid {
    grid-template-columns: 1fr;
  }

  .product-preview-header {
    display: grid;
    justify-items: start;
  }

  .about-visual,
  .about-visual img {
    min-height: 280px;
  }

  .about-section .stat,
  .values-list li {
    min-height: 0;
  }

  .news-track {
    grid-auto-columns: calc(100% - 0.2rem);
    gap: 0.8rem;
  }

  .news-card {
    grid-template-rows: 190px 1fr;
    min-height: 430px;
  }

  .news-card__body {
    padding: 1rem;
  }

  .career-section.home-section {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .career-content h2 {
    font-size: 2.05rem;
  }

  .career-media {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 0;
    width: 100%;
  }

  .career-media img {
    height: clamp(220px, 66vw, 290px);
  }

  .career-media img:nth-child(2) {
    width: calc(86% + 10px);
    height: clamp(155px, 44vw, 200px);
  }


  #backToTop.show {
    display: none;
  }

  .products-stage {
    min-height: 310px;
  }

  .products-stage img {
    width: 112%;
  }

  .product-preview-card {
    grid-template-rows: auto 132px auto;
    min-height: 228px;
  }

  .product-preview-card img {
    height: 132px;
  }

  .footer-modern {
    width: min(100% - 1.5rem, 1200px);
  }

  .footer-main,
  .footer-nav,
  .footer-warning {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    gap: 1rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom__links {
    justify-content: flex-start;
  }

  .footer-text {
    font-size: 0.94rem;
  }
}

/* STADA Worldwide page */
.worldwide-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 93, 185, 0.11), transparent 32rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #f6f8fb 100%);
}

.worldwide-page main,
.worldwide-page .site-footer {
  position: relative;
  z-index: 1;
}

.worldwide-page .menu {
  gap: 1rem;
}

.worldwide-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 1.5rem clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(135deg, rgba(0, 93, 185, 0.1), rgba(213, 0, 88, 0.05)),
    linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.worldwide-hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -42% 42%;
  height: 28rem;
  background: radial-gradient(circle, rgba(0, 93, 185, 0.14), transparent 68%);
  pointer-events: none;
}

.worldwide-hero__inner,
.worldwide-shell {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.worldwide-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.52fr);
  gap: clamp(2.25rem, 6vw, 5rem);
  align-items: end;
}

.worldwide-hero__content {
  min-width: 0;
  max-width: 720px;
}

.worldwide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--stada-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.worldwide-eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--stada-red);
  box-shadow: 0 0 0 6px rgba(213, 0, 88, 0.08);
}

.worldwide-hero h1 {
  max-width: 10ch;
  color: #082746;
  font-size: clamp(3.2rem, 7.2vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.worldwide-hero__subtitle {
  margin-top: 1.25rem;
  color: var(--stada-blue);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 700;
}

.worldwide-hero__lead {
  max-width: 660px;
  margin-top: 1rem;
  color: #4b5b6d;
  font-size: 1.08rem;
}

.worldwide-hero__stats {
  display: grid;
  min-width: 0;
  gap: 0.9rem;
}

.worldwide-hero__stats div {
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(0, 93, 185, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(0, 55, 112, 0.08);
  backdrop-filter: blur(12px);
}

.worldwide-hero__stats strong {
  display: block;
  color: var(--stada-blue);
  font-size: 1.8rem;
  line-height: 1;
}

.worldwide-hero__stats span {
  display: block;
  margin-top: 0.35rem;
  color: #59697a;
  font-size: 0.92rem;
}

.worldwide-hero--static {
  height: clamp(380px, 24vw, 456px);
  min-height: 0;
  padding: 0;
  background: #dfeaf6;
  --stada-hero-circle-color: 0, 93, 185;
}

.worldwide-hero--static::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 5%;
  right: auto;
  bottom: auto;
  left: -54vw;
  width: 104vw;
  height: 104vw;
  max-height: none;
  border-radius: 50%;
  background: rgba(var(--stada-hero-circle-color), 0.78);
  pointer-events: none;
}

.worldwide-hero--static::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 125%;
  right: auto;
  bottom: auto;
  left: -54vw;
  width: 104vw;
  height: 104vw;
  border-radius: 50%;
  background: rgba(var(--stada-hero-circle-color), 0.78);
  pointer-events: none;
  transform: translate3d(0, -50%, 0);
}

.worldwide-hero--static.loaded::before {
  animation: stadaHeroCirclePrimary 1.15s cubic-bezier(0.18, 0.78, 0.22, 1) 0.95s both;
}

.worldwide-hero--static.loaded::after {
  animation: stadaHeroCircleSecondary 1.3s cubic-bezier(0.16, 0.76, 0.2, 1) 1.05s both;
}

.worldwide-hero--static .worldwide-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.worldwide-hero--static .worldwide-hero__copy {
  width: min(500px, 40vw);
}

.worldwide-hero--static .worldwide-hero__kicker {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.worldwide-hero--static h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2.65rem, 3.75vw, 3.55rem);
  line-height: 1.15;
}

.worldwide-hero--static .worldwide-hero__lead {
  max-width: 30rem;
  margin: 0 0 1.45rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 700;
  line-height: 1.45;
}

.history-hero.worldwide-hero--static .worldwide-hero__media img {
  object-position: center center;
  filter: contrast(1.03);
}

.history-hero.worldwide-hero--static .history-hero__actions {
  display: block;
  margin: 0;
}

.history-hero.worldwide-hero--static .history-hero__visual {
  display: none;
}

@media (max-width: 760px) {
  .history-hero.worldwide-hero--static {
    height: min(560px, calc(100vh - 78px));
    min-height: 470px;
  }

  .history-hero.worldwide-hero--static::before,
  .history-hero.worldwide-hero--static::after {
    background: rgba(var(--stada-hero-circle-color), 0.86);
  }

  .history-hero.worldwide-hero--static::before {
    top: -137vw;
    left: -146vw;
    width: 245vw;
    height: 245vw;
    transform: translate3d(0, 0, 0);
  }

  .history-hero.worldwide-hero--static::after {
    top: -118vw;
    left: -162vw;
    width: 245vw;
    height: 245vw;
    transform: translate3d(0, 0, 0);
  }

  .history-hero.worldwide-hero--static.loaded::before {
    animation-name: stadaHistoryMobileCirclePrimary;
  }

  .history-hero.worldwide-hero--static.loaded::after {
    animation-name: stadaHistoryMobileCircleSecondary;
  }

  .history-hero.worldwide-hero--static .worldwide-hero__media img {
    width: 160%;
    max-width: none;
    object-position: 54% center;
    transform: translateX(-12%) scale(1.02);
  }

  .history-hero.worldwide-hero--static .worldwide-hero__copy {
    width: min(calc(100vw - 1.5rem), 360px);
    margin-left: clamp(1.5rem, 5vw, 3rem);
    padding-top: clamp(4.6rem, 13vh, 6.3rem);
  }

  .history-hero.worldwide-hero--static .worldwide-hero__kicker {
    margin-bottom: 0.65rem;
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }

  .history-hero.worldwide-hero--static h1,
  html[lang="kz"] .history-hero.worldwide-hero--static h1 {
    max-width: 7.6em;
    margin-bottom: 0.85rem;
    font-size: clamp(1.95rem, 8.8vw, 2.65rem);
    line-height: 1.06;
    overflow-wrap: normal;
    word-break: normal;
  }

  .history-hero.worldwide-hero--static .worldwide-hero__lead {
    max-width: 13.6rem;
    margin-bottom: 1.35rem;
    font-size: clamp(0.88rem, 3.85vw, 1.08rem);
    font-weight: 700;
    line-height: 1.34;
  }

  .history-hero.worldwide-hero--static .hero-btn {
    width: min(100%, 13.2rem);
    min-height: 40px;
    padding: 0.52rem 0.82rem;
    font-size: clamp(0.8rem, 3.45vw, 0.94rem);
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .history-hero.worldwide-hero--static {
    min-height: 450px;
  }

  .history-hero.worldwide-hero--static::before {
    top: -142vw;
    left: -142vw;
    width: 268vw;
    height: 268vw;
  }

  .history-hero.worldwide-hero--static::after {
    top: -115vw;
    left: -168vw;
    width: 268vw;
    height: 268vw;
  }

  .history-hero.worldwide-hero--static .worldwide-hero__copy {
    width: min(calc(100vw - 1.5rem), 360px);
    margin-left: 0.75rem;
    padding-top: 5.4rem;
  }

  .history-hero.worldwide-hero--static h1,
  html[lang="kz"] .history-hero.worldwide-hero--static h1 {
    font-size: clamp(2rem, 9.4vw, 2.65rem);
  }
}

@keyframes stadaHistoryMobileCirclePrimary {
  0% {
    opacity: 0;
    transform: translate3d(-82vw, -4%, 0) scale(0.98);
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes stadaHistoryMobileCircleSecondary {
  0% {
    opacity: 0;
    transform: translate3d(-68vw, 2%, 0) scale(0.98);
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.worldwide-shell {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.worldwide-dotted-surface {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
}

.worldwide-dotted-surface canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.worldwide-shell__header {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.worldwide-shell__header h2 {
  color: #082746;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.worldwide-shell__header p:not(.worldwide-eyebrow) {
  margin-top: 0.9rem;
  color: #5e6b78;
  font-size: 1.02rem;
}

.worldwide-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(560px, 1.1fr) minmax(470px, 0.9fr);
  grid-template-areas:
    "globe detail"
    "globe overview";
  grid-template-rows: 470px 380px;
  column-gap: clamp(1.5rem, 4vw, 3rem);
  row-gap: clamp(1rem, 2vw, 1.4rem);
  align-items: stretch;
}

.worldwide-info-column {
  grid-area: overview;
  display: grid;
  min-width: 0;
}

.worldwide-country-detail {
  grid-area: detail;
  min-width: 0;
}

.country-info-card,
.country-picker,
.globe-card {
  box-sizing: border-box;
  border: 1px solid rgba(0, 93, 185, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(0, 49, 99, 0.11);
}

.country-info-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 1.8rem);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.worldwide-country-detail .country-info-card {
  height: 100%;
  min-height: 0;
  overflow: auto;
  width: 100%;
}

.country-info-card.is-updating {
  animation: countryCardIn 0.38s ease both;
}

@keyframes countryCardIn {
  0% {
    opacity: 0.38;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.country-info-card__header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.35rem;
}

.country-info-card__flag,
.country-option img,
.globe-marker-label img {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 93, 185, 0.1);
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
}

.country-info-card__region {
  display: block;
  color: var(--stada-red);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.country-info-card h3 {
  margin-top: 0.15rem;
  color: #082746;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.05;
}

.country-info-card__rows {
  display: grid;
  gap: 0.75rem;
}

.country-info-card__row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(0, 93, 185, 0.09);
}

.country-info-card__row dt {
  color: #7a8796;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.country-info-card__row dd {
  min-width: 0;
  color: #26384a;
  font-size: 0.98rem;
}

.worldwide-country-detail .country-info-card__row {
  grid-template-columns: minmax(120px, 0.22fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.25rem);
}

.country-info-card a:not(.country-info-card__cta) {
  color: var(--stada-blue);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.country-info-card__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  min-height: 46px;
  margin-top: auto;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: var(--stada-blue);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(0, 93, 185, 0.24);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.country-info-card__cta:hover {
  transform: translateY(-2px);
  background: #004c98;
  box-shadow: 0 18px 32px rgba(0, 93, 185, 0.28);
}

.country-picker {
  padding: 1.15rem;
}

.worldwide-info-column .country-picker {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: clamp(1.2rem, 3vw, 1.75rem);
}

.country-picker__label {
  display: block;
  margin-bottom: 0.65rem;
  color: #173653;
  font-weight: 700;
}

.country-picker__search {
  position: relative;
  margin-bottom: 0.85rem;
}

.country-picker__search span {
  position: absolute;
  top: 50%;
  left: 0.95rem;
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid var(--stada-blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

.country-picker__search span::after {
  content: "";
  position: absolute;
  right: -0.35rem;
  bottom: -0.26rem;
  width: 0.45rem;
  height: 2px;
  border-radius: 999px;
  background: var(--stada-blue);
  transform: rotate(45deg);
}

.country-picker input {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 1rem 0.7rem 2.35rem;
  border: 1px solid rgba(0, 93, 185, 0.17);
  border-radius: 999px;
  background: #f8fbff;
  color: #172f48;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.country-picker input:focus {
  border-color: var(--stada-blue);
  box-shadow: 0 0 0 4px rgba(0, 93, 185, 0.1);
}

.country-picker__list {
  display: grid;
  max-height: 346px;
  gap: 0.55rem;
  overflow: auto;
  padding-right: 0.2rem;
}

.worldwide-info-column .country-picker__list {
  grid-template-columns: 1fr;
  min-height: 0;
  max-height: none;
  gap: 0.58rem;
  overflow: auto;
  padding-right: 0.35rem;
  scrollbar-gutter: stable;
}

.country-option {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(0, 93, 185, 0.1);
  border-radius: 8px;
  background: #ffffff;
  color: #21364d;
  cursor: pointer;
  text-align: left;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.country-option:hover,
.country-option.is-selected,
.country-option[aria-selected="true"] {
  transform: translateY(-1px);
  border-color: rgba(0, 93, 185, 0.38);
  background: #f2f8ff;
  box-shadow: 0 10px 24px rgba(0, 93, 185, 0.1);
}

.country-option__copy {
  display: grid;
  min-width: 0;
}

.country-option__copy strong {
  color: #0c2a47;
  font-size: 0.95rem;
}

.country-option__copy span {
  color: #68788a;
  font-size: 0.82rem;
}

.country-picker__empty {
  padding: 1rem;
  color: #68788a;
  text-align: center;
}

.worldwide-globe-panel {
  grid-area: globe;
  position: sticky;
  top: 96px;
  align-self: stretch;
}

.globe-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  height: 100%;
  padding: clamp(1rem, 2vw, 1.5rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 255, 0.92)),
    #ffffff;
}

.globe-card::before {
  content: "";
  position: absolute;
  inset: 12% auto auto 12%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(213, 0, 88, 0.08), transparent 70%);
  pointer-events: none;
}

.globe-card__topline,
.globe-card__hint {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.globe-card__topline span,
.globe-card__hint span {
  color: #758293;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.globe-card__topline strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 93, 185, 0.1);
  color: var(--stada-blue);
  font-size: 0.92rem;
}

.globe-map {
  position: relative;
  width: min(100%, 680px);
  margin: 0 auto;
  aspect-ratio: 1;
  isolation: isolate;
}

.globe-map canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  cursor: grab;
  opacity: 0;
  touch-action: none;
  transition: opacity 1s ease;
}

.globe-map::after {
  content: "";
  position: absolute;
  inset: 9%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 93, 185, 0.2), transparent 66%);
  filter: blur(24px);
}

.globe-label-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: visible;
  pointer-events: none;
}

.globe-marker-label {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.28rem;
  border: 1px solid rgba(0, 93, 185, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(0, 49, 99, 0.16);
  color: #112e4d;
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: auto;
  bottom: anchor(top);
  left: anchor(center);
  translate: -50% 0;
  margin-bottom: 8px;
  transition: opacity 0.8s ease, filter 0.8s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  will-change: opacity, filter;
}

.globe-marker-label img {
  width: 22px;
  height: 22px;
  opacity: 1;
}

.globe-marker-label.is-visible {
  pointer-events: auto;
}

.globe-marker-label:hover,
.globe-marker-label:focus-visible,
.globe-marker-label.is-selected {
  border-color: rgba(213, 0, 88, 0.36);
  background: var(--stada-blue);
  color: #ffffff;
}

.globe-marker-label.is-selected {
  box-shadow: 0 14px 30px rgba(0, 93, 185, 0.28), 0 0 0 4px rgba(213, 0, 88, 0.12);
}

.globe-marker-label__pointer {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.94);
  transform: translate3d(-50%, -1px, 0);
  transition: border-top-color 0.25s ease;
}

.globe-marker-label:hover .globe-marker-label__pointer,
.globe-marker-label:focus-visible .globe-marker-label__pointer,
.globe-marker-label.is-selected .globe-marker-label__pointer {
  border-top-color: var(--stada-blue);
}

.globe-fallback {
  position: absolute;
  inset: 17%;
  z-index: 4;
  display: none;
  place-items: center;
  border: 1px dashed rgba(0, 93, 185, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  color: #183a5f;
  text-align: center;
}

.globe-fallback strong,
.globe-fallback span {
  display: block;
}

.globe-fallback span {
  max-width: 15rem;
  margin-top: 0.45rem;
  color: #617386;
  font-size: 0.9rem;
}

.globe-map.has-fallback .globe-fallback {
  display: grid;
}

.globe-card__hint {
  padding-top: 0.4rem;
  border-top: 1px solid rgba(0, 93, 185, 0.09);
}

.globe-card__hint span:last-child {
  color: var(--stada-blue);
}

.worldwide-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.62s ease var(--worldwide-reveal-delay, 0ms), transform 0.62s ease var(--worldwide-reveal-delay, 0ms);
}

.worldwide-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .worldwide-reveal,
  .country-info-card,
  .country-option,
  .globe-marker-label,
  .country-info-card__cta {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .worldwide-hero__inner,
  .worldwide-layout {
    grid-template-columns: 1fr;
  }

  .worldwide-layout {
    grid-template-areas:
      "globe"
      "detail"
      "overview";
    grid-template-rows: auto;
  }

  .worldwide-hero__content {
    max-width: 760px;
  }

  .worldwide-hero h1 {
    max-width: 760px;
  }

  .worldwide-globe-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  .worldwide-hero__inner,
  .worldwide-shell {
    width: min(100% - 2rem, 1180px);
  }

  .worldwide-hero {
    padding-top: 3.5rem;
  }

  .worldwide-hero h1 {
    font-size: clamp(2.75rem, 16vw, 4rem);
  }

  .worldwide-hero__stats {
    grid-template-columns: 1fr;
  }

  .country-info-card__row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .worldwide-country-detail .country-info-card__row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .globe-card__topline,
  .globe-card__hint {
    align-items: flex-start;
    flex-direction: column;
  }

  .globe-map {
    margin: 2rem auto;
  }

  .globe-marker-label {
    padding: 0.22rem;
    font-size: 0.66rem;
  }

  .globe-marker-label img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 980px) {
  .worldwide-hero--static {
    height: clamp(360px, 42vw, 460px);
    padding: 0;
  }

  .worldwide-hero--static::before {
    top: 24%;
    left: -76vw;
    width: 150vw;
    height: 150vw;
  }

  .worldwide-hero--static::after {
    top: 118%;
    left: -76vw;
    width: 150vw;
    height: 150vw;
  }

  .worldwide-hero--static .worldwide-hero__copy {
    width: min(430px, 47vw);
    margin-left: 1rem;
    padding-top: clamp(3.25rem, 7vw, 4.8rem);
  }
}

@media (max-width: 760px) {
  .worldwide-hero--static {
    height: 460px;
    padding: 0;
  }

  .worldwide-hero--static::before {
    top: 42%;
    left: -108vw;
    width: 190vw;
    height: 190vw;
  }

  .worldwide-hero--static::after {
    top: 116%;
    left: -108vw;
    width: 190vw;
    height: 190vw;
  }

  .worldwide-hero--static .worldwide-hero__media img {
    width: 142%;
    max-width: none;
    object-position: 70% center;
  }

  .worldwide-hero--static .worldwide-hero__media img {
    object-position: center center;
  }

  .worldwide-hero--static .worldwide-hero__copy {
    width: min(330px, calc(100% - 2rem));
    margin-left: 1.25rem;
    padding-top: 4rem;
  }

  .worldwide-hero--static h1,
  html[lang="kz"] .worldwide-hero--static h1 {
    max-width: 13ch;
    margin-bottom: 1rem;
    color: #fff;
    font-size: 2.1rem;
    line-height: 1.16;
  }

  .worldwide-hero--static .worldwide-hero__lead {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
  }
}

/* STADA culture page */
@media (min-width: 769px) and (max-width: 1180px) {
  .menu {
    gap: 0.85rem;
  }

  .menu li a {
    font-size: 0.98rem;
  }
}

.culture-page {
  background: #f5f7fb;
}

.culture-page main {
  background: #ffffff;
}

.culture-section__inner {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.culture-eyebrow {
  margin: 0 0 0.8rem;
  color: var(--stada-red);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
}

.culture-hero {
  position: relative;
  height: clamp(440px, 68vh, 580px);
  min-height: 0;
  background: #0b2f55;
  isolation: isolate;
}

.culture-hero__media,
.culture-hero__shade {
  position: absolute;
  inset: 0;
}

.culture-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.culture-hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 42, 87, 0.92) 0%, rgba(0, 77, 146, 0.74) 42%, rgba(0, 77, 146, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.04));
}

.culture-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1180px, calc(100% - 3rem));
  height: 100%;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 4rem 0 6rem;
  color: #ffffff;
}

.culture-hero .culture-eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.culture-hero h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: 3.6rem;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.culture-hero__lead {
  max-width: 660px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.55;
}

.culture-hero__actions,
.culture-next__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.culture-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.culture-text-link::after {
  content: ">";
  font-weight: 700;
  transition: transform 0.25s ease;
}

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

.culture-text-link--dark {
  color: #ffffff;
}

.culture-hero__facts {
  position: absolute;
  right: max(1.5rem, calc((100% - 1180px) / 2));
  bottom: 1.5rem;
  z-index: 2;
  display: grid;
  width: min(520px, calc(100% - 3rem));
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 50px rgba(0, 34, 71, 0.22);
}

.culture-hero__facts div {
  min-width: 0;
  padding: 1rem;
  border-left: 1px solid rgba(0, 93, 185, 0.12);
}

.culture-hero__facts div:first-child {
  border-left: none;
}

.culture-hero__facts strong {
  display: block;
  color: var(--stada-blue);
  font-size: 1.55rem;
  line-height: 1;
}

.culture-hero__facts span {
  display: block;
  margin-top: 0.35rem;
  color: #4b5b6d;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.culture-purpose {
  padding: 5rem 0;
  background: #ffffff;
}

.culture-purpose__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 3rem;
  align-items: center;
}

.culture-purpose__copy h2,
.culture-section__header h2,
.culture-action__copy h2,
.culture-next h2 {
  color: #082746;
  font-size: 2.55rem;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.culture-purpose__copy p:not(.culture-eyebrow),
.culture-section__header p:not(.culture-eyebrow),
.culture-action-list p {
  color: #536273;
  font-size: 1.02rem;
}

.culture-purpose__copy p:not(.culture-eyebrow) {
  max-width: 780px;
  margin-top: 1rem;
}

.culture-purpose__statement {
  padding: 2rem;
  border: 1px solid rgba(0, 93, 185, 0.14);
  border-left: 6px solid var(--stada-red);
  border-radius: 8px;
  background: #f7fbff;
  box-shadow: 0 18px 44px rgba(0, 49, 99, 0.08);
}

.culture-purpose__statement span {
  display: block;
  color: var(--stada-blue);
  font-size: 0.95rem;
  font-weight: 700;
}

.culture-purpose__statement strong {
  display: block;
  margin-top: 1rem;
  color: #082746;
  font-size: 1.8rem;
  line-height: 1.18;
}

.culture-values {
  padding: 5rem 0;
  background: #f5f7fb;
}

.culture-section__header {
  max-width: 820px;
  margin-bottom: 2.4rem;
}

.culture-section__header p:not(.culture-eyebrow) {
  margin-top: 1rem;
}

.culture-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.culture-value-card {
  --culture-accent: var(--stada-blue);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 93, 185, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 49, 99, 0.08);
}

.culture-value-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--culture-accent);
}

.culture-value-card--integrity {
  --culture-accent: var(--stada-blue);
}

.culture-value-card--entrepreneurship {
  --culture-accent: #d50058;
}

.culture-value-card--agility {
  --culture-accent: #008a72;
}

.culture-value-card--one {
  --culture-accent: #f4a300;
}

.culture-value-card__top {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.45rem 1.45rem 1rem 1.8rem;
}

.culture-value-card__top > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--culture-accent) 12%, #ffffff);
  color: var(--culture-accent);
  font-weight: 700;
}

.culture-value-card h3 {
  color: #0f2f50;
  font-size: 1.55rem;
  line-height: 1.15;
}

.culture-value-card__top p {
  margin-top: 0.4rem;
  color: #5b6979;
  font-size: 0.98rem;
  font-weight: 700;
}

.culture-behavior-list {
  display: grid;
  gap: 0;
  padding: 0 1.45rem 1.45rem 1.8rem;
  list-style: none;
}

.culture-behavior-list li {
  display: grid;
  grid-template-columns: minmax(130px, 0.32fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.86rem 0;
  border-top: 1px solid rgba(0, 93, 185, 0.1);
}

.culture-behavior-list strong {
  color: #173653;
  font-size: 0.92rem;
}

.culture-behavior-list span {
  color: #5c6978;
  font-size: 0.94rem;
  line-height: 1.5;
}

.culture-action {
  padding: 5rem 0;
  background: #ffffff;
}

.culture-action__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.culture-action__media {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 26px 58px rgba(0, 49, 99, 0.14);
}

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

.culture-action-list {
  display: grid;
  margin-top: 1.5rem;
}

.culture-action-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(0, 93, 185, 0.12);
}

.culture-action-list article:last-child {
  border-bottom: 1px solid rgba(0, 93, 185, 0.12);
}

.culture-action-list span {
  color: var(--stada-red);
  font-weight: 700;
}

.culture-action-list h3 {
  grid-column: 2;
  color: #0f2f50;
  font-size: 1.18rem;
  line-height: 1.25;
}

.culture-action-list p {
  grid-column: 2;
  margin-top: 0.4rem;
}

.culture-next {
  padding: 4rem 0;
  background:
    linear-gradient(90deg, rgba(0, 93, 185, 0.96), rgba(0, 66, 128, 0.96)),
    #005db9;
}

.culture-next__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.culture-next .culture-eyebrow,
.culture-next h2 {
  color: #ffffff;
}

.culture-next h2 {
  max-width: 760px;
  font-size: 2.25rem;
}

.culture-next .hero-btn {
  background: #ffffff;
  color: var(--stada-blue);
  box-shadow: 0 16px 36px rgba(0, 27, 62, 0.22);
}

.culture-next .hero-btn:hover {
  background: #f2f7ff;
  color: var(--stada-blue);
}

@media (max-width: 980px) {
  .culture-purpose__layout,
  .culture-action__layout,
  .culture-values-grid {
    grid-template-columns: 1fr;
  }

  .culture-hero h1 {
    font-size: 3rem;
  }

  .culture-action__media {
    order: 2;
    aspect-ratio: 16 / 9;
  }

  .culture-action__copy {
    order: 1;
  }

  .culture-next__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .culture-section__inner,
  .culture-hero__content {
    width: min(100% - 2rem, 1180px);
  }

  .culture-hero {
    height: 520px;
  }

  .culture-hero__shade {
    background:
      linear-gradient(90deg, rgba(0, 42, 87, 0.9), rgba(0, 77, 146, 0.68)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.12));
  }

  .culture-hero__content {
    padding: 3.25rem 0 8.5rem;
  }

  .culture-hero h1 {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .culture-hero__lead {
    font-size: 1rem;
  }

  .culture-hero__facts {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
  }

  .culture-hero__facts div {
    padding: 0.82rem 0.7rem;
  }

  .culture-hero__facts strong {
    font-size: 1.25rem;
  }

  .culture-hero__facts span {
    font-size: 0.76rem;
  }

  .culture-purpose,
  .culture-values,
  .culture-action {
    padding: 3.5rem 0;
  }

  .culture-purpose__copy h2,
  .culture-section__header h2,
  .culture-action__copy h2,
  .culture-next h2 {
    font-size: 2rem;
  }

  .culture-purpose__statement {
    padding: 1.45rem;
  }

  .culture-purpose__statement strong {
    font-size: 1.45rem;
  }

  .culture-value-card__top,
  .culture-behavior-list {
    padding-right: 1.1rem;
    padding-left: 1.35rem;
  }

  .culture-value-card__top {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .culture-value-card__top > span {
    width: 40px;
    height: 40px;
  }

  .culture-value-card h3 {
    font-size: 1.35rem;
  }

  .culture-behavior-list li,
  .culture-action-list article {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .culture-action-list h3,
  .culture-action-list p {
    grid-column: auto;
  }

  .culture-next {
    padding: 3rem 0;
  }
}

/* STADA culture page refresh */
.culture-page {
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 40%, #f6f8fb 100%);
}

.culture-page main {
  background: transparent;
}

.culture-page .menu {
  gap: 1rem;
}

.culture-hero--worldwide {
  height: clamp(420px, 28vw, 456px);
  background: #dfeaf6;
  --stada-hero-circle-color: 0, 93, 185;
}

.culture-hero--worldwide .culture-hero__media,
.culture-hero--worldwide .worldwide-hero__media {
  z-index: 1;
}

.culture-hero--worldwide .culture-hero__media img {
  filter: saturate(1.05) contrast(1.02);
  object-position: center center;
}

.culture-hero--worldwide .culture-hero__copy {
  z-index: 5;
  width: min(540px, 43vw);
  padding-top: clamp(3.2rem, 4vw, 4.5rem);
}

.culture-hero--worldwide .culture-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.culture-hero--worldwide .culture-text-link {
  min-height: 44px;
  margin-top: 0;
  color: #ffffff;
}

.culture-hero--worldwide h1 {
  max-width: 16ch;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.culture-purpose {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background:
    linear-gradient(135deg, rgba(0, 93, 185, 0.05) 0 26%, transparent 26% 100%),
    #ffffff;
}

.culture-purpose::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(26vw, 320px);
  background: linear-gradient(180deg, rgba(213, 0, 88, 0.08), rgba(0, 93, 185, 0.08));
  clip-path: polygon(0 0, 72% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.culture-purpose__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  grid-template-areas:
    "visual copy"
    "bottom bottom";
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.culture-purpose__visual {
  grid-area: visual;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 93, 185, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 49, 99, 0.13);
  transform: rotate(-1.2deg);
}

.culture-purpose__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.culture-purpose__copy {
  grid-area: copy;
}

.culture-purpose__copy h2,
.culture-section__header h2,
.culture-action__copy h2,
.culture-next h2 {
  color: #082746;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.03;
}

.culture-purpose__copy p:not(.culture-eyebrow),
.culture-section__header p:not(.culture-eyebrow),
.culture-action-list p {
  color: #536273;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.65;
}

.culture-purpose__bottom {
  grid-area: bottom;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: stretch;
}

.culture-purpose .culture-purpose__statement {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 93, 185, 0.96), rgba(0, 67, 136, 0.96)),
    #005db9;
  box-shadow: 0 20px 50px rgba(0, 49, 99, 0.18);
}

.culture-purpose .culture-purpose__statement span,
.culture-purpose .culture-purpose__statement strong {
  color: #ffffff;
}

.culture-purpose .culture-purpose__statement strong {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.culture-purpose .culture-hero__facts {
  position: static;
  display: grid;
  width: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.culture-purpose .culture-hero__facts div {
  display: grid;
  align-content: center;
  min-height: 138px;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(0, 93, 185, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 49, 99, 0.09);
}

.culture-purpose .culture-hero__facts div:first-child {
  border-left: 1px solid rgba(0, 93, 185, 0.12);
}

.culture-purpose .culture-hero__facts strong {
  color: var(--stada-red);
  font-size: clamp(1.75rem, 4vw, 2.45rem);
}

.culture-purpose .culture-hero__facts span {
  color: #405166;
  font-size: 0.92rem;
}

.culture-values {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background:
    linear-gradient(180deg, #f5f8fc, #edf5ff);
}

.culture-section__header {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.5fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 3.4rem);
}

.culture-section__header .culture-eyebrow,
.culture-section__header h2 {
  grid-column: 1;
}

.culture-section__header p:not(.culture-eyebrow) {
  grid-column: 2;
  margin: 0;
}

.culture-values-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.culture-value-card {
  --culture-accent: var(--stada-blue);
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(0, 93, 185, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 55px rgba(0, 49, 99, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.culture-value-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--culture-accent) 32%, #ffffff);
  box-shadow: 0 30px 70px rgba(0, 49, 99, 0.15);
}

.culture-value-card::before {
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, var(--culture-accent), color-mix(in srgb, var(--culture-accent) 45%, #ffffff));
}

.culture-value-card--agility {
  --culture-accent: #2f78bd;
}

.culture-value-card--one {
  --culture-accent: #5b6fbd;
}

.culture-value-card__top {
  grid-template-columns: 44px minmax(86px, 0.28fr) minmax(0, 1fr);
  gap: clamp(0.8rem, 2vw, 1.1rem);
  align-items: center;
  padding: clamp(1.15rem, 2.4vw, 1.6rem) clamp(1.15rem, 2.4vw, 1.6rem) 1rem;
}

.culture-value-card__top > span {
  width: 44px;
  height: 44px;
  border: 1px solid color-mix(in srgb, var(--culture-accent) 22%, #ffffff);
  background: #ffffff;
  box-shadow: inset 0 0 0 6px color-mix(in srgb, var(--culture-accent) 10%, #ffffff);
}

.culture-value-card__icon {
  display: grid;
  width: min(100%, 108px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 15px 34px rgba(0, 49, 99, 0.1);
}

.culture-value-card__icon img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.culture-value-card h3 {
  color: #0f2f50;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.culture-value-card__top p {
  color: #4e5f72;
}

.culture-behavior-list {
  gap: 0.62rem;
  padding: 0 clamp(1.15rem, 2.4vw, 1.6rem) clamp(1.15rem, 2.4vw, 1.6rem);
}

.culture-behavior-list li {
  grid-template-columns: minmax(112px, 0.28fr) minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.78rem 0;
}

.culture-behavior-list strong {
  color: #102f50;
}

.culture-action {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.culture-action__layout {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 5vw, 4rem);
}

.culture-action__media {
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 49, 99, 0.16);
}

.culture-action-list {
  gap: 0.85rem;
}

.culture-action-list article {
  grid-template-columns: 54px minmax(0, 1fr);
  padding: 1.05rem;
  border: 1px solid rgba(0, 93, 185, 0.12);
  border-radius: 8px;
  background: #f8fbff;
}

.culture-action-list article:last-child {
  border-bottom: 1px solid rgba(0, 93, 185, 0.12);
}

.culture-action-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(213, 0, 88, 0.1);
}

.culture-action-list h3 {
  align-self: end;
}

.culture-next {
  background:
    linear-gradient(100deg, rgba(0, 93, 185, 0.98), rgba(6, 47, 91, 0.98) 62%, rgba(213, 0, 88, 0.92)),
    #005db9;
}

.culture-next .culture-eyebrow,
.culture-next h2 {
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .culture-value-card,
  .culture-purpose__visual {
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .culture-hero--worldwide {
    height: clamp(360px, 42vw, 460px);
  }

  .culture-hero--worldwide .culture-hero__copy {
    width: min(430px, 47vw);
  }

  .culture-purpose__layout,
  .culture-purpose__bottom,
  .culture-section__header,
  .culture-action__layout,
  .culture-values-grid {
    grid-template-columns: 1fr;
  }

  .culture-purpose__layout {
    grid-template-areas:
      "visual"
      "copy"
      "bottom";
  }

  .culture-purpose__visual {
    max-width: 680px;
  }

  .culture-section__header .culture-eyebrow,
  .culture-section__header h2,
  .culture-section__header p:not(.culture-eyebrow) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .culture-section__inner {
    width: min(100% - 2rem, 1180px);
  }

  .culture-hero--worldwide {
    height: 470px;
  }

  .culture-hero--worldwide .culture-hero__media img {
    width: 142%;
    max-width: none;
    object-position: 67% center;
  }

  .culture-hero--worldwide .culture-hero__copy {
    width: min(330px, calc(100% - 2rem));
    margin-left: 1.25rem;
    padding-top: 3.35rem;
  }

  .culture-hero--worldwide .culture-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }

  .culture-purpose .culture-hero__facts {
    grid-template-columns: 1fr;
  }

  .culture-purpose .culture-hero__facts div {
    min-height: 0;
  }

  .culture-value-card__top {
    grid-template-columns: 40px minmax(68px, 0.22fr) minmax(0, 1fr);
  }

  .culture-value-card__icon {
    width: 76px;
  }

  .culture-behavior-list li,
  .culture-action-list article {
    grid-template-columns: 1fr;
  }

  .culture-action-list h3,
  .culture-action-list p {
    grid-column: auto;
  }
}

/* Transparent official culture artwork and icon-led value showcase */
.culture-purpose__visual {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.culture-purpose__visual img {
  filter: drop-shadow(0 24px 34px rgba(0, 49, 99, 0.14));
}

.culture-icon-stage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.25rem);
  margin: 0 0 clamp(1.5rem, 4vw, 2.6rem);
}

.culture-icon-stage__item {
  --culture-icon-accent: var(--stada-blue);
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 330px;
  align-content: start;
  justify-items: center;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(0, 93, 185, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--culture-icon-accent) 9%, #ffffff), #ffffff 58%),
    #ffffff;
  box-shadow: 0 24px 60px rgba(0, 49, 99, 0.1);
  text-align: center;
}

.culture-icon-stage__item::before {
  content: "";
  position: absolute;
  inset: auto -18% -28% -18%;
  height: 42%;
  border-radius: 50% 50% 0 0;
  background: color-mix(in srgb, var(--culture-icon-accent) 12%, transparent);
  pointer-events: none;
}

.culture-icon-stage__item--integrity {
  --culture-icon-accent: var(--stada-blue);
}

.culture-icon-stage__item--entrepreneurship {
  --culture-icon-accent: var(--stada-red);
}

.culture-icon-stage__item--agility {
  --culture-icon-accent: #2f78bd;
}

.culture-icon-stage__item--one {
  --culture-icon-accent: #5b6fbd;
}

.culture-icon-stage__item img {
  position: relative;
  z-index: 1;
  width: min(100%, 190px);
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(0, 49, 99, 0.12));
}

.culture-icon-stage__item h3 {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin-top: 0.85rem;
  color: #0f2f50;
  font-size: clamp(1.12rem, 1.65vw, 1.42rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.culture-icon-stage__item p {
  position: relative;
  z-index: 1;
  max-width: 15rem;
  margin-top: 0.45rem;
  color: #536273;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.culture-value-card__top {
  grid-template-columns: 44px minmax(118px, 0.34fr) minmax(0, 1fr);
}

.culture-value-card__icon {
  width: min(100%, 150px);
  background: transparent;
  box-shadow: none;
}

.culture-value-card__icon img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 14px 16px rgba(0, 49, 99, 0.1));
}

@media (max-width: 1120px) {
  .culture-icon-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .culture-icon-stage {
    grid-template-columns: 1fr;
  }

  .culture-icon-stage__item {
    min-height: 0;
    grid-template-columns: 92px minmax(0, 1fr);
    column-gap: 1rem;
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .culture-icon-stage__item img {
    grid-row: span 2;
    width: 92px;
    height: 92px;
  }

  .culture-icon-stage__item h3 {
    margin-top: 0;
  }

  .culture-icon-stage__item p {
    max-width: none;
  }

  .culture-value-card__top {
    grid-template-columns: 38px 86px minmax(0, 1fr);
  }

  .culture-value-card__icon {
    width: 86px;
  }
}

/* Culture page readability polish */
.culture-page {
  --culture-ink: #102b46;
  --culture-muted: #4d5f70;
  --culture-line: rgba(0, 93, 185, 0.13);
  background: #f6f8fb;
}

.culture-page main {
  background: #ffffff;
}

.culture-section__inner {
  width: min(1120px, calc(100% - clamp(2rem, 6vw, 5rem)));
}

.culture-eyebrow {
  margin-bottom: 0.65rem;
  color: var(--stada-red);
  font-size: 0.82rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.culture-hero--worldwide {
  height: clamp(380px, 24vw, 456px);
  background: #d9e8f5;
}

.culture-hero--worldwide .culture-hero__media img {
  filter: saturate(1.02) contrast(1.04);
}

.culture-hero--worldwide .culture-hero__copy {
  width: min(500px, 40vw);
  padding-top: clamp(3.7rem, 4.5vw, 5.1rem);
  opacity: 0;
  transform: translate3d(-18px, 0, 0);
}

.culture-hero--worldwide.loaded .culture-hero__copy,
.culture-hero--worldwide.stada-home-hero.loaded .stada-home-hero__copy {
  animation: cultureHeroCopyIn 0.58s ease-out 1.05s both;
}

@keyframes cultureHeroCopyIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.culture-hero--worldwide .worldwide-hero__kicker {
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  letter-spacing: 0;
}

.culture-hero--worldwide h1,
html[lang="kz"] .culture-hero--worldwide h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: clamp(2.65rem, 3.75vw, 3.55rem);
  line-height: 1.15;
  text-wrap: balance;
  text-shadow: 0 3px 14px rgba(0, 31, 64, 0.28);
}

.culture-hero--worldwide .worldwide-hero__lead {
  max-width: 28rem;
  margin: 0 0 1.45rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-weight: 700;
  line-height: 1.45;
}

.culture-hero--worldwide .culture-hero__actions {
  gap: 0.75rem 1rem;
}

.culture-hero--worldwide .hero-btn {
  min-height: 46px;
  margin-top: 0;
  padding: 0.72rem 1.45rem;
  line-height: 1.2;
}

.culture-hero--worldwide .culture-text-link {
  padding: 0.25rem 0;
  line-height: 1.3;
}

.culture-purpose,
.culture-values,
.culture-action {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.culture-purpose {
  background:
    linear-gradient(135deg, rgba(0, 93, 185, 0.04) 0 24%, transparent 24% 100%),
    #ffffff;
}

.culture-purpose__layout {
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.culture-purpose__visual {
  justify-self: center;
  width: min(100%, 520px);
}

.culture-purpose__visual img {
  filter: drop-shadow(0 22px 30px rgba(0, 49, 99, 0.12));
}

.culture-purpose__copy h2,
.culture-section__header h2,
.culture-action__copy h2,
.culture-next h2 {
  max-width: 720px;
  color: var(--culture-ink);
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  line-height: 1.12;
  text-wrap: balance;
}

.culture-purpose__copy p:not(.culture-eyebrow),
.culture-section__header p:not(.culture-eyebrow),
.culture-action-list p {
  max-width: 62ch;
  color: var(--culture-muted);
  font-size: clamp(0.98rem, 1.05vw, 1.04rem);
  line-height: 1.72;
}

.culture-purpose__copy p:not(.culture-eyebrow) {
  margin-top: 0.85rem;
}

.culture-purpose__bottom {
  gap: clamp(0.9rem, 2vw, 1.25rem);
}

.culture-purpose .culture-purpose__statement {
  padding: clamp(1.3rem, 2.6vw, 1.9rem);
}

.culture-purpose .culture-purpose__statement strong {
  max-width: 15rem;
  font-size: clamp(1.28rem, 2.25vw, 1.72rem);
  line-height: 1.22;
}

.culture-purpose .culture-hero__facts {
  gap: clamp(0.75rem, 1.7vw, 1rem);
}

.culture-purpose .culture-hero__facts div {
  min-height: 116px;
  padding: 1rem;
  box-shadow: 0 14px 34px rgba(0, 49, 99, 0.08);
}

.culture-purpose .culture-hero__facts strong {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
}

.culture-purpose .culture-hero__facts span {
  margin-top: 0.35rem;
  line-height: 1.35;
}

.culture-values {
  background: #f3f7fb;
}

.culture-section__header {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.52fr);
  gap: clamp(1.1rem, 4vw, 3.2rem);
  align-items: start;
  margin-bottom: clamp(1.6rem, 4vw, 2.8rem);
}

.culture-section__header p:not(.culture-eyebrow) {
  padding-top: 0.35rem;
}

.culture-icon-stage {
  gap: clamp(0.8rem, 1.7vw, 1.1rem);
  margin-bottom: clamp(1.3rem, 3vw, 2.1rem);
}

.culture-icon-stage__item {
  min-height: 280px;
  padding: clamp(1rem, 1.8vw, 1.25rem);
  box-shadow: 0 18px 42px rgba(0, 49, 99, 0.09);
}

.culture-icon-stage__item img {
  width: min(100%, 150px);
  height: 150px;
}

.culture-icon-stage__item h3 {
  margin-top: 0.65rem;
  font-size: clamp(1.06rem, 1.35vw, 1.24rem);
  line-height: 1.16;
  text-wrap: balance;
  overflow-wrap: normal;
}

.culture-icon-stage__item p {
  max-width: 13.5rem;
  color: var(--culture-muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.culture-values-grid {
  gap: clamp(1rem, 2.4vw, 1.5rem);
}

.culture-value-card {
  align-content: start;
  box-shadow: 0 18px 44px rgba(0, 49, 99, 0.09);
}

.culture-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(0, 49, 99, 0.13);
}

.culture-value-card__top {
  grid-template-columns: 42px 92px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 1.25rem 1.35rem 1rem;
}

.culture-value-card__top > span {
  width: 42px;
  height: 42px;
  font-size: 0.88rem;
}

.culture-value-card__icon {
  width: 92px;
}

.culture-value-card h3 {
  font-size: clamp(1.18rem, 1.7vw, 1.48rem);
  line-height: 1.18;
  text-wrap: balance;
}

.culture-value-card__top p {
  margin-top: 0.25rem;
  color: var(--culture-muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.culture-behavior-list {
  gap: 0;
  padding: 0 1.35rem 1.35rem;
}

.culture-behavior-list li {
  display: block;
  padding: 0.86rem 0;
  border-top: 1px solid var(--culture-line);
}

.culture-behavior-list strong,
.culture-behavior-list span {
  display: block;
}

.culture-behavior-list strong {
  margin-bottom: 0.22rem;
  color: var(--culture-ink);
  font-size: 0.92rem;
  line-height: 1.3;
}

.culture-behavior-list span {
  color: var(--culture-muted);
  font-size: 0.93rem;
  line-height: 1.58;
}

.culture-action__layout {
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.culture-action__media {
  aspect-ratio: 5 / 6;
  box-shadow: 0 22px 54px rgba(0, 49, 99, 0.13);
}

.culture-action-list {
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.culture-action-list article {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: #f7fbff;
}

.culture-action-list span {
  width: 38px;
  height: 38px;
}

.culture-action-list h3 {
  font-size: 1.08rem;
  line-height: 1.28;
}

.culture-next {
  padding: clamp(3rem, 6vw, 4.3rem) 0;
}

.culture-next__inner {
  gap: clamp(1rem, 4vw, 3rem);
}

.culture-next h2 {
  max-width: 700px;
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.culture-next .culture-eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.culture-next__actions {
  flex-shrink: 0;
  gap: 0.65rem 1rem;
}

@media (max-width: 1120px) {
  .culture-icon-stage__item {
    min-height: 250px;
    grid-template-columns: 118px minmax(0, 1fr);
    column-gap: 1rem;
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .culture-icon-stage__item img {
    grid-row: span 2;
    width: 118px;
    height: 118px;
  }

  .culture-icon-stage__item h3 {
    margin-top: 0;
  }

  .culture-icon-stage__item p {
    max-width: 100%;
  }
}

@media (max-width: 980px) {
  .culture-hero--worldwide {
    height: clamp(360px, 42vw, 460px);
  }

  .culture-hero--worldwide .culture-hero__copy {
    width: min(440px, 50vw);
  }

  .culture-purpose__layout,
  .culture-purpose__bottom,
  .culture-section__header,
  .culture-action__layout,
  .culture-values-grid {
    grid-template-columns: 1fr;
  }

  .culture-purpose__visual {
    width: min(100%, 560px);
    justify-self: start;
  }

  .culture-section__header p:not(.culture-eyebrow) {
    max-width: 66ch;
    padding-top: 0;
  }

  .culture-action__media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 760px) {
  .culture-section__inner {
    width: min(100% - 1.5rem, 1120px);
  }

  .culture-hero--worldwide {
    height: 460px;
  }

  .culture-hero--worldwide .culture-hero__media img {
    width: 150%;
    object-position: 70% center;
  }

  .culture-hero--worldwide .culture-hero__copy {
    width: min(330px, calc(100% - 2rem));
    margin-left: 1.25rem;
    padding-top: 4rem;
  }

  .culture-hero--worldwide h1,
  html[lang="kz"] .culture-hero--worldwide h1 {
    max-width: 13ch;
    margin-bottom: 1rem;
    font-size: 2.1rem;
    line-height: 1.16;
  }

  .culture-hero--worldwide .worldwide-hero__lead {
    max-width: 20rem;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .culture-hero--worldwide .culture-hero__actions {
    gap: 0.5rem;
  }

  .culture-purpose,
  .culture-values,
  .culture-action {
    padding: 3rem 0;
  }

  .culture-purpose::before {
    width: 44vw;
  }

  .culture-purpose__layout {
    gap: 1.8rem;
  }

  .culture-purpose .culture-purpose__statement strong {
    max-width: 100%;
  }

  .culture-purpose .culture-hero__facts {
    grid-template-columns: 1fr;
  }

  .culture-purpose .culture-hero__facts div {
    min-height: 0;
    padding: 0.95rem 1rem;
  }

  .culture-icon-stage {
    gap: 0.8rem;
  }

  .culture-icon-stage__item {
    grid-template-columns: 78px minmax(0, 1fr);
    min-height: 0;
    padding: 0.95rem;
  }

  .culture-icon-stage__item img {
    width: 78px;
    height: 78px;
  }

  .culture-value-card__top {
    grid-template-columns: 38px 70px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 1rem 1rem 0.85rem;
  }

  .culture-value-card__top > span {
    width: 38px;
    height: 38px;
  }

  .culture-value-card__icon {
    width: 70px;
  }

  .culture-behavior-list {
    padding: 0 1rem 1rem;
  }

  .culture-action-list article {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 0.95rem;
  }

  .culture-action-list h3,
  .culture-action-list p {
    grid-column: 2;
  }

  .culture-next__inner {
    align-items: flex-start;
  }

  .culture-next__actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .culture-hero--worldwide .culture-hero__copy {
    width: min(330px, calc(100% - 2rem));
  }

  .culture-hero--worldwide h1,
  html[lang="kz"] .culture-hero--worldwide h1 {
    max-width: 11.5ch;
  }

  .culture-icon-stage__item,
  .culture-value-card__top {
    grid-template-columns: 1fr;
  }

  .culture-icon-stage__item img,
  .culture-value-card__icon {
    justify-self: start;
  }

  .culture-action-list article {
    grid-template-columns: 1fr;
  }

  .culture-action-list h3,
  .culture-action-list p {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .worldwide-page .worldwide-hero--static,
  .culture-page .culture-hero--worldwide {
    height: min(560px, calc(100vh - 78px));
    min-height: 470px;
  }

  .worldwide-page .worldwide-hero--static::before,
  .worldwide-page .worldwide-hero--static::after,
  .culture-page .culture-hero--worldwide::before,
  .culture-page .culture-hero--worldwide::after {
    background: rgba(var(--stada-hero-circle-color), 0.86);
  }

  .worldwide-page .worldwide-hero--static::before,
  .culture-page .culture-hero--worldwide::before {
    top: -137vw;
    left: -146vw;
    width: 245vw;
    height: 245vw;
    transform: translate3d(0, 0, 0);
  }

  .worldwide-page .worldwide-hero--static::after,
  .culture-page .culture-hero--worldwide::after {
    top: -118vw;
    left: -162vw;
    width: 245vw;
    height: 245vw;
    transform: translate3d(0, 0, 0);
  }

  .worldwide-page .worldwide-hero--static.loaded::before,
  .culture-page .culture-hero--worldwide.loaded::before {
    animation-name: stadaHistoryMobileCirclePrimary;
  }

  .worldwide-page .worldwide-hero--static.loaded::after,
  .culture-page .culture-hero--worldwide.loaded::after {
    animation-name: stadaHistoryMobileCircleSecondary;
  }

  .worldwide-page .worldwide-hero--static .worldwide-hero__media img,
  .culture-page .culture-hero--worldwide .worldwide-hero__media img {
    width: 160%;
    max-width: none;
    object-position: 54% center;
    transform: translateX(-12%) scale(1.02);
  }

  .worldwide-page .worldwide-hero--static .worldwide-hero__copy,
  .culture-page .culture-hero--worldwide .worldwide-hero__copy {
    width: min(calc(100vw - 1.5rem), 360px);
    margin-left: clamp(1.5rem, 5vw, 3rem);
    padding-top: clamp(4.6rem, 13vh, 6.3rem);
  }

  .worldwide-page .worldwide-hero--static .worldwide-hero__kicker,
  .culture-page .culture-hero--worldwide .worldwide-hero__kicker {
    margin-bottom: 0.65rem;
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }

  .worldwide-page .worldwide-hero--static h1,
  html[lang="kz"] .worldwide-page .worldwide-hero--static h1,
  .culture-page .culture-hero--worldwide h1,
  html[lang="kz"] .culture-page .culture-hero--worldwide h1 {
    max-width: 7.6em;
    margin-bottom: 0.85rem;
    font-size: clamp(1.95rem, 8.8vw, 2.65rem);
    line-height: 1.06;
    overflow-wrap: normal;
    word-break: normal;
  }

  .worldwide-page .worldwide-hero--static .worldwide-hero__lead,
  .culture-page .culture-hero--worldwide .worldwide-hero__lead {
    max-width: 13.6rem;
    margin-bottom: 1.35rem;
    font-size: clamp(0.88rem, 3.85vw, 1.08rem);
    font-weight: 700;
    line-height: 1.34;
  }

  .worldwide-page .worldwide-hero--static .hero-btn,
  .culture-page .culture-hero--worldwide .hero-btn {
    width: min(100%, 13.2rem);
    min-height: 40px;
    padding: 0.52rem 0.82rem;
    font-size: clamp(0.8rem, 3.45vw, 0.94rem);
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .worldwide-page .worldwide-hero--static,
  .culture-page .culture-hero--worldwide {
    min-height: 450px;
  }

  .worldwide-page .worldwide-hero--static::before,
  .culture-page .culture-hero--worldwide::before {
    top: -142vw;
    left: -142vw;
    width: 268vw;
    height: 268vw;
  }

  .worldwide-page .worldwide-hero--static::after,
  .culture-page .culture-hero--worldwide::after {
    top: -115vw;
    left: -168vw;
    width: 268vw;
    height: 268vw;
  }

  .worldwide-page .worldwide-hero--static .worldwide-hero__copy,
  .culture-page .culture-hero--worldwide .worldwide-hero__copy {
    width: min(calc(100vw - 1.5rem), 360px);
    margin-left: 0.75rem;
    padding-top: 5.4rem;
  }

  .worldwide-page .worldwide-hero--static h1,
  html[lang="kz"] .worldwide-page .worldwide-hero--static h1,
  .culture-page .culture-hero--worldwide h1,
  html[lang="kz"] .culture-page .culture-hero--worldwide h1 {
    font-size: clamp(2rem, 9.4vw, 2.65rem);
  }
}
