/*
 Theme Name:   SOS-Apo Child
 Theme URI:    https://sos-apo.de
 Description:  Custom child theme for SOS-Apo WooCommerce shop — SonnVita Vitamin D3 + K2
 Author:       SOS-Apo
 Author URI:   https://sos-apo.de
 Template:     astra
 Version:      1.7.0
 License:      GNU General Public License v2 or later
 Text Domain:  sos-apo-child
*/

/* ============================================================
   DESIGN SYSTEM — SOS-Apo Brand Tokens
   Edit these variables once → entire site updates
   ============================================================ */
:root {
  /* Primary — Brand Red */
  --red-50:  #FCE6E9;
  --red-100: #F9C2C8;
  --red-200: #F28A95;
  --red-300: #EC5563;
  --red-400: #E72439;
  --red:     #DF0022;
  --red-600: #BC001D;
  --red-700: #970017;
  --red-800: #730012;
  --red-900: #4E000C;

  /* Secondary — Navy */
  --navy:     #14233F;
  --navy-500: #2B3D5E;
  --navy-300: #6E7C95;
  --navy-100: #C3CAD6;
  --navy-900: #0F1B30;

  /* Accent — SonnVita Sun Amber */
  --sun-bg:   #FFF7E8;
  --sun-tint: #FDEFD2;
  --sun:      #F4B739;
  --sun-500:  #E2941C;
  --sun-600:  #C77B17;

  /* Neutrals */
  --ink:      #1A2235;
  --soft:     #5B6478;
  --muted:    #8C97AB;
  --line:     #ECEAF0;
  --surface:  #F7F7FA;
  --bg:       #FFFFFF;

  /* Semantic */
  --success:  #1F9D55;
  --warning:  #E0A12A;
  --error:    #B3261E;
  --info:     #2D6CDF;
  --sage:     #4F7A57;

  /* Tints */
  --tint-red:   #FCEEF0;
  --tint-amber: #FBF3E4;

  /* Spacing scale */
  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 32px;
  --sp-2xl: 48px;
  --sp-3xl: 64px;
  --sp-4xl: 96px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px -2px rgba(20, 35, 63, 0.08);
  --shadow-md: 0 8px 24px -8px rgba(20, 35, 63, 0.12);
  --shadow-lg: 0 14px 40px -16px rgba(20, 35, 63, 0.18);
  --shadow-cta: 0 12px 26px -12px rgba(223, 0, 34, 0.5);

  /* Typography */
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Hanken Grotesk', sans-serif;

  /* Container */
  --container-max: 1200px;
  --container-narrow: 800px;
}


/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}


/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--navy);
  margin-top: 0;
}

h1, .h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; }
h2, .h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); font-weight: 700; }
h3, .h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
h4      { font-size: 1.05rem; font-weight: 600; }

p {
  margin-top: 0;
  margin-bottom: var(--sp-md);
  color: var(--soft);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--red);
}

.text-red    { color: var(--red); }
.text-navy   { color: var(--navy); }
.text-sun    { color: var(--sun-500); }
.text-soft   { color: var(--soft); }
.text-muted  { color: var(--muted); }


/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--sp-md);
  padding-right: var(--sp-md);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--sp-xl);
    padding-right: var(--sp-xl);
  }
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-top: var(--sp-3xl);
  padding-bottom: var(--sp-3xl);
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--sp-4xl);
    padding-bottom: var(--sp-4xl);
  }
}


/* ============================================================
   COMPONENT: Section label (eyebrow / kick)
   ============================================================ */
.kick {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: var(--sp-sm);
}


/* ============================================================
   COMPONENT: Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
  line-height: 1;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-cta);
}

.btn--primary:hover {
  background: var(--red-600);
  color: #fff;
}

.btn--sun {
  background: var(--sun);
  color: var(--navy);
}

.btn--sun:hover {
  background: var(--sun-500);
}

.btn--navy {
  background: var(--navy);
  color: #fff;
}

.btn--navy:hover {
  background: var(--navy-500);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn--outline:hover {
  border-color: var(--navy);
}

.btn--block {
  width: 100%;
  justify-content: center;
}


/* ============================================================
   COMPONENT: Pills / Chips
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #F0DCB4;
  border-radius: var(--r-full);
  padding: 6px 12px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--navy);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tint-red);
  border: 1px solid #F6DEE2;
  border-radius: var(--r-full);
  padding: 6px 12px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--navy);
}


/* ============================================================
   COMPONENT: Trust Bar
   ============================================================ */
.trustbar {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  padding: 14px 16px;
  background: var(--navy);
  color: #fff;
}

.trustbar__item {
  flex: 1;
  text-align: center;
  font-size: 0.68rem;
  line-height: 1.3;
  font-weight: 600;
}

.trustbar__icon {
  display: block;
  font-size: 1rem;
  margin-bottom: 3px;
}

@media (min-width: 768px) {
  .trustbar {
    padding: 16px var(--sp-xl);
    gap: var(--sp-md);
    border-radius: var(--r-md);
    max-width: var(--container-max);
    margin: var(--sp-md) auto;
  }

  .trustbar__item {
    font-size: 0.78rem;
  }
}


/* ============================================================
   COMPONENT: Card
   ============================================================ */
.card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

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


/* ============================================================
   COMPONENT: Pillar Grid (Why Us)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  .pillars {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-md);
  }
}

.pillar {
  background: #fff;
  border-radius: var(--r-md);
  padding: 16px 14px;
  text-align: center;
  border: 1px solid #F6DEE2;
}

.pillar__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--sp-sm);
  color: var(--red);
}

.pillar__title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.pillar__text {
  font-size: 0.76rem;
  color: var(--soft);
  line-height: 1.45;
  margin: 0;
}


/* ============================================================
   COMPONENT: Claims List
   ============================================================ */
.claims {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.claims li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 14px;
}

.claims li::before {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 2px;
  background: radial-gradient(circle at 35% 30%, var(--sun), var(--sun-500));
}

.claims__note {
  font-size: 0.74rem;
  color: var(--soft);
  margin-top: 10px;
}


/* ============================================================
   COMPONENT: Quality Grid (dark section)
   ============================================================ */
.section--dark {
  background: var(--navy);
  color: #E7EAF1;
}

.section--dark h2 {
  color: #fff;
}

.section--dark p {
  color: #B8C0D0;
}

.section--dark .kick {
  color: var(--sun);
}

.section--tint {
  background: var(--tint-red);
}

.section--amber {
  background: linear-gradient(170deg, var(--sun-bg) 0%, var(--sun-tint) 60%, #FBE7C0 100%);
}


/* ============================================================
   COMPONENT: Mandatory Warning Box (Pflichthinweise)
   ============================================================ */
.pflicht {
  background: var(--tint-amber);
  border: 1px solid #E9D3A6;
  border-radius: var(--r-md);
  padding: 16px;
}

.pflicht h3 {
  font-size: 0.98rem;
  color: var(--sun-500);
  margin-bottom: var(--sp-sm);
}

.pflicht ul {
  margin: 0;
  padding-left: 18px;
}

.pflicht li {
  font-size: 0.86rem;
  margin-bottom: 6px;
  line-height: 1.55;
}


/* ============================================================
   COMPONENT: Accordion (PDP details)
   ============================================================ */
.accordion {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-sm);
  overflow: hidden;
  background: #fff;
}

.accordion summary {
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-size: 1.3rem; color: var(--soft); }
.accordion[open] summary::after { content: "–"; }

.accordion__body {
  padding: 0 16px 16px;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.6;
}


/* ============================================================
   COMPONENT: NRV Table
   ============================================================ */
.nrv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.nrv-table th,
.nrv-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.nrv-table thead th {
  background: #EAF0EB;
  font-weight: 700;
  font-size: 0.76rem;
}

.nrv-table tbody tr:last-child td {
  border-bottom: 0;
}

.nrv-table .num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}


/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce .price,
.woocommerce p.price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
}

.woocommerce .grundpreis {
  font-size: 0.78rem;
  color: var(--soft);
  margin-top: 2px;
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
  font-family: var(--font-heading);
  font-weight: 700;
  background: var(--sun);
  color: var(--navy);
  border: none;
  border-radius: var(--r-md);
  padding: 13px 20px;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.15s ease;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover {
  background: var(--sun-500);
  color: var(--navy);
}

.woocommerce .button.alt,
.woocommerce button.button.alt {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-cta);
}

.woocommerce .button.alt:hover,
.woocommerce button.button.alt:hover {
  background: var(--red-600);
  color: #fff;
}


/* ============================================================
   STICKY BUY BAR (mobile)
   ============================================================ */
.buybar {
  position: sticky;
  bottom: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 16px;
  box-shadow: 0 -8px 24px -16px rgba(20, 35, 63, 0.3);
}

.buybar__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}

.buybar__meta {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--soft);
}

.buybar .btn {
  flex: 1;
}

@media (min-width: 768px) {
  .buybar {
    display: none;
  }
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-900);
  color: #AEB7C7;
  padding: var(--sp-xl) var(--sp-md) var(--sp-3xl);
}

@media (min-width: 768px) {
  .site-footer {
    padding: var(--sp-3xl) var(--sp-xl);
  }

  .footer__cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-xl);
  }
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7E8AA0;
  margin-bottom: 12px;
  font-weight: 700;
}

.footer__col a {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 11px;
  color: #C7CDDA;
}

.footer__col a:hover {
  color: #fff;
}

.footer__disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--sp-lg);
  padding-top: var(--sp-md);
  font-size: 0.74rem;
  line-height: 1.7;
  color: #7E8AA0;
}

.footer__copy {
  margin-top: var(--sp-md);
  font-size: 0.74rem;
  color: #6B7689;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 6px;
}

.payment-icons span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #D5DAE5;
}


/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
.hide-mobile { display: none; }
.hide-desktop { display: block; }

@media (min-width: 768px) {
  .hide-mobile { display: block; }
  .hide-desktop { display: none; }
}

@media (min-width: 1024px) {
  .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-xl); }
  .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-xl); }
}


/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: var(--sp-sm);
}

@media (min-width: 1024px) {
  .site-header__inner {
    height: 72px;
  }
}

/* Logo */
.site-header__logo {
  display: flex;
  align-items: center;
}

.site-header__logo .custom-logo-link {
  display: flex;
  align-items: center;
}

.site-header__logo .custom-logo {
  height: 36px;
  width: auto;
  max-width: 160px;
}

@media (min-width: 1024px) {
  .site-header__logo .custom-logo {
    height: 44px;
    max-width: 200px;
  }
}

/* Global logo constraint — catches any WordPress logo output */
.custom-logo-link img,
.custom-logo {
  max-height: 50px;
  width: auto;
  height: auto;
}

.site-header .custom-logo-link img,
.site-header .custom-logo {
  height: 36px;
  max-height: 36px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .site-header .custom-logo-link img,
  .site-header .custom-logo {
    height: 44px;
    max-height: 44px;
  }
}

.site-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: baseline;
}

.logo-sos { color: var(--red); }
.logo-apo { color: var(--navy); }

/* Menu toggle (mobile only) */
.site-header__menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--navy);
  padding: 0;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .site-header__menu-toggle {
    display: none;
  }
}

/* Desktop navigation */
.site-header__nav {
  display: none;
}

@media (min-width: 1024px) {
  .site-header__nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
  }
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.nav-list li {
  position: relative;
}

.nav-list li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--r-sm);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-list li a:hover,
.nav-list li.current-menu-item > a,
.nav-list li.current_page_item > a {
  color: var(--red);
  background: var(--red-50);
}

/* Dropdown (desktop) */
.nav-list .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-sm) 0;
  min-width: 200px;
  list-style: none;
  margin: 0;
  z-index: 110;
}

.nav-list li:hover > .sub-menu {
  display: block;
}

.nav-list .sub-menu li a {
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 0;
}

.nav-list .sub-menu li a:hover {
  background: var(--surface);
}

/* Header actions (search + cart) */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.site-header__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--navy);
  border-radius: var(--r-sm);
  transition: background 0.2s ease;
  padding: 0;
  position: relative;
}

.site-header__icon-btn:hover {
  background: var(--surface);
}

/* Cart count badge */
.site-header__cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  background: var(--red);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}

/* Hide badge when 0 */
.site-header__cart-count:empty,
.site-header__cart-count[data-count="0"] {
  display: none;
}


/* ============================================================
   SEARCH BAR (slides down from header)
   ============================================================ */
.site-header__search {
  max-height: 0;
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.site-header__search.is-open {
  max-height: 80px;
  padding: 12px 0;
}

.site-header__search-form {
  display: flex;
  gap: var(--sp-sm);
  align-items: center;
}

.site-header__search-input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s ease;
}

.site-header__search-input:focus {
  border-color: var(--navy-300);
}

.site-header__search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-md);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.site-header__search-submit:hover {
  background: var(--navy-500);
}


/* ============================================================
   MOBILE SLIDE MENU
   ============================================================ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 35, 63, 0.5);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--bg);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu-overlay {
    display: none !important;
  }
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.mobile-menu__header .site-header__logo .custom-logo {
  height: 32px;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--soft);
  border-radius: var(--r-sm);
  padding: 0;
}

.mobile-menu__close:hover {
  background: var(--surface);
  color: var(--navy);
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: var(--sp-sm) 0;
  flex: 1;
}

.mobile-menu__list li {
  border-bottom: 1px solid var(--line);
}

.mobile-menu__list li a {
  display: block;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  transition: background 0.15s ease;
}

.mobile-menu__list li a:hover {
  background: var(--surface);
  color: var(--red);
}

.mobile-menu__list li.current-menu-item > a,
.mobile-menu__list li.current_page_item > a {
  color: var(--red);
  background: var(--red-50);
}

/* Sub-menu mobile */
.mobile-menu__list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu__list .sub-menu li a {
  padding-left: 36px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--soft);
}

.mobile-menu__footer {
  padding: var(--sp-md) 18px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}

.mobile-menu__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--red);
}


/* ============================================================
   TRUST BAR (above footer — override for full-width)
   ============================================================ */
.trustbar {
  padding: 0;
}

.trustbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  padding: 16px var(--sp-md);
}

@media (min-width: 768px) {
  .trustbar__inner {
    padding: 20px var(--sp-xl);
    gap: var(--sp-lg);
  }

  .trustbar__item {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
  }

  .trustbar__icon {
    font-size: 1.3rem;
    margin-bottom: 0;
  }

  .trustbar__item br {
    display: none;
  }
}


/* ============================================================
   FOOTER — Responsive layout
   ============================================================ */
.footer__top {
  margin-bottom: var(--sp-lg);
}

.footer__brand .custom-logo-link {
  display: inline-flex;
}

.footer__brand .custom-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__brand .site-logo-text {
  color: #fff;
}

.footer__brand .site-logo-text .logo-sos {
  color: var(--red-400);
}

.footer__tagline {
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 10px;
  max-width: 34ch;
}

.footer__col {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

@media (min-width: 768px) {
  .footer__cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-xl);
    margin-top: var(--sp-lg);
  }

  .footer__col {
    border-top: none;
    padding: 0;
  }

  .footer__col:first-child {
    border-top: none;
  }
}

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

.footer__links li {
  margin-bottom: 0;
}

.footer__links li a {
  display: block;
  font-size: 0.92rem;
  padding: 5px 0;
  color: #C7CDDA;
  transition: color 0.2s ease;
}

.footer__links li a:hover {
  color: #fff;
}


/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.sos-toast {
  position: fixed;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%) translateY(140%);
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 300;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2), opacity 0.3s ease;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}

.sos-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (min-width: 768px) {
  .sos-toast {
    bottom: 30px;
  }
}


/* ============================================================
   HOMEPAGE — Hero (Sunday-style full-bleed lifestyle image)
   ============================================================ */
.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .home-hero {
    min-height: 560px;
  }
}

@media (min-width: 1024px) {
  .home-hero {
    min-height: 640px;
  }
}

/* Background image layer */
.home-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Readability scrim — gradient from left (text side) fading right */
.home-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(255, 247, 232, 0.96) 0%,
    rgba(255, 247, 232, 0.85) 28%,
    rgba(255, 247, 232, 0.45) 52%,
    rgba(255, 247, 232, 0) 72%
  );
}

@media (max-width: 767px) {
  .home-hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(255, 247, 232, 0.92) 0%,
      rgba(255, 247, 232, 0.78) 40%,
      rgba(255, 247, 232, 0.5) 70%,
      rgba(255, 247, 232, 0.35) 100%
    );
  }
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.home-hero__content {
  max-width: 540px;
}

.home-hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  background: #fff;
  padding: 7px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
  box-shadow: var(--shadow-sm);
}

.home-hero__title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--sp-sm);
  line-height: 1.05;
}

.home-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--navy);
  opacity: 0.85;
  max-width: 44ch;
  margin-bottom: var(--sp-lg);
  line-height: 1.55;
}

.home-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--sp-lg);
}

.pill--light {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}

.btn--lg {
  padding: 16px 30px;
  font-size: 1.05rem;
}


/* ============================================================
   HOMEPAGE — Product Spotlight
   ============================================================ */
.lead {
  font-size: 1rem;
  color: var(--soft);
  margin-bottom: var(--sp-lg);
  max-width: 60ch;
}

.product-spotlight {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.product-spotlight__media {
  background: linear-gradient(160deg, #FFF6E6, #F6ECD8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-xl);
  min-height: 220px;
}

.product-spotlight__img {
  max-height: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-spotlight__body {
  padding: var(--sp-lg);
}

.product-spotlight__body h3 {
  margin-bottom: var(--sp-xs);
}

.product-spotlight__meta {
  font-size: 0.85rem;
  color: var(--soft);
  margin-bottom: var(--sp-sm);
}

.product-spotlight__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: var(--sp-xs);
}

.product-spotlight__price .woocommerce-Price-amount {
  font-family: var(--font-heading);
}

.product-spotlight__body .grundpreis {
  margin-bottom: var(--sp-md);
}

.product-spotlight__body .btn {
  margin-top: var(--sp-sm);
}

@media (min-width: 768px) {
  .product-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .product-spotlight__media {
    min-height: 320px;
    height: 100%;
  }
}


/* ============================================================
   HOMEPAGE — Quality Grid
   ============================================================ */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: var(--sp-sm);
}

.quality-grid__item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 600;
}

.quality-grid__item.is-yes { color: #D6EFDD; }
.quality-grid__item.is-no  { color: #E8C5C5; }

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


/* ============================================================
   PAGE TEMPLATE (legal, content pages)
   ============================================================ */
.page-article__header {
  margin-bottom: var(--sp-lg);
}

.page-article__title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.page-article__content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
}

.page-article__content h2 {
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
}

.page-article__content h3 {
  margin-top: var(--sp-lg);
  margin-bottom: var(--sp-sm);
}

.page-article__content p {
  margin-bottom: var(--sp-md);
  color: var(--ink);
}

.page-article__content ul,
.page-article__content ol {
  margin-bottom: var(--sp-md);
  padding-left: var(--sp-lg);
}

.page-article__content a {
  color: var(--red);
  text-decoration: underline;
}


/* ============================================================
   ASTRA CONTAINER RESET
   Astra wraps page content in #content / .site-content / .ast-container.
   Reset those so our full-width sections (hero, footer) span edge-to-edge.
   ============================================================ */
#content,
.site-content,
.ast-container,
.site-main {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.ast-separate-container .ast-article-single,
.ast-separate-container .site-main > article {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

/* Remove Astra's default content padding wrapper */
.ast-separate-container #primary,
.ast-plain-container #primary {
  margin: 0;
  padding: 0;
}


/* ============================================================
   BULLETPROOF LOGO CONSTRAINT + ASTRA HEADER/FOOTER HIDE
   Final safety net — ensures only our custom header/footer show
   and the logo never renders oversized regardless of source.
   ============================================================ */

/* Hide Astra's own header & footer markup if it renders */
.ast-primary-header-bar,
#masthead .ast-mobile-header-wrap,
#masthead.site-header .main-header-bar,
.ast-mobile-header-wrap,
.ast-desktop-header,
header#masthead > .main-header-bar-wrap,
.site-below-footer-wrap,
.site-above-footer-wrap,
.ast-small-footer,
footer.site-footer[itemtype] .ast-footer-overlay {
  /* only hide Astra's, never our own .site-header / .site-footer */
}

/* Our header/footer use .site-header and .site-footer (BEM).
   Astra's use #masthead and #colophon. Hide Astra's by ID. */
#masthead:not(.site-header),
#colophon {
  display: none !important;
}

/* Absolute logo ceiling — anywhere on the site */
img.custom-logo,
.custom-logo-link img,
.site-branding img,
.ast-site-identity img {
  max-height: 48px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

/* Header logo precise size */
.site-header .site-header__logo img.custom-logo,
.site-header .site-header__logo .custom-logo-link img {
  height: 38px !important;
  max-height: 38px !important;
  width: auto !important;
}

@media (min-width: 1024px) {
  .site-header .site-header__logo img.custom-logo,
  .site-header .site-header__logo .custom-logo-link img {
    height: 46px !important;
    max-height: 46px !important;
  }
}

/* Footer logo */
.site-footer .footer__brand img.custom-logo,
.site-footer .footer__brand .custom-logo-link img {
  height: 40px !important;
  max-height: 40px !important;
  width: auto !important;
  filter: brightness(0) invert(1);
}

/* Kill bullets/indentation on any nav menu inside our header/footer */
.site-header ul,
.site-footer ul,
.mobile-menu ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.site-header nav ul li,
.mobile-menu ul li {
  list-style: none !important;
}


/* ============================================================
   SUNDAY-STYLE HERO + HEADER POLISH
   ============================================================ */

/* Slightly tighter, cleaner desktop nav spacing (Sunday vibe) */
@media (min-width: 1024px) {
  .nav-list li a {
    font-size: 0.95rem;
    letter-spacing: 0.01em;
  }
}

/* Hero CTA gets a bit more presence */
.home-hero .btn--primary {
  box-shadow: 0 16px 32px -12px rgba(223, 0, 34, 0.55);
}

/* On very small screens, reduce hero min-height so content fits */
@media (max-width: 420px) {
  .home-hero {
    min-height: 440px;
  }
  .home-hero__title {
    font-size: 2rem;
  }
}


/* ============================================================
   SUNDAY-STYLE HOMEPAGE SECTIONS
   ============================================================ */

/* Centered section heads + uppercase eyebrows */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sun-600);
  margin-bottom: var(--sp-sm);
}

.eyebrow--ondark {
  color: var(--red);
  background: #fff;
  padding: 7px 14px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-sm);
}

.section-head {
  margin-bottom: var(--sp-2xl);
}

.section-head--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-head--center h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section--surface {
  background: var(--surface);
}

/* ---- FEATURE (Neu im Shop) ---- */
.feature__grid {
  display: grid;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .feature__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2xl);
  }
}

.feature__media--tile {
  background: linear-gradient(160deg, #FFF6E6, #F6ECD8);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2xl);
  min-height: 320px;
}

.feature__media--tile img {
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.feature__body h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: var(--sp-md);
}

.feature__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.feature__body .grundpreis {
  margin-bottom: var(--sp-md);
}

.feature__body .btn {
  margin-top: var(--sp-sm);
}

/* ---- DUO (Höchste Produktansprüche) ---- */
.duo {
  display: grid;
  gap: var(--sp-lg);
}

@media (min-width: 768px) {
  .duo {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
  }
}

.duo__card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.duo__media {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.duo__body {
  padding: var(--sp-lg);
}

.duo__body h3 {
  margin-bottom: var(--sp-sm);
}

.link-arrow {
  display: inline-block;
  margin-top: var(--sp-sm);
  font-weight: 700;
  color: var(--red);
  font-size: 0.95rem;
}

.link-arrow:hover {
  color: var(--red-600);
}

/* ---- PRODUCT GRID (Bestseller) ---- */
.prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

@media (min-width: 768px) {
  .prod-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-lg);
  }
}

.prod-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.prod-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.prod-card__media {
  position: relative;
  background: linear-gradient(160deg, #FFF6E6, #F1E6D0);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-md);
}

.prod-card__media img {
  max-height: 80%;
  max-width: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.prod-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--sage);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.prod-card__badge--soon {
  background: var(--navy-300);
}

.prod-card__body {
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prod-card__title {
  font-size: 0.95rem;
  line-height: 1.25;
  margin-bottom: var(--sp-xs);
  color: var(--navy);
}

.prod-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-top: auto;
}

.prod-card__price .woocommerce-Price-amount {
  font-family: var(--font-heading);
}

.prod-card__grund {
  font-size: 0.68rem;
  color: var(--soft);
  margin-top: 2px;
}

.prod-card--soon {
  opacity: 0.7;
  pointer-events: none;
}

.prod-card--soon .prod-card__media {
  filter: grayscale(0.4);
}

/* ---- FULL-WIDTH BANNER ---- */
.banner {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.banner__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,27,48,0.80) 0%, rgba(15,27,48,0.55) 50%, rgba(15,27,48,0.22) 100%);
}

@media (max-width: 767px) {
  .banner { min-height: 420px; background-position: center center; }
  /* even vertical veil so the text stays readable over the photo on mobile */
  .banner__scrim {
    background: linear-gradient(180deg, rgba(15,27,48,0.55) 0%, rgba(15,27,48,0.68) 55%, rgba(15,27,48,0.8) 100%);
  }
}

.banner__inner {
  position: relative;
  z-index: 1;
}

.banner__content {
  max-width: 460px;
  color: #fff;
}

.banner__content h2 {
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: var(--sp-md);
}

.banner__content p {
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--sp-lg);
}

.btn--light {
  background: #fff;
  color: var(--navy);
}

.btn--light:hover {
  background: var(--surface);
  color: var(--navy);
}

/* ---- PHILOSOPHY ROWS (alternating) ---- */
.phil-row {
  display: grid;
  gap: var(--sp-lg);
  align-items: center;
  margin-bottom: var(--sp-2xl);
}

.phil-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .phil-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2xl);
  }

  .phil-row--reverse .phil-row__media {
    order: 2;
  }
}

.phil-row__media {
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.phil-row__body h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: var(--sp-md);
}

/* ---- NEWSLETTER ---- */
.newsletter__inner {
  text-align: center;
}

.newsletter__form {
  display: flex;
  gap: var(--sp-sm);
  max-width: 480px;
  margin: var(--sp-lg) auto var(--sp-md);
}

.newsletter__input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.newsletter__input:focus {
  border-color: var(--navy-300);
}

.newsletter__consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--soft);
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter__consent a {
  color: var(--red);
  text-decoration: underline;
}


/* ============================================================
   HERO (Sunday-style) — matches front-page.php .hero markup
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
  background: var(--sun-bg); /* fallback if image fails */
}

@media (min-width: 768px) {
  .hero { min-height: 600px; }
}

@media (min-width: 1024px) {
  .hero { min-height: 700px; }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%; /* bias up so the bottle's dropper isn't cropped */
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark image → darken the LEFT (text side), fade to show the product on the right */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(8,9,13,0.85) 0%,
    rgba(8,9,13,0.70) 32%,
    rgba(8,9,13,0.35) 55%,
    rgba(8,9,13,0) 78%
  );
}

@media (max-width: 767px) {
  /* On mobile the image centers behind the text → even, readable dark veil */
  .hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(8,9,13,0.55) 0%,
      rgba(8,9,13,0.68) 55%,
      rgba(8,9,13,0.82) 100%
    );
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  max-width: 540px;
}

.hero__title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: var(--sp-sm);
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #F3F4F7;
  opacity: 0.95;
  max-width: 44ch;
  margin-bottom: var(--sp-lg);
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--sp-lg);
}

@media (max-width: 420px) {
  .hero { min-height: 420px; }
  .hero__title { font-size: 2rem; }
}


/* ============================================================
   PRODUCT PAGE (PDP) — mobile-first
   ============================================================ */
.pdp {
  padding-bottom: var(--sp-xl);
}

.pdp__crumb {
  font-size: 0.74rem;
  color: var(--soft);
  padding-top: var(--sp-md);
  padding-bottom: var(--sp-sm);
}

.pdp__crumb a { color: var(--soft); }
.pdp__crumb a:hover { color: var(--red); }
.pdp__crumb b { color: var(--ink); }

.pdp__top {
  display: grid;
  gap: var(--sp-lg);
}

/* Gallery */
.pdp__main-img {
  position: relative;
  background: linear-gradient(160deg, #FFF6E6, #F6ECD8);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-xl);
}

.pdp__img {
  max-width: 85%;
  max-height: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.pdp__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sage);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--r-full);
  z-index: 2;
}

.pdp__thumbs {
  display: flex;
  gap: 8px;
  margin-top: var(--sp-sm);
}

.pdp__thumb {
  flex: 1;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #FFF6E6, #F1E6D0);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}

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

.pdp__thumb.is-active {
  border-color: var(--red);
}

/* Info */
.pdp__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: var(--sp-sm);
}

.pdp__dose {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-md);
  padding: 8px 14px;
  margin-bottom: var(--sp-md);
}

.pdp__dose b {
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.pdp__dose span {
  font-size: 0.72rem;
  opacity: 0.88;
}

.pdp__price-block {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--sp-md) 0;
}

.pdp__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.85rem;
  color: var(--ink);
  line-height: 1.1;
}

.pdp__price .woocommerce-Price-amount {
  font-family: var(--font-heading);
}

.pdp__price-meta {
  font-size: 0.8rem;
  color: var(--soft);
  margin-top: 2px;
}

.pdp__price-meta a { color: var(--sage); }

.pdp__price-block .grundpreis {
  font-size: 0.78rem;
  color: var(--soft);
  margin-top: 4px;
}

.pdp__stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  color: var(--sage);
  font-weight: 600;
  margin: 12px 0;
}

.pdp__stock--out { color: var(--error); }

.pdp__led {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px #E6F0E8;
}

.pdp__mini {
  font-size: 0.72rem;
  color: var(--soft);
  margin-top: 10px;
  margin-bottom: 0;
}

.pdp__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: var(--sp-md);
}

/* WooCommerce add-to-cart form inside PDP */
/* Buy box: modern quantity stepper ABOVE a full-width add-to-cart button */
.pdp__price-block form.cart {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: var(--sp-md);
}

.pdp__price-block form.cart .quantity,
.pdp__price-block form.cart .qty-stepper {
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}

.pdp__price-block form.cart .quantity .qty-btn {
  width: 46px;
  height: 50px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
  -webkit-user-select: none;
  user-select: none;
}

.pdp__price-block form.cart .quantity .qty-btn:hover { background: var(--surface); color: var(--red); }
.pdp__price-block form.cart .quantity .qty-btn:active { background: var(--tint-red); }

.pdp__price-block form.cart .quantity input.qty {
  width: 52px;
  min-height: 50px;
  text-align: center;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--navy);
  -moz-appearance: textfield;
  appearance: textfield;
}

.pdp__price-block form.cart .quantity input.qty::-webkit-outer-spin-button,
.pdp__price-block form.cart .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pdp__price-block form.cart button.single_add_to_cart_button {
  width: 100%;
  background: var(--sun);
  color: var(--navy);
  border: none;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.pdp__price-block form.cart button.single_add_to_cart_button:hover {
  background: var(--sun-500);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(244, 183, 57, 0.7);
}
.pdp__price-block form.cart button.single_add_to_cart_button:active { transform: translateY(0); }

/* Express checkout buttons (PayPal etc.) injected after the cart form */
.pdp__price-block .paypal-buttons,
.pdp__price-block .ppc-button-wrapper,
.pdp__info .ppc-button-wrapper { margin-top: 10px; }

/* PDP sections */
.pdp__section {
  padding-top: var(--sp-lg);
  padding-bottom: var(--sp-sm);
}

.pdp__section h2 {
  font-size: 1.3rem;
  margin-bottom: var(--sp-md);
}

.pdp__desc {
  font-size: 0.95rem;
  color: var(--soft);
  line-height: 1.65;
}

/* Info grid (Produktdetails) */
.info-grid {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  font-size: 0.86rem;
}

.info-grid > div {
  padding: 10px 13px;
  border-bottom: 1px solid var(--line);
}

.info-grid > div:nth-child(odd) {
  background: var(--surface);
  font-weight: 600;
}

.info-grid > div:last-child { border-bottom: 0; }

/* Desktop layout for PDP */
@media (min-width: 900px) {
  .pdp__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2xl);
    align-items: start;
  }

  .pdp__gallery {
    position: sticky;
    top: 90px;
  }

  .pdp__section {
    max-width: var(--container-narrow);
  }
}

/* ============================================================
   PDP GALLERY — zoom trigger + lightbox
   ============================================================ */
.pdp__zoom-trigger {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.pdp__zoom-trigger:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
  border-radius: var(--r-md);
}

.pdp__zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  box-shadow: 0 4px 14px -6px rgba(20, 35, 63, 0.4);
  transition: transform 0.18s ease, background 0.18s ease;
  pointer-events: none;
}

.pdp__main-img:hover .pdp__zoom-hint {
  transform: scale(1.08);
  background: #fff;
}

.pdp__thumb {
  appearance: none;
  -webkit-appearance: none;
}

.pdp__thumb:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* Lightbox overlay */
.pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  background: rgba(15, 27, 48, 0.92);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.pdp-lightbox.is-open {
  display: flex;
  opacity: 1;
}

.pdp-lightbox__stage {
  margin: 0;
  max-width: min(90vw, 920px);
  max-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-lightbox__img {
  max-width: 100%;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
}

.pdp-lightbox__close,
.pdp-lightbox__nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(4px);
}

.pdp-lightbox__close:hover,
.pdp-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.pdp-lightbox__close:focus-visible,
.pdp-lightbox__nav:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 2px;
}

.pdp-lightbox__close {
  top: clamp(12px, 3vw, 28px);
  right: clamp(12px, 3vw, 28px);
  width: 46px;
  height: 46px;
}

.pdp-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}

.pdp-lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.pdp-lightbox__nav--prev { left: clamp(8px, 2vw, 28px); }
.pdp-lightbox__nav--next { right: clamp(8px, 2vw, 28px); }

@media (max-width: 600px) {
  .pdp-lightbox__nav { width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .pdp-lightbox,
  .pdp__zoom-hint,
  .pdp-lightbox__close,
  .pdp-lightbox__nav { transition: none; }
}


/* ============================================================
   WOOCOMMERCE — CART & CHECKOUT  (wide, branded, responsive)
   Legal/info pages keep the narrow container; cart & checkout
   get a wider 2-column layout and full styling.
   ============================================================ */
.woocommerce-cart .page-wrap,
.woocommerce-checkout .page-wrap { max-width: 1160px; }
.woocommerce-cart .page-article__title,
.woocommerce-checkout .page-article__title { margin-bottom: 26px; }

/* ---------- CART ---------- */
.woocommerce-cart .woocommerce { display: block; }
.woocommerce-cart .woocommerce::before,
.woocommerce-cart .woocommerce::after { content: ""; display: table; clear: both; }
.woocommerce-cart form.woocommerce-cart-form { width: 100%; float: none; margin: 0 0 28px; }
.woocommerce-cart .cart-collaterals { width: 100%; float: none; display: flex; justify-content: flex-end; }
.woocommerce-cart .cart-collaterals .cart_totals { width: 100%; max-width: 400px; float: none; }
.woocommerce-cart .cart-collaterals .cross-sells { display: none; }
/* column widths so the product name isn't cramped */
.woocommerce-cart table.shop_table td.product-remove,
.woocommerce-cart table.shop_table th.product-remove { width: 34px; text-align: center; padding-left: 6px; padding-right: 6px; }
.woocommerce-cart table.shop_table td.product-thumbnail,
.woocommerce-cart table.shop_table th.product-thumbnail { width: 72px; }
.woocommerce-cart table.shop_table td.product-name { text-align: left; }

.woocommerce-cart table.shop_table { border: 1px solid var(--line); border-radius: var(--r-lg); border-collapse: collapse; width: 100%; background: #fff; margin: 0; table-layout: fixed; }
.woocommerce-cart table.shop_table td.product-name { width: auto; word-break: normal; overflow-wrap: anywhere; }
.woocommerce-cart table.shop_table td.product-price,
.woocommerce-cart table.shop_table th.product-price { width: 150px; }
.woocommerce-cart table.shop_table td.product-quantity,
.woocommerce-cart table.shop_table th.product-quantity { width: 150px; }
.woocommerce-cart table.shop_table td.product-subtotal,
.woocommerce-cart table.shop_table th.product-subtotal { width: 120px; }
.woocommerce-cart table.shop_table thead th { background: var(--surface); font-family: var(--font-heading); color: var(--navy); font-size: 12px; letter-spacing: .5px; text-transform: uppercase; padding: 14px 10px; border: 0; text-align: left; }
.woocommerce-cart table.shop_table thead th.product-price,
.woocommerce-cart table.shop_table thead th.product-quantity,
.woocommerce-cart table.shop_table thead th.product-subtotal { text-align: right; }
.woocommerce-cart table.shop_table td { padding: 14px 10px; border-top: 1px solid var(--line); vertical-align: middle; }
.woocommerce-cart table.shop_table td.product-price,
.woocommerce-cart table.shop_table td.product-subtotal { text-align: right; white-space: nowrap; }
.woocommerce-cart table.shop_table td.product-quantity { text-align: right; }
.woocommerce-cart table.shop_table td.product-thumbnail img { width: 56px; height: auto; border-radius: 10px; }
.woocommerce-cart td.product-name a { color: var(--navy); font-weight: 600; text-decoration: none; }
.woocommerce-cart td.product-name a:hover { color: var(--red); }
.woocommerce-cart td.product-name .wc-gzd-additional-info,
.woocommerce-cart td.product-name .product-unit-price { color: var(--soft); font-size: 13px; }
.woocommerce-cart .product-remove a.remove { color: var(--red) !important; font-size: 22px; line-height: 1; }
.woocommerce-cart .quantity input.qty { width: 64px; padding: 10px; border: 1px solid var(--line); border-radius: 999px; text-align: center; }
.woocommerce-cart .actions { padding: 18px 0 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.woocommerce-cart .coupon { display: flex; gap: 8px; }
.woocommerce-cart .coupon input#coupon_code { border: 1px solid var(--line); border-radius: 999px; padding: 12px 16px; min-width: 160px; }

/* cart totals / order summary */
.cart_totals { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 22px 26px; }
.cart_totals h2 { font-family: var(--font-heading); color: var(--navy); font-size: 20px; margin: 0 0 14px; }
.cart_totals table.shop_table { border: 0; background: transparent; width: 100%; }
.cart_totals table.shop_table tr { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.cart_totals table.shop_table th,
.cart_totals table.shop_table td { border: 0; border-top: 1px solid var(--line); padding: 12px 0; font-size: 15px; color: var(--ink); }
.cart_totals table.shop_table th { text-align: left; font-weight: 600; flex: 0 0 auto; }
.cart_totals table.shop_table td { text-align: right; flex: 1 1 auto; }
.cart_totals tr.cart-subtotal th { font-weight: 600; }
.cart_totals tr.order-total th,
.cart_totals tr.order-total td { font-family: var(--font-heading); color: var(--navy); font-size: 18px; }
.cart_totals .woocommerce-shipping-methods { margin: 0; padding: 0; list-style: none; }
.cart_totals .shipping-calculator-button { color: var(--red); }
.cart_totals .wc-proceed-to-checkout { padding: 18px 0 0; }
.cart_totals .wc-proceed-to-checkout a.checkout-button { display: block; text-align: center; background: var(--red) !important; color: #fff !important; border-radius: 999px !important; padding: 16px !important; font-family: var(--font-body); font-weight: 700; font-size: 16px; }
.cart_totals .wc-proceed-to-checkout a.checkout-button:hover { background: var(--red-600) !important; }

/* ---------- CHECKOUT ---------- */
.woocommerce-checkout form.checkout.woocommerce-checkout { display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start; }
.woocommerce-checkout #customer_details { flex: 1 1 480px; min-width: 0; }
.woocommerce-checkout .checkout-col-2,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review { flex: 1 1 340px; }
.woocommerce-checkout #order_review_heading { margin: 0 0 14px; font-family: var(--font-heading); color: var(--navy); font-size: 22px; }
.woocommerce-checkout h3, .woocommerce-checkout #order_review_heading { font-family: var(--font-heading); color: var(--navy); }
.woocommerce-checkout #customer_details h3 { font-size: 20px; margin: 0 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--line); }

.woocommerce form .form-row { margin-bottom: 14px; }
.woocommerce form .form-row label { font-weight: 600; color: var(--ink); font-size: 14px; margin-bottom: 4px; display: inline-block; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-checkout .select2-container .select2-selection,
.woocommerce-checkout select { border: 1px solid var(--line) !important; border-radius: 10px !important; padding: 13px 14px !important; min-height: 50px; font-size: 15px; box-sizing: border-box; background: #fff; }
.woocommerce-checkout .select2-container .select2-selection__rendered { line-height: 24px; padding: 0; }
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow { top: 12px; }
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus { border-color: var(--red) !important; outline: none; box-shadow: 0 0 0 3px var(--tint-red); }

/* order review / payment box */
.woocommerce-checkout #order_review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; position: sticky; top: 96px; }
.woocommerce-checkout #order_review table.shop_table { border: 0; background: transparent; margin: 0; }
.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td { border: 0; border-top: 1px solid var(--line); padding: 12px 0; font-size: 14px; }
.woocommerce-checkout #order_review table.shop_table thead th { background: transparent; color: var(--navy); font-family: var(--font-heading); text-transform: uppercase; font-size: 12px; }
.woocommerce-checkout #order_review .cart_item .product-name { color: var(--navy); font-weight: 600; }
.woocommerce-checkout #order_review tr.order-total th { font-family: var(--font-heading); color: var(--navy); }
.woocommerce-checkout #order_review tr.order-total .woocommerce-Price-amount { font-family: var(--font-heading); color: var(--navy); font-size: 20px; }
.woocommerce-checkout ul.wc_payment_methods { list-style: none; margin: 0 0 16px; padding: 0; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.woocommerce-checkout ul.wc_payment_methods li { padding: 14px 16px; border-bottom: 1px solid var(--line); }
.woocommerce-checkout ul.wc_payment_methods li:last-child { border-bottom: 0; }
.woocommerce-checkout #payment { background: transparent; border-radius: 0; }
.woocommerce-checkout #payment .payment_box { background: #fff; border: 1px solid var(--line); border-radius: 10px; margin-top: 8px; }
.woocommerce-checkout #payment .payment_box::before { display: none; }
.woocommerce-checkout #place_order,
.woocommerce-checkout button#place_order { width: 100%; background: var(--red) !important; color: #fff !important; border-radius: 999px !important; padding: 18px !important; font-family: var(--font-body); font-weight: 700; font-size: 16px; margin-top: 12px; box-shadow: var(--shadow-cta); }
.woocommerce-checkout #place_order:hover { background: var(--red-600) !important; }
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper,
.woocommerce-checkout .wc-gzd-checkbox-placeholder { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; margin-bottom: 14px; font-size: 14px; }
.woocommerce-checkout form .form-row.woocommerce-validated input.input-text { border-color: var(--success) !important; }

/* responsive */
@media (max-width: 900px) {
  .woocommerce-cart .woocommerce,
  .woocommerce-checkout form.checkout.woocommerce-checkout { flex-direction: column; }
  .woocommerce-cart form.woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals,
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review,
  .woocommerce-checkout #order_review_heading { flex: 1 1 100%; width: 100%; }
  .woocommerce-checkout #order_review { position: static; }
}
@media (max-width: 520px) {
  .woocommerce-cart table.shop_table thead { display: none; }
  .woocommerce-cart table.shop_table tr { display: block; border-top: 1px solid var(--line); padding: 8px 0; }
  .woocommerce-cart table.shop_table td { display: flex; justify-content: space-between; align-items: center; text-align: right; border-top: 0; padding: 8px 16px; }
  .woocommerce-cart table.shop_table td::before { content: attr(data-title); font-weight: 600; color: var(--soft); }
  .woocommerce-cart td.product-thumbnail { display: block; }
  /* coupon + actions stack full-width on mobile (no overflow) */
  .woocommerce-cart .actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .woocommerce-cart .coupon { display: flex; flex-direction: column; width: 100%; gap: 10px; }
  .woocommerce-cart .coupon input#coupon_code,
  .woocommerce-cart .coupon .button,
  .woocommerce-cart .actions > .button {
    width: 100% !important; max-width: 100%; box-sizing: border-box; white-space: normal !important; margin: 0 !important;
  }
}


/* ============================================================
   BUTTONS — hovers everywhere + cart action-button fixes
   ============================================================ */
.btn { transition: background .2s ease, color .2s ease, transform .15s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn--primary:hover { background: var(--red-600); color: #fff; }
.btn--light:hover { background: var(--sun); color: var(--navy); border-color: var(--sun); }
.btn--navy:hover { background: var(--navy-900); }
.link-arrow { transition: color .15s ease, gap .15s ease; }
.link-arrow:hover { color: var(--red-600); }

.woocommerce .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  transition: background .2s ease, color .2s ease, transform .15s ease, box-shadow .2s ease;
}
.woocommerce .button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover,
.woocommerce input.button:hover { transform: translateY(-1px); }

/* no underline on cart/checkout link-buttons */
.woocommerce a.button,
.woocommerce a.checkout-button,
.cart_totals .wc-proceed-to-checkout a.checkout-button { text-decoration: none !important; }

/* coupon "Gutschein anwenden" — navy, no wrap */
.woocommerce-cart .coupon .button {
  background: var(--navy) !important; color: #fff !important;
  white-space: nowrap; border-radius: 999px !important; padding: 12px 22px !important;
}
.woocommerce-cart .coupon .button:hover { background: var(--navy-900) !important; }

/* "Warenkorb aktualisieren" — outline secondary */
.woocommerce-cart .actions > .button,
.woocommerce-cart .actions button[name="update_cart"] {
  white-space: nowrap; border-radius: 999px !important;
  background: var(--surface) !important; color: var(--navy) !important;
  border: 1.5px solid var(--line) !important;
}
.woocommerce-cart .actions > .button:hover,
.woocommerce-cart .actions button[name="update_cart"]:hover { background: #fff !important; border-color: var(--navy) !important; }

/* proceed-to-checkout + place order: red, with hover lift */
.cart_totals .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout #place_order:hover { background: var(--red-600) !important; transform: translateY(-1px); }

/* cart quantity stepper (compact) */
.woocommerce-cart .quantity.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: #fff; }
.woocommerce-cart .quantity .qty-btn { width: 38px; height: 42px; border: 0; background: transparent; color: var(--navy); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s ease, color .15s ease; }
.woocommerce-cart .quantity .qty-btn:hover { background: var(--surface); color: var(--red); }
.woocommerce-cart .quantity input.qty { width: 46px; min-height: 42px; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); text-align: center; font-weight: 600; -moz-appearance: textfield; appearance: textfield; }
.woocommerce-cart .quantity input.qty::-webkit-outer-spin-button,
.woocommerce-cart .quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
