@charset "UTF-8";
/**
 * Product Layout – Single Product Page
 * Mobile-first · WCAG 2.2 AA · matches output.html design
 *
 * Everything is nested under .wea-product-layout so that each selector
 * compiles to at least two class levels, beating Elementor's generic
 * button / link / hover styles without needing manual resets.
 */
/* === SCSS Variables === */
/* 5.2:1 on white — use where white text on red needs AA contrast */
/* Grays */
/* Semantic */
/* Aliases */
/* === CSS Custom Properties === */
:root {
  /* Theme colors */
  --we-primary: #177AAB;
  --we-primary-text: #FFFFFF;
  --we-accent: #ED1C24;
  --we-accent-text: #FFFFFF;
  --we-text: #000000;
  --we-link: #177AAB;
  --we-shaded: #b9d7e6;
  /* Shared design tokens (used by product-layout, search-page, etc.) */
  --accent: #177AAB;
  --yellow: #FFCC00;
  --dark: #000000;
  --white: #FFFFFF;
  --bg: #ebebeb;
  --green: #2e8b3a;
  --ci-red: #ED1C24;
  /* Layout */
  --max-w: 1400px;
  /* Radii */
  --r-card: 14px;
  --r-pill: 12px;
  --r-btn: 12px;
}

/* === Type Scale ===
 * Named font-size variables for sizes reused across multiple components.
 * One-off sizes (e.g. product title, main price) stay as literals.
 *
 * Imported by style.scss and available to project SCSS files via
 * ScssParser's $import_paths pointing to assets/css/.
 */
/* === Type Scale ===
 * Named font-size variables for sizes reused across multiple components.
 * One-off sizes (e.g. product title, main price) stay as literals.
 *
 * Imported by style.scss and available to project SCSS files via
 * ScssParser's $import_paths pointing to assets/css/.
 */
/* === Shared Mixins ===
 * Imported by style.scss (global) and available to project SCSS files
 * via ScssParser's $import_paths pointing to assets/css/.
 *
 * These mixins extract patterns duplicated across header, live-search,
 * product-layout, and search-page stylesheets.
 */
/* ── Pill button ─────────────────────────────────────────────────────
 * Shared shape for ATC buttons, variant buttons, sidebar buttons.
 * Colors are passed as arguments so each context can set its own palette.
 *
 * Usage:
 *   @include pill-button(var(--accent), var(--white));
 */
/* ── Quantity stepper ────────────────────────────────────────────────
 * Pill-shaped wrapper + increment/decrement buttons + number input.
 * Sizes are passed as arguments (live-search is compact, product page is larger).
 *
 * Usage:
 *   .my-stepper { @include qty-stepper-wrap(30px); }
 *   .my-btn    { @include qty-stepper-btn(26px); }
 *   .my-input  { @include qty-stepper-input(34px); }
 */
/* ── Uppercase label ─────────────────────────────────────────────────
 * Small caps label used for section headers, facet titles, badge text.
 *
 * Usage:
 *   .my-label { @include uppercase-label; }
 *   .my-label { @include uppercase-label(0.75rem); }
 */
/* === Shared horizontal slider card styles ===
 * Used by product-layout (sidebar products, related blog posts)
 * and blog-recommendations (product cards, related posts).
 *
 * Import into any SCSS file that renders wea-hslider-card markup:
 *   @import 'hslider-card';
 *
 * Requires: _colors.scss, _typography.scss, _mixins.scss */
.wea-hslider-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wea-hslider-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.wea-hslider-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wea-hslider-card-body {
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wea-hslider-card-name {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #000000;
  text-decoration: none;
}
.wea-hslider-card-name:hover {
  text-decoration: underline;
}

.wea-hslider-card-sub {
  font-size: 0.6rem;
  margin-bottom: 4px;
  flex: 1;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wea-hslider-card-price-line {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
}

.wea-hslider-card-price {
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.wea-hslider-card-price-meta {
  font-size: 0.5rem;
  line-height: 1.3;
  display: flex;
  color: #000000;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
}
.wea-hslider-card-price-meta > * + *::before {
  content: "•";
  margin: 0 3px;
}

/* Product cards: accent pill button */
.wea-hslider-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: #177AAB;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
  border-radius: var(--r-pill, 999px);
  border-radius: 999px;
  display: block;
  width: 100%;
  padding: 10px 8px;
  font-size: 0.6rem;
  letter-spacing: 0.5px;
  text-align: center;
  margin-top: auto;
}
.wea-hslider-card-btn:hover, .wea-hslider-card-btn:focus {
  background: #177AAB;
  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.08);
  color: #FFFFFF;
}

/* Blog cards: plain text link with blue accent line */
.wea-blog-related .wea-hslider-card-btn {
  background: transparent;
  border: none;
  color: #000000;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  padding: 8px 10px 6px;
  display: inline-block;
  position: relative;
  width: auto;
  border-radius: 0;
}
.wea-blog-related .wea-hslider-card-btn::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 60%;
  min-width: 120px;
  height: 2px;
  background: #177AAB;
}
.wea-blog-related .wea-hslider-card-btn:hover, .wea-blog-related .wea-hslider-card-btn:focus {
  background: transparent;
  box-shadow: none;
  color: #000000;
  text-decoration: none;
}

.wea-blog-card-cat {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999;
  margin-bottom: 4px;
}

.wea-hidden {
  display: none !important;
}

/* ── Custom properties defined globally in assets/css/_colors.scss ──── */
/* --accent, --yellow, --dark, --white, --bg, --green, --max-w, --r-card, --r-pill, --r-btn */
#primary {
  background-color: var(--white);
}
@media (min-width: 768px) {
  #primary {
    margin-top: 0;
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
}
#primary .site-main {
  max-width: none !important;
  padding-inline: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   Wrapper — every rule below compiles with .wea-product-layout prefix
   ═══════════════════════════════════════════════════════════════════════ */
.wea-product-layout {
  font-family: "Inter", sans-serif;
  /* ── Blanket Elementor / theme neutraliser ──────────────────────────
     A single generic reset for interactive elements. The .wea-product-layout
     ancestor gives these two-class specificity which beats Elementor's
     one-class e.g. `.elementor-widget a:hover`.
     ──────────────────────────────────────────────────────────────────── */
  /* Restore focus-visible for keyboard a11y */
  /* Force dark text on all headings/text — overrides Elementor theme kit blue */
  color: var(--dark);
  /* Theme h3 padding reset */
  /* Theme reset.css input override — prevent width:100%/padding blowout on qty */
  /* ── Screen-reader only ──────────────────────────────────────────── */
  /* ── Breadcrumb ──────────────────────────────────────────────────── */
  /* ── Layout ──────────────────────────────────────────────────────── */
  /* ── Product card — square (no border-radius) ──────────────────── */
  /* Gallery */
  /* Hover zoom: hide <img>, show zoomed background-image */
  /* Thumbs: mobile = vertical right column, flush against main image */
  /* Product info */
  /* Sale / Omnibus / unit price — always occupies its own row under the main
     price. Children may wrap to a new line if the combined width
     (strike-through price + omnibus notice + unit price) exceeds the
     container; each child individually still keeps its text on one line. */
  /* ── Package selector ──────────────────────────────────────────── */
  /* 4 options: 2-column grid */
  /* 5–6 options: 3-column grid, bottom row centered when incomplete */
  /* ── Free shipping ─────────────────────────────────────────────── */
  /* ── Trust badges ──────────────────────────────────────────────── */
  /* Apothekenqualität icon: CI red */
  /* ── Stock notice (out of stock) ───────────────────────────────── */
  /* ── Bundle items (WooSB) ──────────────────────────────────────── */
  /* ── Quantity + Cart ───────────────────────────────────────────── */
  /* ── Meta box (question link + AGB + tags) ─────────────────────── */
  /* ── FAQ + Details layout ──────────────────────────────────────── */
  /* ── Product details card — no border-radius ───────────────────── */
  /* Hinweise: accent background */
  /* ── FAQ pills ─────────────────────────────────────────────────── */
  /* +/− toggle reuses same classes as detail accordions */
  /* ── Sidebar ───────────────────────────────────────────────────── */
  /* ── Horizontal slider (related + blog) ────────────────────────── */
  /* Card base styles from shared partial (imported at root level) */
  /* Product-specific card overrides */
  /* Re-assert button colors — the blanket neutraliser above strips
     background/color from all a/button with two-class specificity,
     so the root-level _hslider-card.scss styles get overridden. */
  /* Blog section: plain text link, not pill */
  /* Blog section is now outside .wea-product-layout — see below */
  /* ── Mobile sticky bar ─────────────────────────────────────────── */
  /* ════════════════════════════════════════════════════════════════
     RESPONSIVE
     ════════════════════════════════════════════════════════════════ */
  /* ── Tablet (768px+) ───────────────────────────────────────────── */
  /* ── Desktop (1024px+) ─────────────────────────────────────────── */
  /* ── Print ──────────────────────────────────────────────────────── */
}
.wea-product-layout button,
.wea-product-layout a {
  color: inherit;
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  outline: none;
  transition: none;
  text-decoration: none;
}
.wea-product-layout button:hover, .wea-product-layout button:focus, .wea-product-layout button:active,
.wea-product-layout a:hover,
.wea-product-layout a:focus,
.wea-product-layout a:active {
  color: inherit;
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  outline: none;
}
.wea-product-layout :focus-visible {
  outline: 2px solid var(--dark, #1a1a1a);
  outline-offset: 2px;
}
.wea-product-layout h1,
.wea-product-layout h2,
.wea-product-layout h3,
.wea-product-layout h4,
.wea-product-layout h5,
.wea-product-layout h6 {
  color: var(--dark);
}
.wea-product-layout h3 {
  padding-bottom: 0;
  margin-bottom: 0;
}
.wea-product-layout input[type=number] {
  width: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  transition: none;
}
.wea-product-layout .wea-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.wea-product-layout .wea-breadcrumb {
  padding: 8px;
  font-size: 0.75rem;
  background: var(--white);
  color: var(--dark);
}
.wea-product-layout .wea-breadcrumb a {
  color: var(--dark);
}
.wea-product-layout .wea-breadcrumb a:hover {
  text-decoration: underline;
}
.wea-product-layout .wea-breadcrumb span {
  margin: 0 5px;
}
.wea-product-layout .wea-breadcrumb strong {
  color: var(--dark);
  font-weight: 600;
}
.wea-product-layout .wea-breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0;
}
.wea-product-layout .wea-page-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0;
}
.wea-product-layout .wea-content-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wea-product-layout .wea-main-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wea-product-layout .wea-card {
  background: var(--white);
  border-radius: var(--r-card);
  overflow: hidden;
}
.wea-product-layout .wea-product-card {
  padding: 0 12px;
  border-radius: 0;
  position: relative;
  /* Edge-to-edge gray divider under product top box */
}
.wea-product-layout .wea-product-card::after {
  content: "";
  display: block;
  position: relative;
  left: -12px;
  width: calc(100% + 24px);
  height: 1px;
  background: #e0e0e0;
  margin-top: 16px;
}
.wea-product-layout .wea-product-gallery {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.wea-product-layout .wea-gallery-main {
  flex: 1;
  aspect-ratio: 1;
  max-height: 33vh;
  background: var(--white);
  border-radius: 0;
  border-right: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.wea-product-layout .wea-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wea-product-layout .wea-gallery-zoom {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  margin: 0;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  cursor: pointer;
}
.wea-product-layout .wea-gallery-zoom svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
}
.wea-product-layout .wea-gallery-zoom:hover, .wea-product-layout .wea-gallery-zoom:focus, .wea-product-layout .wea-gallery-zoom:active {
  background-color: var(--white);
}
.wea-product-layout .wea-gallery-main.wea-zoom-active {
  cursor: zoom-in;
  background-repeat: no-repeat;
}
.wea-product-layout .wea-gallery-main.wea-zoom-active img {
  opacity: 0;
}
.wea-product-layout .wea-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 0 0 min(110px, 22.5vw);
  /* flex-start keeps ≤2 thumbs compact at the top instead of stretching */
  justify-content: flex-start;
  /* Cap at 3 thumbs; 4th peeks below as scroll affordance */
  max-height: calc(3 * min(110px, 22.5vw));
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scrollbar-width: thin; /* visible on non-touch = a11y scroll hint */
}
.wea-product-layout .wea-gallery-thumb {
  width: 100%;
  aspect-ratio: 1;
  flex: 0 0 auto;
  scroll-snap-align: start;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  cursor: pointer;
  overflow: hidden;
}
.wea-product-layout .wea-gallery-thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.wea-product-layout .wea-gallery-thumb.active {
  border-bottom-color: var(--accent);
}
.wea-product-layout .wea-gallery-thumb:hover, .wea-product-layout .wea-gallery-thumb:focus {
  border-bottom-color: var(--accent);
  background-color: transparent;
}
.wea-product-layout .wea-product-category {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-block-start: 0;
  margin-block-end: 0;
}
.wea-product-layout .wea-product-category span {
  margin: 0 6px;
}
.wea-product-layout .wea-product-title {
  text-transform: none;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 4px 0;
  padding-bottom: 0;
}
.wea-product-layout .wea-product-desc-short {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.wea-product-layout .wea-product-desc-text {
  display: inline;
  min-width: 0;
}
.wea-product-layout .wea-desc-more {
  display: inline;
  border: 0;
  padding: 0;
  background: transparent;
  text-decoration: underline;
  font-size: 0.65rem;
}
.wea-product-layout .wea-desc-more:hover {
  background: #f5f5f5;
}
.wea-product-layout .wea-product-price {
  font-size: 1.6rem;
  font-weight: 500;
  flex-shrink: 0;
}
.wea-product-layout .wea-product-price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
}
.wea-product-layout .wea-product-price-meta {
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--dark);
}
.wea-product-layout .wea-product-price-meta .wea-delivery {
  color: var(--green);
  font-weight: 600;
}
.wea-product-layout .wea-product-price-meta .wea-delivery--backorder {
  color: #d4a017;
}
.wea-product-layout .wea-product-price-meta .wea-delivery--oos {
  color: var(--ci-red);
}
.wea-product-layout .wea-price-sale-info {
  flex-basis: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.wea-product-layout .wea-price-was {
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: line-through;
  opacity: 0.5;
  flex-shrink: 0;
}
.wea-product-layout .wea-omnibus-notice {
  font-size: 0.65rem;
  color: var(--dark);
  line-height: 1.4;
  flex: 0.3 33%;
}
.wea-product-layout .wea-omnibus-notice[hidden] {
  display: none;
}
.wea-product-layout .wea-omnibus-notice .wc-price-history-shortcode {
  display: inline;
}
.wea-product-layout .wea-unit-price {
  font-size: 0.65rem;
  color: var(--dark);
  opacity: 0.75;
  line-height: 1.4;
  white-space: nowrap;
  margin-top: 4px;
}
.wea-product-layout .wea-unit-price[hidden] {
  display: none;
}
.wea-product-layout .wea-pzn {
  border-left: 1px solid var(--dark);
  padding-left: 10px;
  font-size: 0.65rem;
  color: var(--dark);
  opacity: 0.75;
  line-height: 1.4;
  white-space: nowrap;
  margin-top: 4px;
}
.wea-product-layout .wea-pzn[hidden] {
  border-left: unset;
  display: none;
}
.wea-product-layout .wea-package-selector {
  margin-top: 16px;
  margin-bottom: 8px;
  border: none;
  padding: 0;
}
.wea-product-layout .wea-package-selector legend {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: block;
  padding: 0;
}
.wea-product-layout .wea-package-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.wea-product-layout .wea-package-option {
  flex: 1 1 0%;
  border: solid #e6e6e6;
  border-width: 1px 0 1px 1px;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s;
  min-width: 0;
  position: relative;
}
.wea-product-layout .wea-package-option:last-child {
  border-right-width: 1px;
}
.wea-product-layout .wea-package-option:hover {
  border-color: var(--accent);
}
.wea-product-layout .wea-package-option.active {
  border-bottom: 2px solid var(--accent);
}
.wea-product-layout .wea-package-grid > .wea-package-option {
  flex: 1 1 calc(50% - 1px);
}
.wea-product-layout .wea-package-grid > .wea-package-option:nth-child(n+3) {
  border-top-width: 0;
}
.wea-product-layout .wea-package-grid > .wea-package-option:nth-child(2n) {
  border-right-width: 1px;
}
.wea-product-layout .wea-package-grid > .wea-package-option:last-child:nth-child(odd) {
  border-right-width: 0;
}
.wea-product-layout .wea-package-grid-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wea-product-layout .wea-package-grid-3 > .wea-package-option {
  flex: 0 0 33.3333333333%;
  border-width: 1px 0 0 1px;
}
.wea-product-layout .wea-package-grid-3 > .wea-package-option:nth-child(-n+3) {
  border-top-width: 1px;
}
.wea-product-layout .wea-package-grid-3 > .wea-package-option:nth-child(3n+1) {
  border-left-width: 1px;
}
.wea-product-layout .wea-package-grid-3 > .wea-package-option:nth-child(3n) {
  border-right-width: 1px;
}
.wea-product-layout .wea-package-grid-3 > .wea-package-option:last-child {
  border-right-width: 1px;
}
.wea-product-layout .wea-package-grid-3 > .wea-package-option:hover {
  border-bottom: 1px solid var(--accent);
}
.wea-product-layout .wea-package-grid-3 > .wea-package-option.active {
  border-bottom: 2px solid var(--accent);
}
.wea-product-layout .wea-pkg-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.5rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.wea-product-layout .wea-pkg-title {
  font-size: 0.65rem;
  font-weight: 700;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.wea-product-layout .wea-pkg-days {
  font-size: 0.6rem;
  margin-bottom: 4px;
  color: var(--dark);
}
.wea-product-layout .wea-pkg-price-line {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: nowrap;
}
.wea-product-layout .wea-pkg-price {
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}
.wea-product-layout .wea-pkg-save {
  font-size: 0.6rem;
  color: var(--ci-red);
  font-weight: 500;
  white-space: nowrap;
}
.wea-product-layout .wea-free-shipping {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 2px 3px;
  letter-spacing: 0.5px;
  color: var(--dark);
  display: inline-block;
  position: relative;
}
.wea-product-layout .wea-free-shipping::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  min-width: 120px;
  height: 2px;
  background: var(--accent);
}
.wea-product-layout .wea-trust-badges {
  display: flex;
  justify-content: space-around;
  gap: 0;
  margin-bottom: 16px;
  padding: 14px 0;
}
.wea-product-layout .wea-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  flex: 1;
  padding: 0 16px;
}
.wea-product-layout .wea-trust-badge + .wea-trust-badge {
  border-left: 1px solid #e0e0e0;
}
.wea-product-layout .wea-trust-badge-icon svg {
  width: 16px;
  height: 16px;
}
.wea-product-layout .wea-trust-badge:first-child .wea-trust-badge-icon {
  color: var(--ci-red);
}
.wea-product-layout .wea-trust-badge-label {
  font-size: 0.5rem;
  font-weight: 600;
}
.wea-product-layout .wea-stock-notice {
  padding: 12px 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--dark);
}
.wea-product-layout .wea-stock-notice--out .wea-stock-notice__label {
  color: var(--ci-red);
}
.wea-product-layout .wea-stock-notice__alt-link {
  display: inline;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--dark);
  text-decoration: underline;
  font-size: 0.65rem;
  font-weight: 400;
}
.wea-product-layout .wea-stock-notice__alt-link:hover {
  background: #f5f5f5;
}
.wea-product-layout #wea-alternatives {
  scroll-margin-top: calc(var(--wp-admin--admin-bar--height, 0px) + 120px);
}
.wea-product-layout .wea-bundle-items {
  margin-bottom: 16px;
}
.wea-product-layout .wea-bundle-items .woosb-products {
  font-size: 0.75rem;
  font-family: inherit;
}
.wea-product-layout .wea-bundle-items .woosb-product {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border, #e0e0e0);
}
.wea-product-layout .wea-bundle-items .woosb-product:first-child {
  border-top: 1px solid var(--border, #e0e0e0);
}
.wea-product-layout .wea-bundle-items .woosb-thumb img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.wea-product-layout .wea-bundle-items .woosb-title {
  flex: 1;
  min-width: 0;
}
.wea-product-layout .wea-bundle-items .woosb-name,
.wea-product-layout .wea-bundle-items .woosb-name a {
  font-size: 0.75rem;
  font-family: inherit;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
}
.wea-product-layout .wea-bundle-items .woosb-price {
  font-size: 0.75rem;
  font-family: inherit;
  text-align: right;
  white-space: nowrap;
}
.wea-product-layout .wea-bundle-items .woocommerce-Price-amount {
  font-size: 0.75rem;
  font-family: inherit;
}
.wea-product-layout .wea-cart-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.wea-product-layout .wea-tcm-spoon,
.wea-product-layout .wea-tcm-ginger {
  flex: 1 100%;
  font-size: 0.8rem;
}
.wea-product-layout .wea-qty-sel {
  display: flex;
  align-items: center;
  border: 1px solid var(--dark, #000);
  border-radius: var(--r-pill, 999px);
  overflow: hidden;
  height: 44px;
  border-radius: 999px;
  flex-shrink: 0;
  background: var(--white);
  border-color: #e0e0e0;
}
.wea-product-layout .wea-qty-btn {
  width: 38px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--dark, #000);
  padding: 0;
  font-weight: 600;
}
.wea-product-layout .wea-qty-btn:hover {
  background: var(--bg-light, #f0f0f0);
}
.wea-product-layout .wea-qty-input {
  width: 36px;
  height: 100%;
  border: none;
  border-left: 1px solid var(--dark, #000);
  border-right: 1px solid var(--dark, #000);
  border-radius: 0;
  text-align: center;
  color: var(--dark, #000);
  background: var(--white, #fff);
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
  padding: 0;
  font-weight: 700;
  font-size: 0.95rem;
  border-left-color: #e0e0e0;
  border-right-color: #e0e0e0;
}
.wea-product-layout .wea-qty-input::-webkit-inner-spin-button, .wea-product-layout .wea-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.wea-product-layout .wea-atc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
  border-radius: var(--r-pill, 999px);
  border-radius: 999px;
  flex: 1;
  min-width: 0;
  height: 48px;
  font-size: 0.85rem;
  gap: 8px;
  letter-spacing: 0.5px;
}
.wea-product-layout .wea-atc-btn svg {
  width: 28px;
  height: 28px;
}
.wea-product-layout .wea-atc-btn:hover, .wea-product-layout .wea-atc-btn:focus {
  background-color: var(--accent);
  color: var(--white);
  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.08);
}
.wea-product-layout .wea-atc-btn:focus-visible {
  outline: 2px solid var(--dark);
  outline-offset: 2px;
}
.wea-product-layout .wea-atc-btn[aria-busy=true] {
  opacity: 0.6;
  pointer-events: none;
}
.wea-product-layout .wea-meta-box {
  background: var(--white);
  border-radius: 0;
  padding: 0 20px 20px;
  margin-bottom: 0;
  width: 100%;
}
.wea-product-layout .wea-question-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: underline;
}
.wea-product-layout .wea-question-link svg {
  width: 18px;
  height: 18px;
}
.wea-product-layout .wea-agb-notice {
  font-size: 0.72rem;
  margin-bottom: 14px;
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #e6e6e6;
}
.wea-product-layout .wea-agb-notice a {
  text-decoration: underline;
}
.wea-product-layout .wea-tag-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.wea-product-layout .wea-tag-badge {
  display: inline-flex;
  padding: 5px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.wea-product-layout .wea-faq-details-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
.wea-product-layout .wea-faq-column {
  width: 100%;
  order: 1;
  background: var(--white);
  padding: 20px 16px;
}
.wea-product-layout .wea-details-column {
  order: 2;
}
.wea-product-layout .wea-details-card {
  padding: 0;
  border-radius: 0;
}
.wea-product-layout .wea-details-card-title-wrap {
  background: var(--bg);
  padding: 16px 16px 12px;
}
.wea-product-layout .wea-details-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.wea-product-layout .wea-detail-item + .wea-detail-item {
  border-top: 1px solid #e6e6e6;
}
.wea-product-layout .wea-detail-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-right: 20px;
  padding-bottom: 14px;
  padding-left: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}
.wea-product-layout .wea-detail-trigger:hover {
  background-color: #fafafa;
}
.wea-product-layout .wea-detail-trigger-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wea-product-layout .wea-detail-trigger-left svg,
.wea-product-layout .wea-detail-trigger-left .wea-detail-icon-img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  /* Design SVGs use 32x32 viewBox with ~6px internal padding.
     Scale up to fill the allotted space without editing the files. */
  transform: scale(1.45);
  transform-origin: center;
}
.wea-product-layout .wea-detail-toggle {
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  color: var(--dark);
}
.wea-product-layout .wea-detail-panel {
  display: none;
  padding: 0 20px 20px 48px;
  font-size: 0.875rem;
  line-height: 1.65;
  scroll-margin-top: 80px;
  /* Any table inside accordion panels — striped, no borders */
}
.wea-product-layout .wea-detail-panel p {
  margin-bottom: 10px;
}
.wea-product-layout .wea-detail-panel ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.wea-product-layout .wea-detail-panel ul li {
  list-style: disc;
  margin-bottom: 4px;
}
.wea-product-layout .wea-detail-panel ol {
  padding-left: 18px;
  margin-bottom: 10px;
}
.wea-product-layout .wea-detail-panel ol li {
  margin-bottom: 4px;
}
.wea-product-layout .wea-detail-panel strong {
  font-weight: 700;
}
.wea-product-layout .wea-detail-panel h2 {
  font-size: 1rem;
  font-weight: 700;
  padding: 0;
  margin: 0 0 10px;
  text-transform: none;
}
.wea-product-layout .wea-detail-panel h3 {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0;
  margin: 0 0 10px;
  text-transform: none;
}
.wea-product-layout .wea-detail-panel h4 {
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0;
  margin: 0 0 10px;
  text-transform: none;
}
.wea-product-layout .wea-detail-panel blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  margin: 10px 0;
  font-style: italic;
}
.wea-product-layout .wea-detail-panel a {
  text-decoration: underline;
}
.wea-product-layout .wea-detail-panel table {
  width: 100%;
  border-collapse: collapse;
  margin: 6px 0;
  border: none;
}
.wea-product-layout .wea-detail-panel table tr:nth-child(odd) {
  background: #f5f5f5;
}
.wea-product-layout .wea-detail-panel table tr:nth-child(even) {
  background: transparent;
}
.wea-product-layout .wea-detail-panel table td,
.wea-product-layout .wea-detail-panel table th {
  padding: 6px;
  font-size: 0.83rem;
  border: none;
}
.wea-product-layout .wea-detail-panel table td:last-child,
.wea-product-layout .wea-detail-panel table th:last-child {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}
.wea-product-layout .wea-detail-item[data-open=true] .wea-detail-panel {
  display: block;
}
.wea-product-layout .wea-detail-item[data-open=true] .wea-t-plus {
  display: none;
}
.wea-product-layout .wea-detail-item[data-open=true] .wea-t-minus {
  display: inline !important;
}
.wea-product-layout .wea-t-minus {
  display: none !important;
}
.wea-product-layout .wea-detail-item.wea-hinweise-item {
  background: var(--we-shaded);
  color: var(--black);
}
.wea-product-layout .wea-detail-item.wea-hinweise-item .wea-detail-trigger {
  color: var(--black);
}
.wea-product-layout .wea-detail-item.wea-hinweise-item .wea-detail-trigger:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.wea-product-layout .wea-detail-item.wea-hinweise-item .wea-detail-toggle {
  color: var(--black);
}
.wea-product-layout .wea-detail-item.wea-hinweise-item .wea-detail-panel {
  padding-bottom: 24px;
  color: var(--black);
}
.wea-product-layout .wea-detail-item.wea-hinweise-item .wea-detail-panel a {
  color: var(--black);
}
.wea-product-layout .wea-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  padding-bottom: 3px;
  display: inline-block;
  position: relative;
  align-self: flex-start;
  /* Blue accent bar under the heading — ~60% of the text width, left-aligned */
}
.wea-product-layout .wea-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  min-width: 120px;
  width: 60%;
  height: 2px;
  background: var(--accent);
}
.wea-product-layout .wea-faq-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wea-product-layout .wea-faq-pill {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}
.wea-product-layout .wea-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px 14px 48px;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}
.wea-product-layout .wea-faq-trigger:hover {
  background-color: #fafafa;
}
.wea-product-layout .wea-faq-pill .wea-t-minus {
  display: none;
}
.wea-product-layout .wea-faq-pill .wea-t-plus {
  display: inline;
}
.wea-product-layout .wea-faq-pill[data-open=true] .wea-t-minus {
  display: inline !important;
}
.wea-product-layout .wea-faq-pill[data-open=true] .wea-t-plus {
  display: none;
}
.wea-product-layout .wea-faq-panel {
  display: none;
  padding: 0 48px 14px 48px;
  font-size: 0.875rem;
  line-height: 1.65;
}
.wea-product-layout .wea-faq-panel p {
  margin-block: 0;
}
.wea-product-layout .wea-faq-pill[data-open=true] .wea-faq-panel {
  display: block;
}
.wea-product-layout .wea-sidebar-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  padding: 20px 16px;
  margin-top: 16px;
}
.wea-product-layout .wea-hslider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.wea-product-layout .wea-hslider::-webkit-scrollbar {
  height: 4px;
}
.wea-product-layout .wea-hslider::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 4px;
}
.wea-product-layout .wea-hslider-card {
  flex: 0 0 200px;
  margin-bottom: 16px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--r-card);
}
.wea-product-layout .wea-hslider-card-img {
  max-height: 28vh;
}
.wea-product-layout .wea-hslider-card-btn {
  background: #177AAB;
  color: #FFFFFF;
}
.wea-product-layout .wea-hslider-card-btn:hover, .wea-product-layout .wea-hslider-card-btn:focus {
  background: #177AAB;
  color: #FFFFFF;
  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.08);
}
.wea-product-layout .wea-hslider-card-btn[aria-busy=true] {
  opacity: 0.6;
  pointer-events: none;
}
.wea-product-layout .wea-blog-section .wea-hslider-card-btn {
  background: transparent;
  color: #000000;
  text-align: left;
  display: inline-block;
  width: auto;
  border-radius: 0;
  position: relative;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 10px 6px;
}
.wea-product-layout .wea-blog-section .wea-hslider-card-btn::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 60%;
  min-width: 120px;
  height: 2px;
  background: #177AAB;
}
.wea-product-layout .wea-blog-section .wea-hslider-card-btn:hover, .wea-product-layout .wea-blog-section .wea-hslider-card-btn:focus {
  background: transparent;
  color: #000000;
  box-shadow: none;
}
.wea-product-layout .wea-mobile-sticky {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid #e0e0e0;
  padding: 8px 12px;
  gap: 8px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  align-items: center;
  z-index: 99;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
}
.wea-product-layout .wea-mobile-sticky.wea-sticky-visible {
  transform: translateY(0);
}
.wea-product-layout .wea-msb-img {
  width: 44px;
  height: 44px;
  background: #f5f5f5;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
}
.wea-product-layout .wea-msb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.wea-product-layout .wea-msb-info {
  flex: 1;
  min-width: 0;
}
.wea-product-layout .wea-msb-name {
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wea-product-layout .wea-msb-variation {
  font-size: 0.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wea-product-layout .wea-msb-meta {
  font-size: 0.6rem;
}
.wea-product-layout .wea-msb-price {
  font-weight: 700;
}
.wea-product-layout .wea-msb-stock {
  color: var(--green);
}
.wea-product-layout .wea-msb-stock--backorder {
  color: #d4a017;
}
.wea-product-layout .wea-msb-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.wea-product-layout .wea-msb-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--dark, #000);
  border-radius: var(--r-pill, 999px);
  overflow: hidden;
  height: 30px;
  border-radius: 999px;
  background: var(--white);
  border-width: 1.5px;
  border-color: #e0e0e0;
}
.wea-product-layout .wea-msb-qty button {
  width: 26px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--dark, #000);
  padding: 0;
  font-size: 0.85rem;
}
.wea-product-layout .wea-msb-qty button:hover {
  background: var(--bg-light, #f0f0f0);
}
.wea-product-layout .wea-msb-qty input {
  width: 26px;
  height: 100%;
  border: none;
  border-left: 1px solid var(--dark, #000);
  border-right: 1px solid var(--dark, #000);
  border-radius: 0;
  text-align: center;
  color: var(--dark, #000);
  background: var(--white, #fff);
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
  padding: 0;
  font-size: 0.7rem;
  font-weight: 700;
  border-left-color: #e0e0e0;
  border-right-color: #e0e0e0;
}
.wea-product-layout .wea-msb-qty input::-webkit-inner-spin-button, .wea-product-layout .wea-msb-qty input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.wea-product-layout .wea-msb-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
  border-radius: var(--r-pill, 999px);
  border-radius: 999px;
  height: 34px;
  padding: 0 16px;
  gap: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}
.wea-product-layout .wea-msb-buy svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.wea-product-layout .wea-msb-buy:hover, .wea-product-layout .wea-msb-buy:focus {
  background-color: var(--accent);
  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.08);
}
.wea-product-layout .wea-msb-buy:focus-visible {
  outline: 2px solid var(--dark);
  outline-offset: 2px;
}
.wea-product-layout .wea-msb-buy[aria-busy=true] {
  opacity: 0.6;
  pointer-events: none;
}
@media (min-width: 768px) {
  .wea-product-layout {
    /* Gallery: thumbs below */
    /* 4+ images: shrink to 30% so the 4th peeks in as scroll affordance */
    /* Product top: gallery left 50%, info right 50% */
    /* Bundle items: float up between pricing and trust badges on desktop.
       order unset (0) → title, brand, desc, price-line, package-selector
       order: 1        → .wea-bundle-items (pulled up from bottom of DOM)
       order: 2        → free-shipping, trust-badges, cart-form (remain below) */
    /* Package sizes */
    /* Free shipping label */
    /* Trust badges */
    /* FAQ + Details: grid — FAQ spans full height left, meta-box + details stacked right */
    /* FAQ tablet+: well-rounded pills */
    /* Produktdetails heading: visible at all breakpoints with blue underline */
    /* Blog slider: stretch cards full width */
  }
  .wea-product-layout .wea-breadcrumb {
    background: transparent;
  }
  .wea-product-layout .wea-product-category {
    margin-block-start: 10px;
    margin-block-end: 10px;
    font-size: 0.65rem;
  }
  .wea-product-layout .wea-page-container {
    padding: 0;
  }
  .wea-product-layout .wea-content-layout {
    gap: 16px;
  }
  .wea-product-layout .wea-main-column {
    gap: 16px;
  }
  .wea-product-layout .wea-faq-details-layout {
    gap: 16px;
  }
  .wea-product-layout .wea-faq-column {
    background: transparent;
    padding: 0;
  }
  .wea-product-layout .wea-sidebar-column {
    background: #f9f9f9;
    padding: 16px;
    margin-top: 0;
    /* More room for name at tablet (cards share row width) */
  }
  .wea-product-layout .wea-sidebar-column .wea-hslider {
    overflow-x: visible;
  }
  .wea-product-layout .wea-sidebar-column .wea-hslider-card {
    flex: 1 1 0;
    min-width: 0;
  }
  .wea-product-layout .wea-sidebar-column .wea-hslider-card-name {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .wea-product-layout .wea-meta-box {
    padding-top: 20px;
    margin-bottom: 16px;
  }
  .wea-product-layout .wea-details-card-title-wrap {
    background: transparent;
    padding: 0 0 12px;
  }
  .wea-product-layout .wea-blog-section {
    padding: 0;
  }
  .wea-product-layout .wea-blog-section .wea-hslider-card-img {
    height: clamp(160px, 20vw, 220px);
  }
  .wea-product-layout .wea-product-card {
    padding: 0;
  }
  .wea-product-layout .wea-product-gallery {
    flex-direction: column;
    gap: 10px;
  }
  .wea-product-layout .wea-gallery-main {
    aspect-ratio: 1;
    max-height: none;
    border-right: none;
  }
  .wea-product-layout .wea-product-gallery-wrap {
    border-right: 1px solid #e6e6e6;
  }
  .wea-product-layout .wea-gallery-thumbs {
    flex-direction: row;
    /* Reset mobile flex-basis (was a width in row, becomes a height in column parent) */
    flex: 0 0 auto;
    width: auto;
    max-height: none;
    overflow-y: visible;
    gap: 0;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    /* Separate scrollbar track from the active border-bottom on thumbs */
    padding-bottom: 6px;
  }
  .wea-product-layout .wea-gallery-thumb {
    width: 33.3333333333%;
    height: auto;
    flex: 0 0 33.3333333333%;
    aspect-ratio: 1;
    background: transparent;
  }
  .wea-product-layout .wea-gallery-thumbs:has(.wea-gallery-thumb:nth-child(4)) .wea-gallery-thumb {
    width: 30%;
    flex: 0 0 30%;
  }
  .wea-product-layout .wea-product-top {
    display: flex;
    gap: 24px;
  }
  .wea-product-layout .wea-product-gallery-wrap {
    flex: 1 1 0;
    min-width: 0;
  }
  .wea-product-layout .wea-product-info-wrap {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
  .wea-product-layout .wea-bundle-items {
    order: 1;
  }
  .wea-product-layout .wea-free-shipping,
  .wea-product-layout .wea-trust-badges,
  .wea-product-layout .wea-cart-row,
  .wea-product-layout .wea-stock-notice {
    order: 2;
  }
  .wea-product-layout .wea-product-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  .wea-product-layout .wea-product-desc-short {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }
  .wea-product-layout .wea-product-price-line {
    margin-bottom: 20px;
  }
  .wea-product-layout .wea-package-selector {
    margin-bottom: 20px;
  }
  .wea-product-layout .wea-pkg-days {
    font-size: 0.65rem;
  }
  .wea-product-layout .wea-pkg-price {
    font-size: 0.95rem;
  }
  .wea-product-layout .wea-pkg-save {
    font-size: 0.65rem;
  }
  .wea-product-layout .wea-free-shipping {
    padding: 8px 0;
  }
  .wea-product-layout .wea-trust-badge {
    gap: 6px;
  }
  .wea-product-layout .wea-trust-badge-icon svg {
    width: 24px;
    height: 24px;
  }
  .wea-product-layout .wea-trust-badge-label {
    font-size: 0.6rem;
  }
  .wea-product-layout .wea-faq-details-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 24px;
  }
  .wea-product-layout .wea-faq-column {
    grid-column: 1;
    grid-row: 1/span 2;
    min-width: 0;
  }
  .wea-product-layout .wea-meta-box {
    grid-column: 2;
    grid-row: 1;
  }
  .wea-product-layout .wea-details-column {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
  }
  .wea-product-layout .wea-faq-pill {
    border-radius: 36px;
  }
  .wea-product-layout .wea-details-card-title-wrap {
    background: transparent;
    padding: 0 0 12px;
  }
  .wea-product-layout .wea-blog-section .wea-hslider {
    overflow-x: visible;
  }
  .wea-product-layout .wea-blog-section .wea-hslider-card {
    flex: 1 1 0;
    min-width: 0;
  }
}
@media (min-width: 1024px) {
  .wea-product-layout {
    /* Sidebar slightly wider than a strict 2/12 so related-product cards have
       more breathing room for their text. Mains give up a small slice each. */
    /* More generous internal padding for sidebar cards */
    /* Gallery + info: 5/12 each within main column */
    /* FAQ + Details: 5/10 each (equal within main column) */
  }
  .wea-product-layout .wea-mobile-sticky {
    display: none;
  }
  .wea-product-layout .wea-page-container {
    padding: 0 24px 24px;
  }
  .wea-product-layout .wea-content-layout {
    flex-direction: row;
    gap: 24px;
  }
  .wea-product-layout .wea-main-column {
    gap: 20px;
  }
  .wea-product-layout .wea-breadcrumb-inner {
    margin-top: 12px;
    padding: 0 24px;
  }
  .wea-product-layout .wea-sidebar-column {
    flex: 0 0 21.6666666667%;
    min-width: 0;
    /* Shrink heading only when sidebar is a narrow side column */
  }
  .wea-product-layout .wea-sidebar-column .wea-section-title {
    font-size: 0.75rem;
    letter-spacing: 1.2px;
    white-space: nowrap;
  }
  .wea-product-layout .wea-sidebar-column .wea-hslider {
    flex-direction: column;
    overflow-x: visible;
  }
  .wea-product-layout .wea-sidebar-column .wea-hslider-card {
    flex: 0 0 auto;
  }
  .wea-product-layout .wea-sidebar-column .wea-hslider-card-body {
    padding: 14px 16px;
  }
  .wea-product-layout .wea-product-card {
    padding: 0 24px 0 0;
  }
  .wea-product-layout .wea-product-gallery-wrap {
    flex: 0 0 50%;
    min-width: 0;
  }
  .wea-product-layout .wea-product-info-wrap {
    flex: 1 1 0;
    min-width: 0;
  }
  .wea-product-layout .wea-product-top {
    gap: 24px;
  }
  .wea-product-layout .wea-package-option {
    padding: 10px 14px;
  }
  .wea-product-layout .wea-pkg-title {
    font-size: 0.8rem;
  }
  .wea-product-layout .wea-faq-column {
    flex: 1 1 0;
    min-width: 0;
  }
  .wea-product-layout .wea-details-column {
    flex: 1 1 0;
    min-width: 0;
  }
  .wea-product-layout .wea-faq-details-layout {
    gap: 24px;
  }
}
@media print {
  .wea-product-layout .wea-mobile-sticky {
    display: none;
  }
}

/* Footer breathing room while mobile sticky bar is visible
 * (outside wrapper because body is the page root) */
body:has(.wea-mobile-sticky.wea-sticky-visible) {
  padding-bottom: 72px;
}

/* ── Blog section (full-width, outside .wea-product-layout) ──────── */
.wea-blog-section {
  border-top: 1px solid #e6e6e6;
  margin-top: 2rem;
  padding: 0 16px 2rem;
}

.wea-blog-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2rem;
}

.wea-blog-section .wea-hslider {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0 1rem;
  scrollbar-width: thin;
  scrollbar-color: #e0e0e0 transparent;
}

.wea-blog-section .wea-hslider-card {
  flex: 0 0 clamp(200px, 60vw, 280px);
  scroll-snap-align: start;
  border-radius: 0;
}

.wea-blog-section .wea-hslider-card-img {
  aspect-ratio: 16/10;
}

.wea-blog-section .wea-hslider-card-btn {
  background: transparent;
  color: #000000;
  text-align: left;
  display: inline-block;
  width: auto;
  border-radius: 0;
  position: relative;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 10px 6px;
}
.wea-blog-section .wea-hslider-card-btn::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 60%;
  min-width: 120px;
  height: 2px;
  background: #177AAB;
}
.wea-blog-section .wea-hslider-card-btn:hover, .wea-blog-section .wea-hslider-card-btn:focus {
  background: transparent;
  color: #000000;
  box-shadow: none;
  text-decoration: none;
}

.wea-blog-section .wea-hslider-card-name {
  font-size: 0.85rem;
}

.wea-blog-section .wea-hslider-card-sub {
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  body:has(.wea-mobile-sticky.wea-sticky-visible) {
    padding-bottom: 0;
  }
  .wea-blog-section .wea-hslider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    overflow-x: visible;
    scroll-snap-type: none;
  }
  .wea-blog-section .wea-hslider-card {
    flex: none;
  }
  /* --r-btn bump at tablet — must be on :root, outside wrapper */
  :root {
    --r-btn: 50px ;
  }
}