/*
 * pdp.css — Creatin24 PDP Base Styles
 * Ported from: reference/shopify-pdp-callowfit-sauce.html (inline <style> blocks)
 * Selectors: .product-section-elegant, .product-gallery, .gallery-*, .price-*,
 *            .variant-*, .quantity-selector, .abo-*, .trust-*, .accordion-*,
 *            .sticky-cart-*, .reviews-*, .badge*, .breadcrumb, .rating-*
 * Excludes: .shopify-section, .header__*, .footer__* (layout internals)
 *
 * Usage: imported in produkt/[slug].astro via <link rel="stylesheet" href="/styles/pdp.css">
 */

.gps [data-slot=children].product-feature-image {
  border:unset;border-radius:0;visibility:visible!important
}

.gps [data-slot=children]:not(.product-feature-image):after {
  content:"Drop element here";font-size:14px;font-weight:700;overflow:hidden;text-align:center;text-overflow:ellipsis;visibility:hidden;white-space:nowrap
}

.gps .gp-instant-page [data-slot=children].product-feature-image {
  border:unset;visibility:visible!important
}

.gps .gp-instant-page [data-slot=children].product-feature-image:after {
  border:unset;color:#aaa;visibility:visible
}

.gps .gp-instant-page [data-slot=children].product-feature-image .drag-placeholder {
  height:100%
}



/* ===================================
   ELEGANT PRODUCT SECTION
   Corporate Colors: White, Black, #FFBD59
   iOS-Inspired Usability
   =================================== */

/* CSS Variables - Corporate Colors */
.product-section-elegant {
  --color-primary: #111111;
  --color-secondary: #6e6e73;
  --color-accent: #FFBD59;
  --color-accent-dark: #E5A94F;
  --color-accent-light: rgba(255, 189, 89, 0.12);
  --color-background: #ffffff;
  --color-surface: #f5f5f7;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-hover: rgba(0, 0, 0, 0.16);
  --color-success: #34c759;
  --color-warning: #ff9500;

  --font-display: 'Philosopher', Georgia, serif;
  --font-text: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 980px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-accent: 0 8px 24px rgba(255, 189, 89, 0.35);

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
.product-section-elegant *,
.product-section-elegant *::before,
.product-section-elegant *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.product-section-elegant {
  padding: 40px 0 40px;
  background: var(--color-background);
  font-family: var(--font-text);
  color: var(--color-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.product-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Layout Grid */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ===================================
   GALLERY SECTION
   =================================== */

.product-gallery {
  position: sticky;
  top: 24px;
}

/* Badges - Inside main-image-wrapper */
.product-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 32px);
}

/* Wishlist Button in price-row - Visible on desktop and mobile */
.price-row-wishlist {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.price-row-wishlist:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.price-row-wishlist.active,
.price-row-wishlist.is-favorite {
  background: rgba(255, 189, 89, 0.2);
  border-color: var(--color-accent);
}

.price-row-wishlist .c24-fav-icon {
  font-size: 18px;
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.price-row-wishlist.active .c24-fav-icon,
.price-row-wishlist.is-favorite .c24-fav-icon {
  color: #ef4444;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.badge-sale {
  background: var(--color-accent);
  color: var(--color-primary);
}

.badge-bestseller {
  background: var(--color-primary);
  color: var(--color-background);
}

.badge-new {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

/* Main Image */
.gallery-main {
  position: relative;
  margin-bottom: 16px;
}

/* Thumbnails */
.gallery-thumbnails {
  display: flex;
  justify-content: center;
  overflow-x: auto;
}

.thumbnails-track {
  display: flex;
  gap: 12px;
}

.thumbnail {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.thumbnail:hover {
  border-color: var(--color-border-hover);
}

.thumbnail.active {
  border-color: var(--color-accent);
}

/* ===================================
   PRODUCT INFO SECTION
   =================================== */

.product-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
  align-self: start;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-secondary);
}

.breadcrumb a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb .separator {
  width: 4px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: 0.5;
}

.breadcrumb .current {
  color: var(--color-primary);
}

/* Product Header */
.product-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-vendor {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent-dark);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-title:hover {
  color: #FFBD59;
}

/* Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.rating-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}

.rating-link {
  font-size: 14px;
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.rating-link:hover {
  color: var(--color-accent-dark);
}

/* Price Block */
.price-block {
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.price-old {
  font-size: 18px;
  color: var(--color-secondary);
  text-decoration: line-through;
}

.price-current {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.price-save {
  padding: 4px 12px;
  background: var(--color-accent-light);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent-dark);
}

.price-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--color-secondary);
}

.price-meta .divider {
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.4;
}

/* ===================================
   AVAILABILITY INFO (Live-Activity + Stock)
   =================================== */
.availability-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
}

.live-activity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: var(--color-success, #34c759);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(52, 199, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0); }
}

.activity-text {
  font-size: 13px;
  color: var(--color-primary);
}

.activity-text strong {
  font-weight: 600;
}

.stock-indicator {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stock-bar {
  height: 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full, 9999px);
  overflow: hidden;
  position: relative;
}

.stock-fill {
  height: 100%;
  border-radius: var(--radius-full, 9999px);
  width: 0%;
  transition: width 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stock-indicator[data-stock-status="high"] .stock-fill {
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.stock-indicator[data-stock-status="high"] .stock-text {
  color: #16a34a;
}

.stock-indicator[data-stock-status="low"] .stock-fill {
  background: linear-gradient(90deg, #f97316, #ea580c);
}

.stock-indicator[data-stock-status="low"] .stock-text {
  color: #ea580c;
}

.stock-text {
  font-size: 13px;
  font-weight: 500;
}

.stock-text strong {
  font-weight: 700;
}

/* ===================================
   ABO-TOGGLE – Passend zum Creatin24 Design-System
   =================================== */
.abo-toggle-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.abo-toggle-pills {
  display: flex;
  gap: 0;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 4px;
}

.abo-pill {
  flex: 1;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-text);
  border: none;
  background: transparent;
  color: var(--color-secondary);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.abo-pill.active {
  background: #FFBD59 !important;
  border: 2px solid #FFBD59 !important;
  color: #111111 !important;
  box-shadow: var(--shadow-sm);
}

.abo-pill.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,189,89,0.2) 0%, transparent 50%, rgba(255,189,89,0.2) 100%);
  animation: shimmer 0.5s ease-out;
}

.abo-pill:hover:not(.active) {
  background: rgba(0, 0, 0, 0.04);
  color: var(--color-primary);
}

.abo-interval-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--color-accent-light);
  border: 1px solid rgba(255, 189, 89, 0.25);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}

.abo-interval-label,
.abo-interval-hint {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 500;
  font-family: var(--font-text);
}

.abo-interval-input {
  width: 56px;
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-align: center;
  font-family: var(--font-text);
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-background);
  transition: all var(--transition-fast);
  -moz-appearance: textfield;
}

.abo-interval-input::-webkit-outer-spin-button,
.abo-interval-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.abo-interval-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 189, 89, 0.2);
}

.abo-interval-select {
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-text);
  color: var(--color-primary);
  background: var(--color-background);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.abo-interval-select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 189, 89, 0.2);
}

.abo-info-text {
  font-size: 13px;
  color: var(--color-secondary);
  margin: 0;
  font-weight: 500;
  font-family: var(--font-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Product Form */
.product-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Purchase Controls – quantity stepper + add-to-cart button */
.purchase-controls {
  display: flex;
  gap: 12px;
}

.variant-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.variant-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
}

.variant-selected-value {
  color: var(--color-secondary);
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.variant-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 44px;
  padding: 0 20px;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.variant-btn:hover {
  border-color: var(--color-border-hover);
  background: var(--color-surface);
}

/* Sold-out variant styling */
.variant-sold-out .variant-btn {
  opacity: 0.5;
  text-decoration: line-through;
  cursor: not-allowed;
  pointer-events: none;
  background: var(--color-background);
  border-color: var(--color-border);
  color: var(--color-secondary);
}

.variant-sold-out input:disabled + .variant-btn {
  text-decoration: line-through;
  opacity: 0.5;
}

/* Variant Button Selected State with Cool Effect */
.variant-option input:checked + .variant-btn {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  animation: variantSelect 0.4s ease;
}

.variant-option input:checked + .variant-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,189,89,0.3) 0%, transparent 50%, rgba(255,189,89,0.3) 100%);
  animation: shimmer 0.6s ease-out;
}

.quantity-selector {
  display: flex;
  align-items: center;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 144px;
  flex-shrink: 0;
}

.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 56px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.qty-btn svg {
  width: 20px;
  height: 20px;
}

.qty-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

.qty-btn:active {
  background: rgba(0, 0, 0, 0.1);
}

.qty-input {
  width: 48px;
  height: 56px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  -moz-appearance: textfield;
  flex: 1;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Add to Cart Button - CTA with Accent Color */
.btn-add-to-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  padding: 0 28px;
  background: #FFBD59 !important;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 600;
  color: #111111 !important;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.btn-add-to-cart::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-add-to-cart:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-add-to-cart:hover::before {
  transform: translateX(100%);
}

.btn-add-to-cart:active {
  transform: translateY(0);
}

/* Success State for Add to Cart */
.btn-add-to-cart.success {
  background: var(--color-success) !important;
  color: white !important;
  transform: scale(1.02);
}

.btn-add-to-cart.success .btn-price {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-text {
  font-weight: 700;
}

.btn-price {
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-base);
}

.btn-buy-now {
  width: 100%;
  height: 48px;
  padding: 0 24px;
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-buy-now:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-buy-now:active {
  transform: translateY(0);
}

/* Trust Grid - White Background with Elegant Black Border */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

/* Gliding light stripe effect on hover (like c24-benefit-item) */
.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 189, 89, 0.15),
    rgba(255, 189, 89, 0.25),
    rgba(255, 189, 89, 0.15),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.trust-item:hover::before {
  left: 150%;
}

.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 189, 89, 0.4);
}

.trust-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.trust-item:hover .trust-icon {
  background: var(--color-accent-light);
}

.trust-item:hover .trust-icon svg {
  color: var(--color-accent-dark);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  transition: color var(--transition-base);
}

.trust-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-text strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}

.trust-text span {
  font-size: 12px;
  color: var(--color-secondary);
}

/* Accordion */
.details-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  list-style: none;
}

.accordion-header::-webkit-details-marker {
  display: none;
}

.accordion-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  color: var(--color-secondary);
  transition: transform var(--transition-base);
}

.accordion-item[open] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  padding-bottom: 18px;
}

.accordion-content {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-secondary);
}

.accordion-content h4 {
  margin: 16px 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}

.accordion-content h4:first-child {
  margin-top: 0;
}

.accordion-content p {
  margin: 0 0 12px;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

/* ===================================
   STICKY CART BAR
   =================================== */

.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
  padding: 12px 0;
  z-index: 1000;
  transform: translateY(100%);
  opacity: 0;
  transition: all var(--transition-base);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-cart-bar.visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-cart-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cart-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sticky-cart-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-cart-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
}

.sticky-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.sticky-cart-btn svg {
  width: 20px;
  height: 20px;
}

.sticky-cart-btn:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.sticky-cart-btn.success {
  background: var(--color-success) !important;
  color: white !important;
}

/* Verstecke alle anderen Checkboxen im product-card Template */
.c24-product-item input[type="checkbox"]:not(.c24-product-checkbox),
.c24-product-item input[type="radio"],
.c24-product-card input[type="checkbox"],
.c24-product-card input[type="radio"],
.c24-product-card .form-check-input,
.c24-product-card .checkbox-input,
.c24-product-card .product-form__input[type="checkbox"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

<!-- custom-liquid Section wird geladen: template--28915066798421__custom_liquid_zJeijB -->

/* White Review Section Styles */
.reviews-section-white {
  background: #ffffff;
  padding: 60px 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #1a1a1a;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 18px;
  line-height: 1.2;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reviews-header .stars {
  display: flex;
  gap: 4px;
}

.reviews-header .star {
  font-size: 32px;
  color: #e5e5e5;
  transition: color 0.3s ease;
}

.reviews-header .star.filled {
  color: #FFBD59;
}

.reviews-header .star.half-filled {
  background: linear-gradient(90deg, #FFBD59 50%, #e5e5e5 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Slider Styles */
.reviews-slider-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.reviews-slider {
  overflow: hidden;
  margin: 0 60px;
  padding: 20px 0;
  position: relative;
}

.reviews-slider::before,
.reviews-slider::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 100px;
  z-index: 5;
  pointer-events: none;
}

.reviews-slider::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0.8) 30%, rgba(255,255,255,0.4) 70%, transparent 100%);
}

.reviews-slider::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255,255,255,0.8) 30%, rgba(255,255,255,0.4) 70%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  touch-action: pan-y;
}

.product-image {
  width: 150px;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Button */
.reviews-cta {
  text-align: center;
}

/* ProductMeta rating row */
.product-header { margin-bottom: 16px; }
.product-vendor { display: inline-block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #FFBD59; font-weight: 700; margin-bottom: 8px; }
.product-title { font-family: 'Philosopher', Georgia, serif; font-size: 40px; line-height: 1.1; font-weight: 700; margin: 0 0 12px; color: #1A1A2E; }
.product-rating { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.product-rating .stars { display: inline-flex; gap: 2px; }
.product-rating .star { width: 18px; height: 18px; fill: #e5e5e5; }
.product-rating .star.filled { fill: #FFBD59; }
.product-rating .star.partial { fill: url(#star-gradient); }
.product-rating .star.partial path { fill: #FFBD59; clip-path: inset(0 50% 0 0); }
.product-rating .rating-value { font-weight: 700; color: #1A1A2E; }
.product-rating .rating-link { color: #666; text-decoration: underline; font-size: 13px; }

/* Variant active chip — enforce yellow fill */
.variants-section .variant-option input { position: absolute; opacity: 0; pointer-events: none; }
.variants-section .variant-btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border: 1px solid #e5e5e5; border-radius: 100px; background: #fff; color: #1A1A2E; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s ease; min-height: 38px; }
.variants-section .variant-option:hover .variant-btn { border-color: #FFBD59; }
.variants-section .variant-option input:checked + .variant-btn { background: #FFBD59 !important; border-color: #FFBD59 !important; color: #1A1A2E !important; }
.variants-section .variant-sold-out .variant-btn { color: #aaa; text-decoration: line-through; cursor: not-allowed; background: #f5f5f5; }
.variants-section .variant-label { display: block; font-size: 13px; font-weight: 600; color: #1A1A2E; margin-bottom: 10px; }
.variants-section .variant-selected-value { font-weight: 400; color: #666; margin-left: 4px; }
.variants-section .variant-group { margin-bottom: 18px; }

/* Stock bar — force visible default fill */
.availability-info { margin: 16px 0; padding: 12px 16px; background: #f8faf8; border: 1px solid #e8f5e9; border-radius: 12px; }
.availability-info .live-activity { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #16a34a; margin-bottom: 8px; }
.availability-info .pulse { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulse-dot 1.8s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.4); } }
.availability-info .stock-indicator { display: block; }
.availability-info .stock-bar { height: 6px; background: rgba(0,0,0,.08); border-radius: 9999px; overflow: hidden; margin-bottom: 6px; }
.availability-info .stock-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #22c55e, #16a34a); border-radius: 9999px; transition: width 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.availability-info .stock-text { font-size: 13px; color: #1A1A2E; }
.availability-info .stock-text strong { color: #16a34a; font-weight: 700; }

/* Stock bar — force block display + explicit height */
.stock-bar { display: block !important; position: relative; height: 6px !important; width: 100%; background: rgba(0,0,0,.08); border-radius: 9999px; overflow: hidden; }
.stock-fill { display: block !important; height: 6px !important; min-width: 0; max-width: 100%; background: linear-gradient(90deg, #22c55e, #16a34a) !important; border-radius: 9999px; transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.availability-info .stock-fill { width: 25%; }

/* Accordion — full width of product-info column, proper open/close */
.product-info .details-accordion { margin-top: 24px; border-top: 1px solid #e5e5e5; padding-top: 16px; }
.product-info .accordion-item { border-bottom: 1px solid #e5e5e5; }
.product-info .accordion-item > summary, .product-info .accordion-header { cursor: pointer; padding: 14px 0; font-size: 14px; font-weight: 600; color: #1A1A2E; display: flex; justify-content: space-between; align-items: center; list-style: none; }
.product-info .accordion-item > summary::-webkit-details-marker { display: none; }
.product-info .accordion-body, .product-info .accordion-content { padding: 0 0 14px; font-size: 13px; line-height: 1.6; color: #4a4a4a; }

/* Editorial v5 long-form copy: restore readable semantic defaults after the
   product-section reset. Keep this class-bound so legacy inline descriptions
   and the surrounding PDP UI retain their existing presentation. */
.product-description--editorial-v5 {
  max-width: 100%;
  color: var(--color-secondary, #6e6e73);
  font-size: 15px;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.product-description--editorial-v5 p {
  margin: 0 0 14px;
}

.product-description--editorial-v5 strong {
  color: var(--color-primary, #111111);
  font-weight: 600;
}

.product-description--editorial-v5 em {
  font-style: italic;
}

.product-description--editorial-v5 h2,
.product-description--editorial-v5 h3,
.product-description--editorial-v5 h4 {
  color: var(--color-primary, #111111);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.product-description--editorial-v5 h2 {
  margin: 28px 0 12px;
  font-size: 18px;
  line-height: 1.35;
}

.product-description--editorial-v5 h3 {
  margin: 22px 0 10px;
  font-size: 16px;
  line-height: 1.4;
}

.product-description--editorial-v5 h4 {
  margin: 18px 0 8px;
  font-size: 15px;
  line-height: 1.45;
}

.product-description--editorial-v5 ul,
.product-description--editorial-v5 ol {
  margin: 12px 0 18px;
  padding-left: 24px;
}

.product-description--editorial-v5 ul {
  list-style: disc;
}

.product-description--editorial-v5 ol {
  list-style: decimal;
}

.product-description--editorial-v5 li {
  margin: 0 0 8px;
  padding-left: 2px;
}

.product-description--editorial-v5 li:last-child {
  margin-bottom: 0;
}

.product-description--editorial-v5 table {
  width: 100%;
  max-width: 100%;
  margin: 20px 0 22px;
  border: 1px solid var(--color-border, rgba(0, 0, 0, 0.08));
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-sm, 8px);
  table-layout: fixed;
  overflow: hidden;
  color: var(--color-secondary, #6e6e73);
  font-size: 14px;
  line-height: 1.55;
}

.product-description--editorial-v5 th,
.product-description--editorial-v5 td {
  padding: 10px 14px;
  border-right: 1px solid var(--color-border, rgba(0, 0, 0, 0.08));
  border-bottom: 1px solid var(--color-border, rgba(0, 0, 0, 0.08));
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.product-description--editorial-v5 th {
  background: var(--color-surface, #f5f5f7);
  color: var(--color-primary, #111111);
  font-weight: 600;
}

.product-description--editorial-v5 tr > :last-child {
  border-right: 0;
}

.product-description--editorial-v5 tbody tr:last-child > td {
  border-bottom: 0;
}

.product-description--editorial-v5 a {
  color: #744900;
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-color: var(--color-accent, #ffbd59);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color var(--transition-fast, 150ms ease), background-color var(--transition-fast, 150ms ease);
}

.product-description--editorial-v5 a:hover {
  color: var(--color-primary, #111111);
  background: var(--color-accent-light, rgba(255, 189, 89, 0.12));
}

.product-description--editorial-v5 a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(116, 73, 0, 0.28);
  outline-offset: 3px;
}

.product-description--editorial-v5 > :first-child {
  margin-top: 0;
}

.product-description--editorial-v5 > :last-child {
  margin-bottom: 0;
}

/* Product-description FAQs: native, crawlable and keyboard-accessible. */
.product-description .product-faq {
  margin: 16px 0 24px;
  border-top: 1px solid #e5e5e5;
}

.product-description .product-faq__item {
  margin: 0 !important;
  border-bottom: 1px solid #e5e5e5;
}

.product-description .product-faq__question {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 14px 44px 14px 0;
  color: #111;
  cursor: pointer;
  list-style: none;
}

.product-description .product-faq__question::-webkit-details-marker {
  display: none;
}

.product-description .product-faq__question h3 {
  margin: 0 !important;
  color: inherit !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}

.product-description .product-faq__question::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 8px;
  width: 24px;
  height: 24px;
  color: #0f766e;
  font-size: 24px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  transform: translateY(-50%);
  transition: transform 160ms ease;
}

.product-description .product-faq__item[open] > .product-faq__question::after {
  transform: translateY(-50%) rotate(45deg);
}

.product-description .product-faq__question:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(15, 118, 110, 0.35);
  outline-offset: 3px;
}

.product-description .product-faq__answer {
  padding: 0 44px 14px 0;
}

.product-description .product-faq__answer > :last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 600px) {
  .product-description--editorial-v5 {
    font-size: 15px;
    line-height: 1.68;
  }

  .product-description--editorial-v5 h2 {
    margin-top: 26px;
    font-size: 18px;
  }

  .product-description--editorial-v5 h3 {
    font-size: 16px;
  }

  .product-description--editorial-v5 ul,
  .product-description--editorial-v5 ol {
    padding-left: 22px;
  }

  .product-description--editorial-v5 table {
    font-size: 13px;
  }

  .product-description--editorial-v5 th,
  .product-description--editorial-v5 td {
    padding: 9px 8px;
  }

  .product-description .product-faq__question {
    min-height: 56px;
    padding-right: 38px;
  }

  .product-description .product-faq__question h3 {
    font-size: 15px !important;
  }

  .product-description .product-faq__answer {
    padding-right: 0;
  }
}

@media (max-width: 900px) {
  .product-section-elegant {
    padding: 22px 0 32px;
    overflow-x: clip;
  }

  .product-container {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }

  .product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .product-gallery,
  .product-info {
    position: static;
    width: 100%;
    min-width: 0;
  }

  .main-image-wrapper,
  .main-image {
    max-width: 100%;
  }

  .gallery-thumbnails {
    justify-content: flex-start;
    max-width: 100%;
  }

  .abo-toggle-pills {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .abo-pill {
    min-width: 0;
    padding: 11px 10px;
    overflow-wrap: anywhere;
  }

  .purchase-controls {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 10px;
  }

  .quantity-selector {
    width: 112px;
  }

  .qty-btn {
    width: 36px;
  }

  .qty-input {
    width: 40px;
  }

  .btn-add-to-cart,
  .btn-buy-now {
    min-width: 0;
    padding-left: 14px;
    padding-right: 14px;
    white-space: normal;
  }

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

  .trust-item {
    min-width: 0;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .purchase-controls {
    grid-template-columns: 1fr;
  }

  .quantity-selector {
    width: 100%;
    justify-content: center;
  }
}

/* ===== WarumC24 / Benefits Banner ===== */
.c24-benefits-banner { position: relative; width: 100%; background: url('https://cdn.shopify.com/s/files/1/0859/5613/3205/files/Design_ohne_Titel_42.png?v=1750589797') center/cover no-repeat; min-height: 480px; display: flex; align-items: center; overflow: hidden; font-family: 'Montserrat', 'Poppins', sans-serif; }
.c24-benefits-container { max-width: 1100px; margin: 0 auto; padding: 60px 24px; position: relative; width: 100%; }
.c24-benefits-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.55); z-index: 1; }
.c24-benefits-content { position: relative; z-index: 2; }
.c24-benefits-header { text-align: center; margin-bottom: 40px; }
.c24-benefits-badge { display: inline-block; background: #FFBD59; color: #111; font-size: 0.8rem; font-weight: 700; padding: 8px 18px; border-radius: 30px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.c24-benefits-title { font-size: 2.8rem; font-weight: 800; margin: 0 0 14px 0; color: #fff; line-height: 1.15; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.c24-benefits-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.9); margin: 0 auto; line-height: 1.6; max-width: 600px; }
.c24-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.c24-benefit-item { background: rgba(255,255,255,0.1); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 24px 18px; display: flex; align-items: center; gap: 16px; transition: all 0.3s ease; }
.c24-benefit-item:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); border-color: rgba(255,189,89,0.5); }
.c24-benefit-icon { flex-shrink: 0; width: 52px; height: 52px; background: #FFBD59; border-radius: 14px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.c24-benefit-item:hover .c24-benefit-icon { transform: scale(1.1); }
.c24-benefit-icon svg { width: 26px; height: 26px; color: #111; }
.c24-rating-stars { color: #111; font-size: 1rem; letter-spacing: -2px; }
.c24-benefit-text { flex: 1; min-width: 0; }
.c24-benefit-text h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 4px 0; color: #fff; line-height: 1.3; }
.c24-benefit-text p { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.4; }
@media (max-width: 1000px) { .c24-benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } .c24-benefits-title { font-size: 2.4rem; } }
@media (max-width: 600px) { .c24-benefits-banner { min-height: auto; background-position: 9% center; } .c24-benefits-container { padding: 40px 16px; } .c24-benefits-header { margin-bottom: 28px; } .c24-benefits-badge { font-size: 0.7rem; padding: 6px 14px; margin-bottom: 12px; } .c24-benefits-title { font-size: 1.7rem; margin-bottom: 10px; } .c24-benefits-subtitle { font-size: 0.95rem; } .c24-benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .c24-benefit-item { padding: 14px 12px; gap: 12px; border-radius: 14px; flex-direction: column; text-align: center; } .c24-benefit-icon { width: 44px; height: 44px; border-radius: 12px; } .c24-benefit-icon svg { width: 22px; height: 22px; } .c24-benefit-text h3 { font-size: 0.92rem; margin-bottom: 2px; } .c24-benefit-text p { font-size: 0.78rem; } }

/* ===== Kundenstimmen / Reviews ===== */
.reviews-section-white { background: #ffffff; padding: 60px 20px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; color: #1a1a1a; overflow: hidden; position: relative; z-index: 1; }
.reviews-container { max-width: 1400px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 40px; }
.reviews-title { font-size: 3rem; font-weight: 700; color: #1a1a1a; margin-bottom: 18px; line-height: 1.2; }
.reviews-rating { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 16px; }
.reviews-header .stars { display: flex; gap: 4px; }
.reviews-header .star { font-size: 32px; color: #e5e5e5; transition: color 0.3s ease; }
.reviews-header .star.filled { color: #FFBD59; }
.reviews-header .star.half-filled { background: linear-gradient(90deg, #FFBD59 50%, #e5e5e5 50%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.rating-text { font-size: 1.5rem; font-weight: 700; color: #1a1a1a; }
.reviews-subtitle { font-size: 1.25rem; color: #666; max-width: 650px; margin: 0 auto; line-height: 1.5; }
.reviews-slider-wrapper { position: relative; margin-bottom: 30px; }
.reviews-slider { overflow: hidden; margin: 0 60px; padding: 20px 0; position: relative; }
.reviews-slider::before { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 100px; z-index: 5; pointer-events: none; background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0.8) 30%, rgba(255,255,255,0.4) 70%, transparent 100%); }
.reviews-slider::after { content: ''; position: absolute; top: 0; right: 0; height: 100%; width: 100px; z-index: 5; pointer-events: none; background: linear-gradient(to left, #ffffff 0%, rgba(255,255,255,0.8) 30%, rgba(255,255,255,0.4) 70%, transparent 100%); }
.reviews-track { display: flex; gap: 28px; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; touch-action: pan-y; }
.review-card { flex: 0 0 520px; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); border-radius: 18px; position: relative; overflow: hidden; border: 2px solid #e5e5e5; transition: all 0.5s ease; cursor: grab; user-select: none; transform: scale(0.88); opacity: 0.6; z-index: 2; }
.review-card.active { transform: scale(1); opacity: 1; border-color: #ccc; box-shadow: 0 12px 35px rgba(0,0,0,0.15); z-index: 3; }
.review-card:active { cursor: grabbing; }
.review-card:not(.active):hover { transform: scale(0.92); opacity: 0.75; border-color: #bbb; }
.review-card.active:hover { transform: scale(1.02) translateY(-4px); border-color: #FFBD59; box-shadow: 0 18px 45px rgba(255,189,89,0.25); }
.review-badge { position: absolute; top: 14px; right: 14px; background: #22c55e; color: #fff; padding: 6px 12px; border-radius: 20px; font-weight: 600; font-size: 0.8rem; z-index: 1; display: flex; align-items: center; gap: 5px; box-shadow: 0 2px 8px rgba(34,197,94,0.3); }
.review-content { display: flex; align-items: stretch; gap: 24px; padding: 28px; min-height: 280px; }
.review-image-section { flex-shrink: 0; display: flex; align-items: center; }
.product-image { width: 150px; height: 190px; object-fit: cover; border-radius: 12px; pointer-events: none; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.review-text-section { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.review-product-title { font-size: 1.35rem; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; text-align: left; line-height: 1.3; }
.review-stars { display: flex; align-items: center; gap: 3px; margin-bottom: 14px; justify-content: flex-start; }
.review-stars .star { font-size: 22px; color: #e5e5e5; transition: color 0.3s ease; }
.review-stars .star.filled { color: #FFBD59; }
.review-stars .star.half-filled { background: linear-gradient(90deg, #FFBD59 50%, #e5e5e5 50%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.star-rating-text { font-size: 1rem; font-weight: 700; color: #FFBD59; margin-left: 8px; }
.review-text { font-size: 1.05rem; line-height: 1.6; color: #555; margin-bottom: 16px; font-style: italic; text-align: left; flex-grow: 1; }
.review-footer { margin-top: auto; }
.review-author-info { display: flex; flex-direction: column; gap: 4px; }
.review-author { font-weight: 700; color: #FFBD59; font-size: 1.1rem; text-align: left; }
.review-date { font-size: 0.9rem; color: #999; text-align: left; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: #ffffff; border: 2px solid #e5e5e5; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; z-index: 10; color: #1a1a1a; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.slider-arrow:hover { background: #FFBD59; border-color: #FFBD59; color: #000; transform: translateY(-50%) scale(1.1); }
.slider-arrow-left { left: 10px; }
.slider-arrow-right { right: 10px; }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-bottom: 20px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #e5e5e5; cursor: pointer; transition: all 0.3s ease; }
.dot.active { background: #FFBD59; width: 28px; border-radius: 5px; }
.reviews-cta { text-align: center; }
.review-button-white { display: inline-block; padding: 16px 36px; background-color: #1a1a1a; color: #fff; font-weight: 700; font-size: 1.15rem; text-decoration: none; border: none; border-radius: 12px; transition: all 0.3s ease; cursor: pointer; margin: 0; }
.review-button-white:hover { background-color: #FFBD59; color: #000; transform: scale(1.04); box-shadow: 0 8px 25px rgba(255,189,89,0.5); }
@media (max-width: 768px) {
  .reviews-section-white { padding: 50px 15px; }
  .reviews-title { font-size: 2.2rem; }
  .reviews-header .star { font-size: 26px; }
  .rating-text { font-size: 1.3rem; }
  .reviews-subtitle { font-size: 1.1rem; }
  .reviews-slider { margin: 0 15px; }
  .reviews-slider::before, .reviews-slider::after { display: none; }
  .review-card { flex: 0 0 calc(100vw - 60px); max-width: 380px; transform: scale(0.92); }
  .review-card.active { transform: scale(1); }
  .review-content { flex-direction: column; align-items: center; text-align: center; padding: 24px 20px; gap: 18px; min-height: auto; }
  .product-image { width: 120px; height: 155px; }
  .review-product-title { text-align: center; font-size: 1.25rem; }
  .review-stars { justify-content: center; }
  .review-text { text-align: center; font-size: 1rem; }
  .review-author, .review-date { text-align: center; }
}

/* ===== Newsletter ===== */
.newsletter-section { position: relative; background-image: url('https://cdn.shopify.com/s/files/1/0859/5613/3205/files/Design_ohne_Titel_38.png?v=1745400545'); background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: fixed; min-height: 520px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.newsletter-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%); z-index: 1; }
.newsletter-container { position: relative; z-index: 2; max-width: 650px; width: 100%; padding: 0 24px; text-align: center; }
.newsletter-content { background: rgba(255,255,255,0.96); backdrop-filter: blur(16px); border-radius: 28px; padding: 48px 44px 52px 44px; box-shadow: 0 25px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1); transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); border: 1px solid rgba(255,255,255,0.2); }
.newsletter-content:hover { transform: translateY(-6px); box-shadow: 0 35px 100px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,189,89,0.1); }
.newsletter-title { font-size: 2.9rem; font-weight: 800; color: #111; margin-bottom: 24px; line-height: 1.15; letter-spacing: -0.025em; }
.newsletter-text { font-size: 1.25rem; color: #555; line-height: 1.65; margin-bottom: 40px; font-weight: 400; opacity: 0.9; }
.newsletter-form { width: 100%; }
.newsletter-input-group { display: flex; gap: 16px; flex-wrap: wrap; }
.newsletter-email-container { flex: 1; min-width: 300px; }
.newsletter-email { width: 100%; padding: 20px 24px; border: 2px solid rgba(232,232,232,0.6); border-radius: 18px; font-size: 1.1rem; font-weight: 500; background: rgba(255,255,255,0.8); color: #333; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); outline: none; font-family: inherit; margin-bottom: 12px; box-sizing: border-box; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.newsletter-email:focus { border-color: #FFBD59; background: rgba(255,255,255,0.95); box-shadow: 0 0 0 4px rgba(255,189,89,0.12), 0 8px 24px rgba(255,189,89,0.15); transform: translateY(-2px); }
.newsletter-email::placeholder { color: #999; font-weight: 400; }
.newsletter-submit { display: flex; align-items: center; gap: 10px; background: #111; color: #fff; border: none; border-radius: 18px; padding: 20px 32px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); white-space: nowrap; font-family: inherit; box-shadow: 0 6px 20px rgba(0,0,0,0.15); height: fit-content; position: relative; overflow: hidden; }
.newsletter-submit::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transition: left 0.5s ease; }
.newsletter-submit:hover { background: #FFBD59; color: #111; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,189,89,0.35); }
.newsletter-submit:hover::before { left: 100%; }
.newsletter-submit:active { transform: translateY(-1px); }
.newsletter-submit-icon { transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: flex; align-items: center; }
.newsletter-submit:hover .newsletter-submit-icon { transform: translateX(4px); }
.newsletter-disclaimer { font-size: 0.85rem; color: #666; margin: 0; line-height: 1.5; opacity: 0.85; }
.newsletter-link { color: #FFBD59; text-decoration: none; font-weight: 600; transition: all 0.2s ease; }
.newsletter-link:hover { color: #111; text-decoration: underline; }
@media (max-width: 768px) {
  .newsletter-section { min-height: 480px; padding: 40px 0; background-attachment: scroll; }
  .newsletter-container { padding: 0 20px; }
  .newsletter-content { padding: 40px 32px 44px 32px; border-radius: 24px; }
  .newsletter-title { font-size: 2.4rem; margin-bottom: 20px; }
  .newsletter-text { font-size: 1.15rem; margin-bottom: 32px; }
  .newsletter-input-group { flex-direction: column; gap: 16px; }
  .newsletter-email-container { min-width: 100%; }
  .newsletter-submit { width: 100%; justify-content: center; padding: 18px 24px; font-size: 1rem; border-radius: 16px; }
}
@media (max-width: 480px) {
  .newsletter-content { padding: 32px 24px 36px 24px; border-radius: 20px; }
  .newsletter-title { font-size: 2rem; }
  .newsletter-text { font-size: 1.05rem; }
}


/* Kundenstimmen stars vertical alignment fix */
.review-stars { line-height: 1 !important; }
.review-stars .star { line-height: 1 !important; vertical-align: middle; }
.review-stars .star-rating-text { line-height: 1 !important; vertical-align: middle; align-self: center; }
.reviews-summary .stars, .reviews-header .stars { line-height: 1 !important; display: inline-flex; align-items: center; }
.reviews-summary .star, .reviews-header .star { line-height: 1 !important; vertical-align: middle; }

/* Reviews-header summary: stars + rating-text same line + same visual size */
.reviews-rating { display: inline-flex !important; align-items: center !important; gap: 10px !important; line-height: 1 !important; }
.reviews-header .stars { display: inline-flex !important; align-items: center !important; gap: 2px !important; line-height: 1 !important; }
.reviews-header .star { font-size: 24px !important; line-height: 1 !important; vertical-align: middle !important; }
.reviews-rating .rating-text { font-size: 24px !important; line-height: 1 !important; vertical-align: middle !important; font-weight: 700 !important; }

/* Stars vertical offset — Unicode ★ sits below baseline, push up */
.reviews-rating { align-items: center !important; }
.reviews-header .stars { align-items: center !important; transform: translateY(-5px); }
.reviews-header .star { display: inline-block; }
