/** Shopify CDN: Minification failed

Line 159:0 All "@import" rules must come first

**/
/* =============================================================
   PIXKOM CUSTOM DESIGN SYSTEM
   Dark Theme Default | Light Mode Toggle
   ============================================================= */

/* --- Design Tokens (Dark Mode Default) --- */
:root {
  /* Backgrounds */
  --bg-primary: #0a0a0a;
  --bg-card: #111111;
  --bg-elevated: #151515;
  --bg-surface: #1a1a1a;
  --bg-overlay: rgba(0, 0, 0, 0.7);
  --bg-hero-deep: #0f1628;
  --bg-hero-accent: #1a0a1e;
  --bg-geschenk-start: #1a1520;
  --bg-geschenk-end: #151520;

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --text-disabled: #555555;

  /* Accents */
  --accent: #23C2EC;
  --accent-secondary: #456FB5;
  --accent-tertiary: #9b59b6;
  --accent-warm: #ff6b6b;
  --accent-success: #4ade80;
  --accent-hover: #1dafd6;
  --accent-glow: rgba(35, 194, 236, 0.25);
  --color-star: #f5a623;

  /* Borders */
  --border-subtle: #1a1a1a;
  --border-interactive: #2a2a2a;
  /* DEPRECATED — keep temporarily for existing components, remove after full migration */
  --border-color: #1a1a1a;
  --border-hover: #2a2a2a;

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 8px 24px rgba(35, 194, 236, 0.12);

  /* Glows & Glass */
  --glow-primary: rgba(35, 194, 236, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.04);

  /* Accent Variants */
  --accent-gift: #ffb74d;
  --accent-bg-subtle: rgba(35,194,236,0.04);
  --accent-border-subtle: rgba(35,194,236,0.15);

  /* Mega Panel */
  --bg-mega-panel: rgba(15,15,25,0.95);
  --shadow-mega: 0 8px 32px rgba(0,0,0,0.5);

  /* Collection Hero Overlay */
  --hero-overlay-start: rgba(10,10,10,1);
  --hero-overlay-mid: rgba(10,10,10,0.7);
  --hero-overlay-end: rgba(10,10,10,0.15);

  /* Hover */
  --hover-bg: rgba(255,255,255,0.03);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #23C2EC, #456FB5);
  --gradient-warm: linear-gradient(135deg, rgba(35,194,236,0.08), rgba(255,107,107,0.08));
  --gradient-marquee: linear-gradient(90deg, #23C2EC, #456FB5, #ff6b6b, #23C2EC);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Transitions */
  --transition-fast: 180ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Layout */
  --font-body: 'Montserrat', sans-serif;
  --header-height: 72px;
  --promo-height: 36px;

  /* Danger/Success — keep for backwards compat */
  --danger: #e53e3e;
  --success: #38a169;
}

/* --- Light Mode --- */
[data-theme="light"] {
  --bg-primary: #fafafa;
  --bg-card: #ffffff;
  --bg-elevated: #f0f0f0;
  --bg-surface: #e8e8e8;
  --bg-overlay: rgba(255, 255, 255, 0.7);
  --bg-hero-deep: #e8edf5;
  --bg-hero-accent: #f0e8f5;
  --bg-geschenk-start: #f5f0f8;
  --bg-geschenk-end: #f0f0f8;

  --text-primary: #000000;
  --text-secondary: #333333;
  --text-muted: #666666;
  --text-disabled: #999999;

  --accent: #456FB5;
  --accent-secondary: #23C2EC;
  --accent-tertiary: #7c3fa0;
  --accent-warm: #e74c3c;
  --accent-success: #22c55e;
  --accent-hover: #3a5f9e;
  --accent-glow: rgba(69, 111, 181, 0.2);
  --color-star: #e69500;

  --border-subtle: #e0e0e0;
  --border-interactive: #d0d0d0;
  --border-color: #e0e0e0;
  --border-hover: #d0d0d0;

  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 24px rgba(69, 111, 181, 0.12);

  --glow-primary: rgba(69, 111, 181, 0.08);
  --glass-bg: rgba(0, 0, 0, 0.03);
  --glass-border: rgba(0, 0, 0, 0.06);

  --gradient-primary: linear-gradient(135deg, #456FB5, #23C2EC);
  --gradient-warm: linear-gradient(135deg, rgba(69,111,181,0.1), rgba(231,76,60,0.1));
  --gradient-marquee: linear-gradient(90deg, #456FB5, #23C2EC, #e74c3c, #456FB5);

  --accent-gift: #e6a030;
  --accent-bg-subtle: rgba(69,111,181,0.06);
  --accent-border-subtle: rgba(69,111,181,0.15);

  --bg-mega-panel: rgba(250,250,250,0.95);
  --shadow-mega: 0 8px 32px rgba(0,0,0,0.1);

  --hero-overlay-start: rgba(250,250,250,1);
  --hero-overlay-mid: rgba(250,250,250,0.75);
  --hero-overlay-end: rgba(250,250,250,0.2);

  --hover-bg: rgba(0,0,0,0.03);

  --danger: #c53030;
  --success: #2f855a;
}

/* --- Font Import (Montserrat) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap');

/* --- Global Overrides --- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body) !important;
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--transition-base), color var(--transition-base);
}

/* Override Shopify color scheme system */
.color-scheme-1,
.color-scheme-2,
.color-scheme-3,
.color-scheme-4,
[class*="color-scheme"] {
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
}

.gradient {
  background: var(--bg-primary) !important;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4 {
  font-family: var(--font-body) !important;
  color: var(--text-primary) !important;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1, .h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; }
h2, .h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; }
h3, .h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4, .h4 { font-size: 1.1rem; font-weight: 600; }

p, li, span, a, label, input, textarea, select, button {
  font-family: var(--font-body) !important;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* --- Section Label (uppercase small accent text) --- */
.pixkom-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.pixkom-section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

/* --- Buttons --- */
.pixkom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1;
}

.pixkom-btn--primary {
  background: var(--accent);
  color: #000;
}

.pixkom-btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.pixkom-btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.pixkom-btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* --- Global Pill Buttons (Shopify overrides) --- */
.button, .shopify-challenge__button, .customer button,
[type="submit"], .cart__checkout-button {
  border-radius: 999px !important;
  font-family: var(--font-body) !important;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

/* Primary buttons */
.button--primary, .cart__checkout-button {
  background: var(--gradient-primary) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 4px 20px var(--glow-primary);
}

.button--primary:hover, .cart__checkout-button:hover {
  box-shadow: 0 6px 28px var(--glow-primary);
  transform: translateY(-1px);
}

/* Secondary buttons */
.button--secondary {
  background: transparent !important;
  border: 1px solid var(--border-interactive) !important;
  color: var(--text-primary) !important;
}

.button--secondary:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

/* Tertiary / Ghost */
.button--tertiary {
  background: transparent !important;
  border: none !important;
  color: var(--accent) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Cart page checkout */
.cart__checkout-button {
  padding: 16px 32px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

/* Dynamic checkout buttons (PayPal, etc.) */
.cart__dynamic-checkout-buttons button,
.shopify-payment-button .shopify-payment-button__button {
  border-radius: 999px !important;
}

/* Gradient shift animation on hover */
@keyframes pixkom-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.button--primary:hover, .cart__checkout-button:hover,
.pixkom-btn--primary:hover {
  background-size: 200% 200%;
  animation: pixkom-gradient-shift 3s ease infinite;
}

/* --- Sticky Header Override --- */
.section-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-wrapper {
  background-color: var(--bg-primary) !important;
  border-bottom: 1px solid var(--border-subtle) !important;
  transition: all var(--transition-base);
}

.header {
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}

/* Header links */
.header__menu-item,
.list-menu__item--link {
  color: var(--text-primary) !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  transition: color var(--transition-fast) !important;
}

.header__menu-item:hover,
.list-menu__item--link:hover {
  color: var(--accent) !important;
}

.header__heading-link {
  color: var(--text-primary) !important;
}

/* Header icons */
.header__icon {
  color: var(--text-primary) !important;
}

.header__icon:hover {
  color: var(--accent) !important;
}

/* Cart count badge */
.cart-count-bubble {
  background-color: var(--accent) !important;
  color: #000 !important;
  font-weight: 700 !important;
}

/* --- Menu Drawer Override --- */
.menu-drawer {
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
  border-right: 1px solid var(--border-subtle) !important;
}

.menu-drawer__menu-item,
.menu-drawer__menu-item span {
  color: var(--text-primary) !important;
}

.menu-drawer__close-button {
  color: var(--text-primary) !important;
}

/* --- Product Card Overrides --- */
.card-wrapper {
  transition: transform var(--transition-fast);
}

.card-wrapper:hover {
  transform: translateY(-4px);
}

.card {
  background-color: var(--bg-card) !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  border: 1px solid var(--border-subtle) !important;
  transition: all var(--transition-fast) !important;
}

.card:hover {
  border-color: var(--border-interactive) !important;
  box-shadow: var(--shadow-card-hover) !important;
}

.card__inner {
  border-radius: var(--radius-md) !important;
}

.card__content {
  padding: 1rem !important;
}

.card__heading,
.card__heading a {
  color: var(--text-primary) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
}

.card-information__text {
  color: var(--text-secondary) !important;
}

/* Price styling */
.price-item--regular,
.price-item--sale {
  color: var(--accent) !important;
  font-weight: 700 !important;
}

.price-item--regular.price-item--last {
  color: var(--text-muted) !important;
}

.price .price-item--sale ~ .price-item--regular {
  color: var(--text-muted) !important;
  text-decoration: line-through !important;
}

/* --- Collection Page Overrides --- */
.collection-hero {
  background-color: var(--bg-elevated) !important;
}

.collection-hero__title {
  color: var(--text-primary) !important;
}

/* Facets / Filters */
.facets-wrapper {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: var(--radius-md) !important;
}

.facet-checkbox__text,
.facets__summary {
  color: var(--text-primary) !important;
}

/* --- Cart Drawer Overrides --- */
.cart-drawer {
  background-color: var(--bg-primary) !important;
  border-left: 1px solid var(--border-subtle) !important;
}

.drawer__header {
  border-bottom: 1px solid var(--border-subtle) !important;
}

.cart-drawer__overlay {
  background-color: var(--bg-overlay) !important;
}

.cart-item__name,
.cart-item__details {
  color: var(--text-primary) !important;
}

/* --- Footer Overrides --- */
.footer {
  background-color: var(--bg-elevated) !important;
  border-top: 1px solid var(--border-subtle) !important;
  color: var(--text-secondary) !important;
}

.footer-block__heading {
  color: var(--text-primary) !important;
}

.footer a {
  color: var(--text-secondary) !important;
}

.footer a:hover {
  color: var(--accent) !important;
}

/* --- Predictive Search Overrides --- */
.predictive-search {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-card) !important;
}

.predictive-search__result-group {
  color: var(--text-primary) !important;
}

/* --- Badge Styles --- */
.pixkom-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pixkom-badge--bestseller,
.pixkom-badge--new {
  background: rgba(35, 194, 236, 0.2);
  color: var(--accent);
  border: 1px solid rgba(35, 194, 236, 0.3);
}

.pixkom-badge--sale {
  background: rgba(229, 62, 62, 0.2);
  color: var(--danger);
  border: 1px solid rgba(229, 62, 62, 0.3);
}

/* --- Wishlist Heart --- */
.pixkom-wishlist-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-fast);
  color: #fff;
}

.card-wrapper:hover .pixkom-wishlist-btn,
.pixkom-wishlist-btn.is-active {
  opacity: 1;
  transform: scale(1);
}

.pixkom-wishlist-btn.is-active {
  color: var(--danger);
}

.pixkom-wishlist-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

.pixkom-wishlist-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --- Brand Label on cards --- */
.pixkom-brand-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-secondary);
  margin-bottom: 0.25rem;
}

/* --- Scroll Animations --- */
.pixkom-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pixkom-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Helpers --- */
@media screen and (max-width: 749px) {
  :root {
    --header-height: 56px;
  }
}

/* --- Form Inputs Override --- */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
textarea,
select {
  background-color: var(--bg-elevated) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-body) !important;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted) !important;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px var(--accent-glow) !important;
}

/* --- Pagination --- */
.pagination__item {
  color: var(--text-primary) !important;
}

.pagination__item--current {
  background-color: var(--accent) !important;
  color: #000 !important;
  border-radius: var(--radius-sm) !important;
}

/* --- Notification / Toast --- */
.cart-notification {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-subtle) !important;
  box-shadow: var(--shadow-card) !important;
}

/* --- Skip link, focus states --- */
.skip-to-content-link:focus {
  background-color: var(--accent) !important;
  color: #000 !important;
}

*:focus-visible {
  outline: 2px solid var(--accent) !important;
  outline-offset: 2px;
}

/* --- Announcement Bar Override (replaced by promo marquee) --- */
.announcement-bar {
  display: none !important;
}

/* --- Quick-Add Overlay --- */
.pixkom-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  transform: translateY(100%);
  opacity: 0;
  transition: all var(--transition-fast);
  z-index: 5;
}

.card-wrapper:hover .pixkom-quick-add {
  transform: translateY(0);
  opacity: 1;
}

.pixkom-quick-add-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  text-align: center;
  text-decoration: none;
}

.pixkom-quick-add-btn:hover {
  box-shadow: 0 4px 16px var(--glow-primary);
}

/* --- Toast Notification --- */
.pixkom-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  z-index: 10000;
  animation: pixkom-toast-in 300ms ease-out;
}

.pixkom-toast--error {
  background: rgba(255, 107, 107, 0.15);
  color: var(--accent-warm);
  border: 1px solid rgba(255, 107, 107, 0.3);
}

@keyframes pixkom-toast-in {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* --- Cross-Selling (PDP) --- */
.related-products .pixkom-section-label,
.related-products .section-header .title {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
}

.related-products .grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding-bottom: 8px;
}

.related-products .grid__item {
  flex: 0 0 260px;
  scroll-snap-align: start;
}

/* --- Loading spinner --- */
.loading__spinner circle {
  stroke: var(--accent) !important;
}

/* --- PDP Breadcrumb --- */
.pixkom-breadcrumb {
  font-size: 11px;
  color: var(--text-disabled);
  margin-bottom: 24px;
  padding-top: 16px;
}

.pixkom-breadcrumb a { color: var(--text-muted); }
.pixkom-breadcrumb a:hover { color: var(--accent); }
.pixkom-breadcrumb span[aria-hidden] { margin: 0 6px; }
.pixkom-breadcrumb--current { color: var(--accent); }

/* --- PDP Trust Mini --- */
.pixkom-trust-mini {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pixkom-trust-mini__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.pixkom-trust-mini__item span[aria-hidden] { font-size: 16px; }

/* --- PDP Brand Pill --- */
.pixkom-pdp-brand {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(35, 194, 236, 0.09);
  border: 1px solid rgba(35, 194, 236, 0.2);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- PDP Express Checkout (smaller) --- */
.shopify-payment-button {
  margin-top: 8px;
}

.shopify-payment-button .shopify-payment-button__button {
  padding: 8px !important;
  font-size: 10px !important;
  min-height: unset !important;
}

/* --- PDP Variant Pills --- */
.pixkom-variant-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pixkom-variant-pill {
  padding: 8px 16px;
  border: 1px solid var(--border-interactive);
  border-radius: var(--radius-pill);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.pixkom-variant-pill:hover,
.pixkom-variant-pill--selected {
  background: rgba(35, 194, 236, 0.09);
  border-color: rgba(35, 194, 236, 0.33);
  color: var(--accent);
}

/* --- PDP Rating Stars --- */
.pixkom-stars { color: var(--color-star); }

/* --- Product Tabs --- */
.pixkom-tabs { margin-top: 60px; margin-bottom: 60px; }

.pixkom-tabs__header {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 32px;
}

.pixkom-tab {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.pixkom-tab:hover { color: var(--text-primary); }

.pixkom-tab--active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.pixkom-tab-panel { padding: 0; }

.pixkom-tab-beschreibung {
  display: flex;
  gap: 32px;
}

.pixkom-tab-beschreibung__content { flex: 2; color: var(--text-secondary); line-height: 1.7; }

.pixkom-tab-specs {
  flex: 1;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.pixkom-tab-specs h4 { font-size: 14px; font-weight: 700; margin: 0 0 16px; color: var(--text-primary); }

.pixkom-tab-shipping h4 { font-size: 16px; margin: 24px 0 8px; color: var(--text-primary); }
.pixkom-tab-shipping h4:first-child { margin-top: 0; }
.pixkom-tab-shipping p, .pixkom-tab-shipping li { color: var(--text-secondary); line-height: 1.6; }

@media screen and (max-width: 749px) {
  .pixkom-tab-beschreibung { flex-direction: column; }
  .pixkom-tab { padding: 10px 16px; font-size: 13px; }
}

/* --- Reduced Motion — respect user preference --- */
@media (prefers-reduced-motion: reduce) {
  .pixkom-particle,
  [class*="float"],
  [class*="gradient-shift"],
  .pixkom-fade-in {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
