/** Shopify CDN: Minification failed

Line 540:0 Unexpected "}"

**/
.accordion summary {
  display: flex;
  position: relative;
  line-height: 1;
  padding: 1.5rem 0;
}

.accordion .summary__title {
  display: flex;
  flex: 1;
}

.accordion .summary__title + .icon-caret {
  height: calc(var(--font-heading-scale) * 0.6rem);
}

.accordion + .accordion {
  margin-top: 0;
  border-top: none;
}

.accordion {
  margin-top: 2.5rem;
  margin-bottom: 0;
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.accordion__title {
  display: inline-block;
  max-width: calc(100% - 6rem);
  min-height: 1.6rem;
  margin: 0;
  word-break: break-word;
}

.accordion .svg-wrapper {
  align-self: center;
  fill: rgb(var(--color-foreground));
  height: calc(var(--font-heading-scale) * 2rem);
  margin-right: calc(var(--font-heading-scale) * 1rem);
  width: calc(var(--font-heading-scale) * 2rem);
}

.accordion details[open] > summary .icon-caret {
  transform: rotate(180deg);
}

.accordion__content {
  margin-bottom: 1.5rem;
  word-break: break-word;
  overflow-x: auto;
  padding: 0 0.6rem;
}

.accordion__content img {
  max-width: 100%;
}
/* =========================
   SERUM DRAWER — CSS
   Paste into Shopify Custom CSS
   ========================= */

/* =========================
   DRAWER TRIGGER BUTTONS
   ========================= */

.serum-drawer-buttons {
  width: 100%;
  border-top: 1px solid #1e1e1e;
}

.serum-drawer-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #1e1e1e;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #ffffff;
  font-family: inherit;
  position: relative;
  transition: padding-left 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.serum-drawer-trigger::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: #D4A840;
  transition: width 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.serum-drawer-trigger:hover {
  padding-left: 16px;
}

.serum-drawer-trigger:hover::before {
  width: 8px;
}

.serum-drawer-trigger:active {
  opacity: 0.7;
}

.serum-drawer-trigger-label {
  color: #ffffff;
  transition: color 0.2s ease;
}

.serum-drawer-trigger:hover .serum-drawer-trigger-label {
  color: #D4A840;
}

.serum-drawer-trigger-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
              border-color 0.2s ease,
              background 0.2s ease;
  flex-shrink: 0;
}

.serum-drawer-trigger:hover .serum-drawer-trigger-icon {
  border-color: #D4A840;
  background: rgba(212, 168, 64, 0.12);
}

.serum-drawer-trigger-icon svg {
  width: 12px;
  height: 12px;
  color: #D4A840;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.serum-drawer-trigger.is-open .serum-drawer-trigger-icon svg {
  transform: rotate(45deg);
}

/* =========================
   OVERLAY (Backdrop Blur)
   ========================= */

.serum-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9998;
}

.serum-drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* =========================
   DRAWER
   ========================= */

.serum-drawer {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 9999;
  visibility: hidden;        /* ← NEU: komplett verstecken */
}

.serum-drawer.is-active {
  pointer-events: auto;
  visibility: visible;        /* ← NEU: erst bei aktiv zeigen */
}

.serum-drawer-panel {
  width: 100%;
  max-width: 600px;
  background: #0d0d0d;
  border-top: 1px solid #2a2a2a;
  border-radius: 20px 20px 0 0;
  max-height: 80vh;          /* Fallback für alte Browser */
  max-height: 85dvh;         /* ← NEU: fängt die mobile Leiste ab */
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
}

.serum-drawer.is-active .serum-drawer-panel {
  transform: translateY(0);
}

/* Drag Handle */
.serum-drawer-handle {
  display: flex;
  justify-content: center;
  padding: 12px 0 4px;
  flex-shrink: 0;
  cursor: grab;
}

.serum-drawer-handle::after {
  content: '';
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: #2a2a2a;
  transition: background 0.2s ease, width 0.2s ease;
}

.serum-drawer-handle:hover::after {
  background: #555555;
  width: 44px;
}

/* Header */
.serum-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px 20px;
  flex-shrink: 0;
}

.serum-drawer-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.serum-drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111111;
  border: 1px solid #2a2a2a;
  color: #999999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.serum-drawer-close:hover {
  background: #1f1f1f;
  color: #ffffff;
  border-color: #3a3a3a;
}

.serum-drawer-close svg {
  width: 12px;
  height: 12px;
}

/* Divider */
.serum-drawer-divider {
  height: 1px;
  background: #1e1e1e;
  margin: 0 24px;
  flex-shrink: 0;
}

.serum-drawer-body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom));   /* ← NEU */
  color: #999999;
  font-size: 15px;
  line-height: 1.75;
}

.serum-drawer-body::-webkit-scrollbar {
  width: 4px;
}

.serum-drawer-body::-webkit-scrollbar-track {
  background: transparent;
}

.serum-drawer-body::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 2px;
}

.serum-drawer-body p {
  color: inherit;
}

.serum-drawer-body p + p {
  margin-top: 1em;
}

/* Body scroll lock */
body.serum-drawer-open {
  overflow: hidden;
}

body.serum-drawer-open #serum-sticky-atc {
  display: none !important;
}

/* =========================
   NUTRITION BOX
   ========================= */

.serum-nutrition-box {
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
}

.serum-nutrition-header {
  padding: 16px 20px;
  border-bottom: 1px solid #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.serum-nutrition-title {
  color: #D4A840;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.serum-nutrition-serving {
  color: #555555;
  font-size: 11px;
  letter-spacing: 0.02em;
}

/* Hero ingredient row */
.serum-nutrition-hero {
  padding: 20px;
  border-bottom: 1px solid #1e1e1e;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: rgba(212, 168, 64, 0.06);
}

.serum-nutrition-hero-left {
  flex: 1;
  min-width: 0;
}

.serum-nutrition-hero-name {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 6px;
}

.serum-nutrition-hero-sub {
  color: #555555;
  font-size: 12px;
  line-height: 1.4;
}

.serum-nutrition-hero-value {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.serum-nutrition-hero-amount {
  color: #D4A840;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.serum-nutrition-hero-unit {
  color: #D4A840;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 2px;
}

/* Equivalence note */
.serum-nutrition-equiv {
  padding: 12px 20px;
  border-bottom: 1px solid #1e1e1e;
  color: #555555;
  font-size: 12px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.serum-nutrition-equiv-icon {
  flex-shrink: 0;
  color: #D4A840;
  opacity: 0.5;
  font-size: 11px;
  margin-top: 1px;
}

/* Badge footer */
.serum-nutrition-footer {
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.serum-nutrition-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #111111;
  border: 1px solid #1e1e1e;
  color: #999999;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.serum-nutrition-badge svg {
  width: 11px;
  height: 11px;
  color: #D4A840;
  opacity: 0.8;
}

/* =========================
   ENTRANCE ANIMATION
   ========================= */

.serum-drawer.is-active .serum-drawer-body {
  animation: serum-fade-up 0.4s 0.15s ease both;
}

@keyframes serum-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MOBILE
   ========================= */

@media screen and (max-width: 749px) {
  .serum-drawer-trigger {
    font-size: 16px;
    padding: 18px 0;
  }

  .serum-drawer-panel {
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
  }

  .serum-drawer-header {
    padding: 6px 20px 16px;
  }

  .serum-drawer-title {
    font-size: 18px;
  }

  .serum-drawer-body {
    padding: 20px;
    font-size: 14px;
  }

  .serum-nutrition-hero-amount {
    font-size: 24px;
  }

  .serum-nutrition-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 16px;
  }

  .serum-nutrition-hero {
    padding: 16px;
  }

  .serum-nutrition-equiv {
    padding: 10px 16px;
  }

  .serum-nutrition-footer {
    padding: 14px 16px;
  }
}
}