/* ================================================================
   MDMAWEAR V2 Preview Plugin — CSS
   Version: 1.0.30
   FIX: heart SVG uses .v2-heart-icon path (no presentational attrs),
        accordion border unified to same mask technique as sz/wish,
        --v2-border-gradient central variable added
   ================================================================ */

/* ── Animated border angle property ── */
@property --v2a {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ── Angle property for size + wishlist button borders ── */
@property --v2-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ── Fallback fonts via Google Fonts ──
   Polly Rounded: register separately if font file available.
   Nunito + Inter load as active fallbacks. */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');


/* ────────────────────────────────────────
   WRAPPER
──────────────────────────────────────── */
.mdma-v2 {
  /* Polly Rounded prepared — active when font enrolled via @font-face */
  font-family: "Polly Rounded", "Poly Rounded", "Nunito", "Inter", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #F0EFFF;
  background: #050508;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: none;
  padding: 40px 20px 80px;
  margin: 0 auto;
  overflow-x: clip;
  box-sizing: border-box;
  /* Central border gradient used by size/wish/accordion/thumbnail borders */
  --v2-border-gradient: conic-gradient(from var(--v2-angle, 0deg), #72C7C8, #6A44D4, #72C7C8, #6A44D4, #72C7C8);
}

/* Frame width controlled by page-scoped rules at end of file */

.mdma-v2 *,
.mdma-v2 *::before,
.mdma-v2 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Prevent theme color leakage on all text elements */
.mdma-v2 p,
.mdma-v2 span,
.mdma-v2 strong,
.mdma-v2 em,
.mdma-v2 li,
.mdma-v2 h1,
.mdma-v2 h2,
.mdma-v2 h3,
.mdma-v2 summary,
.mdma-v2 details { color: inherit; }

.mdma-v2 img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* ── HARDENED focus/active overrides with !important ──
   Prevents Divi / WooCommerce / browser defaults from
   injecting red, pink, or orange on any interactive element.
   Thumbnails → purple #6A44D4
   ATC / generic buttons → teal glow
   No red, no pink, no orange anywhere. */

/* 1. Kill browser outline on all interactive elements */
.mdma-v2 button:focus,
.mdma-v2 button:focus-visible,
.mdma-v2 a:focus,
.mdma-v2 a:focus-visible,
.mdma-v2 summary:focus,
.mdma-v2 summary:focus-visible {
  outline: 2px solid rgba(114, 199, 200, .65) !important;
  outline-offset: 2px !important;
  box-shadow: none !important;
}

/* 2. Thumbnails: purple focus/active/hover — no red, no teal */
.mdma-v2 .v2-thumb:focus,
.mdma-v2 .v2-thumb:focus-visible,
.mdma-v2 .v2-thumb:active {
  outline: none !important;
  border-color: #6A44D4 !important;
  box-shadow: 0 0 0 2px rgba(106, 68, 212, .35) !important;
}

/* 3. ATC button: teal focus glow, no red */
.mdma-v2 .v2-atc-btn:focus,
.mdma-v2 .v2-atc-btn:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(114, 199, 200, .45) !important;
}
.mdma-v2 .v2-atc-btn:active {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(167, 255, 0, .4) !important;
  transform: scale(.97);
}

/* 4. Wishlist, lightbox controls */
.mdma-v2 .v2-wish-btn:focus,
.mdma-v2 .v2-wish-btn:focus-visible,
.mdma-v2 .v2-lb-trigger:focus,
.mdma-v2 .v2-lb-trigger:focus-visible,
.mdma-v2 .v2-lb-close:focus,
.mdma-v2 .v2-lb-close:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(114, 199, 200, .45) !important;
}

/* 5. Size swatches: keep existing teal (DO NOT change) */
.mdma-v2 .v2-sz:focus,
.mdma-v2 .v2-sz:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(114, 199, 200, .45) !important;
}

/* 6. Suppress tap highlight everywhere */
.mdma-v2 button,
.mdma-v2 a,
.mdma-v2 summary {
  -webkit-tap-highlight-color: transparent !important;
}

.mdma-v2-error {
  color: #ff6b6b;
  padding: 12px;
  border: 1px solid rgba(255,107,107,.3);
  border-radius: 6px;
  font-family: monospace;
  font-size: 13px;
}


/* ────────────────────────────────────────
   58/42 GRID
──────────────────────────────────────── */
.mdma-v2 .v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  gap: 0;
  align-items: start !important;  /* FIX 3: gallery never shifts when right col grows */
}


/* ────────────────────────────────────────
   GALLERY — LEFT
──────────────────────────────────────── */
.mdma-v2 .v2-gal {
  position: sticky;
  top: 170px;    /* FIX 3: clear header + admin bar */
  padding-right: 32px;
  min-width: 0;
  align-self: flex-start !important;  /* FIX 3: pin top, never stretch */
}

/* Main image wrapper — completely frameless */
.mdma-v2 .v2-main-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.29;  /* ~29% taller than square = larger main product image */
  background: transparent;
  border-radius: 0;
  overflow: visible;
  margin-bottom: 10px;
  cursor: zoom-in;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}
/* Kill any Elementor/theme border on the img tag */
.mdma-v2 .v2-main-wrap img.v2-main-img {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.mdma-v2 .v2-main-wrap img.v2-main-img,
.mdma-v2 .v2-main-wrap .v2-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  display: block;
  transition: opacity 200ms ease;
}

/* Expand icon overlay on main image */
.mdma-v2 .v2-lb-trigger {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(5,5,8,.65);
  border: 1px solid rgba(114,199,200,.25);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #9897BE;
  transition: color 150ms, border-color 150ms, background 150ms;
  z-index: 2;
}
.mdma-v2 .v2-lb-trigger:hover {
  color: #72C7C8;
  border-color: rgba(114,199,200,.6);
  background: rgba(5,5,8,.85);
}
.mdma-v2 .v2-lb-trigger svg { width: 16px; height: 16px; stroke-width: 1.8; }

/* Thumbnails — 4-col grid */
.mdma-v2 .v2-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.mdma-v2 .v2-thumb {
  border-radius: 8px;
  overflow: hidden;
  background: #0D0C1A;
  border: 2px solid rgba(255,255,255,.07);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: border-color 150ms;
  /* Reset button styles */
  padding: 0;
  display: block;
  width: 100%;
}

.mdma-v2 .v2-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 3px;
  display: block;
  vertical-align: top;
  pointer-events: none;
}

/* FIX 1: Thumbnail colours
   Hover/focus/active-moment = purple #6A44D4
   Dauerhaft aktiv (is-active / v2-thumb-active) = Teal #72C7C8 */
.mdma-v2 .v2-thumb:hover,
.mdma-v2 .v2-thumb:focus,
.mdma-v2 .v2-thumb:active {
  border-color: #6A44D4 !important;
  box-shadow: 0 0 0 1px rgba(106,68,212,.7) !important;
}
/* Active (selected) thumbnail: Teal */
.mdma-v2 .v2-thumb.v2-thumb-active,
.mdma-v2 .v2-thumb.is-active {
  border-color: #72C7C8 !important;
  box-shadow: 0 0 0 1px rgba(114,199,200,.5) !important;
}
/* Active + hover at same time: purple wins briefly, then snaps back */
.mdma-v2 .v2-thumb.v2-thumb-active:hover,
.mdma-v2 .v2-thumb.is-active:hover {
  border-color: #6A44D4 !important;
  box-shadow: 0 0 0 1px rgba(106,68,212,.7) !important;
}


/* ────────────────────────────────────────
   LIGHTBOX OVERLAY
──────────────────────────────────────── */
/* Lightbox — closed: fully inert (no click blocking) */
.mdma-v2 .v2-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5,5,8,.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  /* CLOSED STATE — invisible AND non-interactive */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, visibility 200ms ease;
}

/* Lightbox — open: fully visible and interactive */
.mdma-v2 .v2-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mdma-v2 .v2-lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: #F0EFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms, color 150ms;
}
.mdma-v2 .v2-lb-close:hover { background: rgba(255,255,255,.14); color: #72C7C8; }
.mdma-v2 .v2-lb-close svg { width: 20px; height: 20px; stroke-width: 1.8; }

.mdma-v2 .v2-lb-img {
  max-width: min(90vw, 900px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
}


/* ────────────────────────────────────────
   BUY ZONE — RIGHT
──────────────────────────────────────── */
.mdma-v2 .v2-bz {
  padding-left: 40px;
  border-left: 0.5px solid #2A2850;
  min-width: 0;
}

/* Badges */
.mdma-v2 .v2-badges {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.mdma-v2 .v2-badge {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
  display: inline-block;
  line-height: 1.5;
}
.mdma-v2 .v2-bt { background: rgba(114,199,200,.13); color: #72C7C8; border: 1px solid rgba(114,199,200,.32); }
.mdma-v2 .v2-bp { background: rgba(139,92,246,.12);  color: #A78BFA; border: 1px solid rgba(139,92,246,.32); }
.mdma-v2 .v2-ba { background: rgba(229,160,0,.1);    color: #E5A000; border: 1px solid rgba(229,160,0,.28); }

/* Product title */
.mdma-v2 .v2-title {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #F0EFFF;
  margin-bottom: 12px;
  /* Gradient on last word handled via PHP if desired; base colour fine */
}

/* Rating row */
.mdma-v2 .v2-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.mdma-v2 .v2-stars { display: flex; align-items: center; gap: 3px; color: #E5A000; font-size: 15px; }
.mdma-v2 .v2-stars b { color: #F0EFFF; font-size: 13px; margin-left: 4px; font-weight: 700; }
.mdma-v2 .v2-rcnt { color: #5A5980; font-size: 12px; }
.mdma-v2 .v2-pid  { color: #5A5980; font-size: 12px; }

/* Price */
.mdma-v2 .v2-price-block {
  padding: 14px 0;
  border-top: 0.5px solid #2A2850;
  border-bottom: 0.5px solid #2A2850;
  margin-bottom: 22px;
}
.mdma-v2 .v2-price {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: #F0EFFF;
  line-height: 1;
  margin-bottom: 5px;
}
/* WooCommerce price HTML override */
.mdma-v2 .v2-price .woocommerce-Price-amount,
.mdma-v2 .v2-price bdi,
.mdma-v2 .v2-price ins { font-size: inherit; font-weight: inherit; color: #F0EFFF; text-decoration: none; }
.mdma-v2 .v2-price del { color: #5A5980; font-size: 18px; font-weight: 400; margin-right: 8px; }
.mdma-v2 .v2-tax  { font-size: 12px; color: #5A5980; line-height: 1.5; }

/* Size section */
.mdma-v2 .v2-size-section { margin-bottom: 22px; }
.mdma-v2 .v2-size-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #5A5980;
  margin-bottom: 10px;
}

/* Animated border wrap — ZIEL 1: outer box invisible, no outline/glow/background block */
.mdma-v2 .v2-bwrap {
  padding: 0;          /* remove the 2px gradient padding */
  border-radius: 0;
  background: transparent !important;
  animation: none;
  display: block;
}

.mdma-v2 .v2-bwrap-inner {
  background: transparent !important;
  border-radius: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Shared spin animation — used by size buttons, wishlist, accordions */
@keyframes v2-spin { to { --v2a: 360deg; } }

/* Border spin for size + wishlist mask technique */
@keyframes v2-border-spin { to { --v2-angle: 360deg; } }

/* ── SIZE BUTTONS v1.0.9 — mask-based animated border ──
   Technique: conic-gradient on ::before, masked to show ONLY
   the border area. Inner face always dark. No gradient fill.
   Animation visible because --v2-angle is a registered @property. */
.mdma-v2 .v2-sz {
  min-width: 50px;
  height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 0 !important;
  background: #141228;
  color: #F0EFFF;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: .04em;
  position: relative;
  isolation: isolate;
  overflow: visible;
  transition: color 150ms, background 150ms;
  -webkit-tap-highlight-color: transparent;
}

/* Animated border via masked ::before */
.mdma-v2 .v2-sz::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  background: conic-gradient(
    from var(--v2-angle, 0deg),
    #72C7C8, #6A44D4, #72C7C8, #6A44D4, #72C7C8
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: v2-border-spin 5s linear infinite;
}

/* Solid dark ::after keeps inner face opaque */
.mdma-v2 .v2-sz::after {
  display: none !important;
  content: none !important;
}

/* Hover: #355260 fill + teal border glow */
.mdma-v2 .v2-sz:hover {
  color: #ffffff;
  background: #355260;
  box-shadow: 0 0 12px rgba(114, 199, 200, .35);
  transform: translateY(-1px);
}

/* Active/click: scale press */
.mdma-v2 .v2-sz:active {
  transform: scale(0.96) !important;
  box-shadow: 0 0 8px rgba(114, 199, 200, .25) !important;
}

/* Focus: teal glow, no red outline */
.mdma-v2 .v2-sz:focus,
.mdma-v2 .v2-sz:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(114, 199, 200, .5) !important;
}

/* Selected/active: same #355260 base + stronger teal glow */
.mdma-v2 .v2-sz.v2-sz-selected {
  background: #355260 !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  box-shadow: 0 0 14px rgba(114, 199, 200, .45),
              0 0 0 1.5px #72C7C8 !important;
}
.mdma-v2 .v2-sz.v2-sz-selected:hover {
  background: #3e6370 !important;
  box-shadow: 0 0 18px rgba(114, 199, 200, .55),
              0 0 0 1.5px #72C7C8 !important;
}

.mdma-v2 .v2-size-hint {
  font-size: 11px;
  color: #5A5980;
  margin-top: 8px;
  min-height: 14px;
  transition: color 200ms;
}
.mdma-v2 .v2-size-hint.v2-size-ok { color: #72C7C8; }

/* Non-clothing size info box */
.mdma-v2 .v2-size-info-box {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: #141228;
  border-radius: 8px;
  border: 1.5px solid rgba(114,199,200,.25);
  margin-top: 4px;
}
.mdma-v2 .v2-size-info-text {
  font-size: 13px;
  font-weight: 600;
  color: #9897BE;
  letter-spacing: .03em;
}

/* CTA row */
.mdma-v2 .v2-cta-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 14px;
}

/* ATC button */
.mdma-v2 .v2-atc-btn {
  flex: 1;
  padding: 0 24px;
  height: 50px;
  background: #72C7C8;
  color: #050508;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none !important;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: background 200ms, color 200ms, opacity 120ms, transform 80ms, box-shadow 150ms;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.mdma-v2 .v2-atc-btn:hover  { opacity: .88; }
/* Added / feedback state: acid green #A7FF00 — no red, no pink */
.mdma-v2 .v2-atc-btn.v2-atc-added {
  background: #A7FF00 !important;
  color: #050508 !important;
  box-shadow: 0 0 0 2px rgba(167, 255, 0, .35) !important;
}
/* Loading state */
.mdma-v2 .v2-atc-btn.v2-atc-loading {
  opacity: .65;
  cursor: wait;
}
/* Disabled / Coming Soon state */
.mdma-v2 .v2-atc-btn.v2-atc-disabled,
.mdma-v2 .v2-atc-btn:disabled {
  background: #2A2850 !important;
  color: #5A5980 !important;
  cursor: not-allowed;
  box-shadow: none !important;
}
/* ATC confirmation / error message line */
.mdma-v2 .v2-atc-msg {
  font-size: 11px;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: .04em;
}
.mdma-v2 .v2-atc-msg[hidden] { display: none; }
.mdma-v2 .v2-atc-msg-ok    { color: #A7FF00; }
.mdma-v2 .v2-atc-msg-error { color: #E5A000; }

/* ── WISHLIST HEART v1.0.16 — red ONLY inside SVG, button face always dark ── */
.mdma-v2 .v2-wish-btn {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 0 !important;
  background: #141228 !important;   /* always dark — no red background ever */
  color: #F0EFFF !important;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: visible;
  transition: box-shadow 150ms;
  -webkit-tap-highlight-color: transparent;
}

/* Animated border — mask technique */
.mdma-v2 .v2-wish-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  background: conic-gradient(
    from var(--v2-angle, 0deg),
    #72C7C8, #6A44D4, #72C7C8, #6A44D4, #72C7C8
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: v2-border-spin 5s linear infinite;
}
.mdma-v2 .v2-wish-btn::after {
  display: none !important;
  content: none !important;
}

/* Hover — #355260 fill + teal glow, NOT red */
.mdma-v2 .v2-wish-btn:hover {
  background: #355260 !important;
  box-shadow: 0 0 14px rgba(114, 199, 200, .4) !important;
  transform: scale(1.04);
}

/* Active/click: scale press */
.mdma-v2 .v2-wish-btn:active {
  transform: scale(0.96) !important;
  box-shadow: 0 0 8px rgba(114, 199, 200, .25) !important;
}

/* Focus: teal glow, no red */
.mdma-v2 .v2-wish-btn:focus,
.mdma-v2 .v2-wish-btn:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(114, 199, 200, .5) !important;
}

/* Heart SVG element */
.mdma-v2 .v2-wish-btn .v2-heart-icon {
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
  z-index: 1;
  /* drop-shadow on the element, not on path — prevents rectangular glow */
  transition: filter 160ms ease;
}

/* Default heart: teal outline, transparent fill */
.mdma-v2 .v2-wish-btn .v2-heart-icon path {
  fill: transparent !important;
  stroke: #72C7C8 !important;
  stroke-width: 1.9;
  transition: fill 160ms ease, stroke 160ms ease;
}

/* Hover (not liked): stronger teal glow on #355260 bg */
.mdma-v2 .v2-wish-btn:hover .v2-heart-icon {
  filter: drop-shadow(0 0 8px rgba(114, 199, 200, .75));
}
.mdma-v2 .v2-wish-btn:hover .v2-heart-icon path {
  fill: rgba(114, 199, 200, .15) !important;
  stroke: #72C7C8 !important;
}

/* Liked / active: heart filled pink-red, button stays dark */
.mdma-v2 .v2-wish-btn.is-liked,
.mdma-v2 .v2-wish-btn[aria-pressed="true"] {
  background: #141228 !important;   /* dark — never red */
  box-shadow: none;
}
.mdma-v2 .v2-wish-btn.is-liked .v2-heart-icon,
.mdma-v2 .v2-wish-btn[aria-pressed="true"] .v2-heart-icon {
  filter: drop-shadow(0 0 8px rgba(255, 59, 114, .65));
}
.mdma-v2 .v2-wish-btn.is-liked .v2-heart-icon path,
.mdma-v2 .v2-wish-btn[aria-pressed="true"] .v2-heart-icon path {
  fill: #FF3B72 !important;
  stroke: #FF3B72 !important;
}

/* Liked + hover: heart stays red, button stays dark, slight pink glow */
.mdma-v2 .v2-wish-btn.is-liked:hover,
.mdma-v2 .v2-wish-btn[aria-pressed="true"]:hover {
  background: #141228 !important;   /* still dark */
  box-shadow: 0 0 14px rgba(255, 59, 114, .20);
}
.mdma-v2 .v2-wish-btn.is-liked:hover .v2-heart-icon,
.mdma-v2 .v2-wish-btn[aria-pressed="true"]:hover .v2-heart-icon {
  filter: drop-shadow(0 0 10px rgba(255, 59, 114, .75));
}
.mdma-v2 .v2-wish-btn.is-liked:hover .v2-heart-icon path,
.mdma-v2 .v2-wish-btn[aria-pressed="true"]:hover .v2-heart-icon path {
  fill: #FF3B72 !important;
  stroke: #FF3B72 !important;
}

/* Trust pills */
.mdma-v2 .v2-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}
.mdma-v2 .v2-tp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: rgba(255,255,255,.03);
  border: 0.5px solid #2A2850;
  border-radius: 100px;
  font-size: 12px;
  color: #9897BE;
  line-height: 1.4;
}
.mdma-v2 .v2-tp svg { color: #72C7C8; flex-shrink: 0; }

/* Description — FIX 5: slightly larger, more airspace */
.mdma-v2 .v2-desc {
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.8;
  color: #9897BE;
  padding: 16px 0 18px;
  border-top: 0.5px solid #2A2850;
  margin-top: 40px;
  margin-bottom: 16px;
}
.mdma-v2 .v2-desc p     { color: #9897BE; margin-bottom: 10px; font-size: clamp(15px, 1vw, 17px); line-height: 1.8; }
.mdma-v2 .v2-desc p:last-child { margin-bottom: 0; }
.mdma-v2 .v2-desc strong,
.mdma-v2 .v2-desc b     { color: #F0EFFF; font-weight: 700; }
.mdma-v2 .v2-desc h2,
.mdma-v2 .v2-desc h3    { color: #F0EFFF; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.mdma-v2 .v2-desc ul,
.mdma-v2 .v2-desc ol    { padding-left: 18px; color: #9897BE; }


/* ────────────────────────────────────────
   ACCORDIONS — native details/summary
   ZIEL 4: Premium animated outline matching size buttons
──────────────────────────────────────── */
.mdma-v2 .v2-acc {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Accordion outer wrapper — FIX 1.0.11: unified mask border like size/wish buttons */
.mdma-v2 details.v2-acc-item {
  border-radius: 12px;
  background: #050508;
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
}

/* Animated ring — same mask technique as size buttons and wishlist */
.mdma-v2 details.v2-acc-item::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: conic-gradient(
    from var(--v2-angle, 0deg),
    #72C7C8, #6A44D4, #72C7C8, #6A44D4, #72C7C8
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: v2-border-spin 8s linear infinite;
  opacity: 0.65;
}

/* Open accordion — full brightness, faster sweep */
.mdma-v2 details.v2-acc-item[open]::before {
  opacity: 1;
  animation-duration: 5s;
}

/* Inner face — near-black background behind content */
.mdma-v2 details.v2-acc-item::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 10.5px;
  background: #050508;
  z-index: -1;
}

/* Summary row — stays on top of pseudo-elements */
.mdma-v2 details.v2-acc-item > summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #9897BE;
  list-style: none;
  user-select: none;
  transition: color 150ms;
  line-height: 1.4;
  position: relative;  /* keeps it above ::after face */
  z-index: 1;
}
.mdma-v2 details.v2-acc-item > summary::-webkit-details-marker { display: none; }
.mdma-v2 details.v2-acc-item > summary::marker { display: none; content: ''; }
.mdma-v2 details.v2-acc-item[open] > summary { color: #72C7C8; }

.mdma-v2 .v2-acc-icon {
  font-size: 17px;
  color: #5A5980;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .22s, color .22s;
  font-weight: 300;
  pointer-events: none;
}
.mdma-v2 details.v2-acc-item[open] .v2-acc-icon {
  transform: rotate(45deg);
  color: #72C7C8;
}

.mdma-v2 .v2-acc-body {
  padding: 2px 18px 16px;
  font-size: 13px;
  color: #9897BE;
  line-height: 1.8;
  position: relative;   /* keeps content above ::after */
  z-index: 1;
}
.mdma-v2 .v2-acc-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
}
.mdma-v2 .v2-acc-body li { color: #9897BE; }
.mdma-v2 .v2-acc-body li::before { content: "· "; color: #72C7C8; }


/* ────────────────────────────────────────
   RESPONSIVE — FIX 4
──────────────────────────────────────── */

/* Tablet: stack at 1100px for more breathing room */
@media (max-width: 1100px) {
  .mdma-v2 .v2-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .mdma-v2 .v2-gal {
    position: relative !important;
    top: auto !important;
    width: 100% !important;
    padding-right: 0 !important;
    margin-bottom: 0;
  }
  .mdma-v2 .v2-bz {
    padding-left: 0 !important;
    border-left: none !important;
    border-top: 0.5px solid #2A2850;
    padding-top: 28px;
  }
  /* Size buttons: flex-wrap so they don't overflow */
  .mdma-v2 .v2-bwrap-inner {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: center !important;
  }
  .mdma-v2 .v2-sz {
    min-width: 52px !important;
    min-height: 44px !important;
  }
  .mdma-v2 .v2-main-wrap img.v2-main-img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

@media (max-width: 520px) {
  .mdma-v2                 { padding: 20px 14px 56px; }
  .mdma-v2 .v2-title       { font-size: 20px; }
  .mdma-v2 .v2-price       { font-size: 28px; }
  .mdma-v2 .v2-thumbs      { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mdma-v2 .v2-bwrap {
    animation: none;
    background: linear-gradient(135deg, #72C7C8 0%, #8B5CF6 100%);
  }
  .mdma-v2 .v2-main-wrap img,
  .mdma-v2 .v2-atc-btn,
  .mdma-v2 .v2-wish-btn  { transition: none; }
}


/* ────────────────────────────────────────
   RELATED PRODUCTS
──────────────────────────────────────── */
.mdma-v2 .v2-related {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 0.5px solid #2A2850;
}

/* Copy text */
.mdma-v2 .v2-related-copy {
  text-align: center;
  font-size: 14px;
  color: #9897BE;
  margin-bottom: 28px;
  line-height: 1.6;
}
.mdma-v2 .v2-related-link {
  color: #72C7C8;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 150ms;
}
.mdma-v2 .v2-related-link:hover { color: #A0E8E8; }

/* 4-column grid */
.mdma-v2 .v2-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

/* Product card */
.mdma-v2 .v2-related-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #0D0C1A;
  border: 1.5px solid rgba(255,255,255,.06);
  text-decoration: none;
  transition: border-color 160ms, box-shadow 160ms, transform 120ms;
  aspect-ratio: 1 / 1;
}
.mdma-v2 .v2-related-card:hover {
  border-color: rgba(114,199,200,.45);
  box-shadow: 0 0 18px rgba(114,199,200,.14);
  transform: translateY(-2px);
}

/* Thumbnail inside card */
.mdma-v2 .v2-related-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mdma-v2 .v2-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 6px;
  display: block;
}
.mdma-v2 .v2-related-placeholder {
  width: 100%;
  height: 100%;
  background: #141228;
}

/* Responsive */
@media (max-width: 1400px) {
  .mab-section { width: 100%; padding-inline: 40px; }
}

@media (max-width: 900px) {
  .mab-hero .mab-img img { height: 340px; }
  .mab-founder .mab-img img { height: 320px; }
  .mab-products .mab-img img { height: 280px; }
  .mab-community .mab-img img { height: 240px; }
  .mab-divider { padding: 0; }
  .mab-divider img { height: 8px; }
  .mab-principles-logo { width: 100%; max-width: 260px; height: 180px; }
  .mdma-v2 .v2-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .mdma-v2 .v2-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .mdma-v2 .v2-related { margin-top: 40px; padding-top: 28px; }
}


/* ────────────────────────────────────────
   SHARED SECTION STYLES
──────────────────────────────────────── */
.mdma-v2 .v2-section-head { text-align: center; margin-bottom: 28px; }
.mdma-v2 .v2-section-title {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #F0EFFF; margin-bottom: 6px;
}
.mdma-v2 .v2-section-sub { font-size: 13px; color: #5A5980; line-height: 1.55; }


/* ────────────────────────────────────────
   KUNDENBEWERTUNGEN
──────────────────────────────────────── */
.mdma-v2 .v2-reviews {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 0.5px solid #2A2850;
}

/* ── Overview: 3-column ── */
.mdma-v2 .v2-rev-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: #0A0916;
  border-radius: 12px;
  border: 0.5px solid #2A2850;
  margin-bottom: 32px;
}

/* Score column */
.mdma-v2 .v2-rev-score { text-align: center; }
.mdma-v2 .v2-rev-avg {
  font-size: 42px;
  font-weight: 800;
  color: #F0EFFF;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.mdma-v2 .v2-rev-stars { color: #72C7C8; font-size: 28px; letter-spacing: 3px; margin-bottom: 6px; line-height: 1; }
.mdma-v2 .v2-rev-count { font-size: 12px; color: #5A5980; line-height: 1.4; }

/* Bars column */
.mdma-v2 .v2-rev-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mdma-v2 .v2-rev-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mdma-v2 .v2-rev-bar-stars {
  font-size: 13px;
  letter-spacing: 1px;
  flex-shrink: 0;
  width: 78px;
}
/* A4: Filled stars = teal, empty stars = muted purple */
.mdma-v2 .v2-rev-bar-stars .v2-s-filled { color: #72C7C8; }
.mdma-v2 .v2-rev-bar-stars .v2-s-empty  { color: #5A5A70; }

/* Also apply to individual review item stars */
.mdma-v2 .v2-rev-item-stars .v2-s-filled { color: #72C7C8; }
.mdma-v2 .v2-rev-item-stars .v2-s-empty  { color: #5A5A70; }
.mdma-v2 .v2-rev-bar-track {
  width: 160px;            /* Aufgabe 4: fixed max, not flex:1 */
  max-width: 160px;
  flex-shrink: 0;
  height: 6px;
  background: #1A1838;
  border-radius: 100px;
  overflow: hidden;
}
.mdma-v2 .v2-rev-bar-fill {
  height: 100%;
  background: #72C7C8;
  border-radius: 100px;
  transition: width 600ms ease;
}
.mdma-v2 .v2-rev-bar-num {
  font-size: 11px;
  color: #5A5980;
  width: 14px;
  text-align: right;
  flex-shrink: 0;
}

/* Action column */
.mdma-v2 .v2-rev-action { display: flex; align-items: center; justify-content: center; }
.mdma-v2 .v2-rev-write-btn {
  padding: 11px 20px;
  border-radius: 8px;
  border: 1.5px solid #72C7C8;
  background: transparent;
  color: #72C7C8;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
/* hover / active / focus = acid green, never red */
.mdma-v2 .v2-rev-write-btn:hover,
.mdma-v2 .v2-rev-write-btn:active,
.mdma-v2 .v2-rev-write-btn:focus,
.mdma-v2 .v2-rev-write-btn:focus-visible {
  background: #A7FF00 !important;
  color: #050508 !important;
  border-color: #A7FF00 !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ── Review list ── */
.mdma-v2 .v2-rev-list {
  display: flex;
  flex-direction: column;
}
.mdma-v2 .v2-rev-item {
  padding: 22px 0;
  border-bottom: 0.5px solid #2A2850;
}
.mdma-v2 .v2-rev-item--last { border-bottom: none; }

.mdma-v2 .v2-rev-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.mdma-v2 .v2-rev-item-stars { color: #72C7C8; font-size: 22px; letter-spacing: 2px; line-height: 1; }
.mdma-v2 .v2-rev-date { font-size: 12px; color: #5A5980; }

.mdma-v2 .v2-rev-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.mdma-v2 .v2-rev-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: #1A1838;
  border: 1px solid #2A2850;
  flex-shrink: 0;
  /* User silhouette shape via background */
  background-image: radial-gradient(circle at 50% 38%, #4A4870 30%, transparent 31%),
    radial-gradient(ellipse at 50% 75%, #4A4870 38%, transparent 39%);
}
.mdma-v2 .v2-rev-author { font-size: 14px; font-weight: 700; color: #F0EFFF; }
.mdma-v2 .v2-rev-title  { font-size: 14px; font-weight: 700; color: #F0EFFF; margin-bottom: 5px; }
.mdma-v2 .v2-rev-text   { font-size: 13px; line-height: 1.7; color: #9897BE; }

/* Responsive */
@media (max-width: 768px) {
  .mdma-v2 .v2-rev-overview {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
    padding: 20px 18px;
  }
  .mdma-v2 .v2-rev-bar-stars { width: 60px; }
  .mdma-v2 .v2-rev-action { justify-content: center; }
}


/* ────────────────────────────────────────
   B) DAZU PASST — Electric Card Border
──────────────────────────────────────── */
.mdma-v2 .v2-dazu {
  margin-top: 56px; padding-top: 40px; border-top: 0.5px solid #2A2850;
  overflow: visible;  /* FIX 1: let glow bleed out */
}
.mdma-v2 .v2-dazu-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px;
  /* padding-inline gives lateral space for ::after glow without negative margin.
     No negative margin = no fight with the parent overflow-x:clip on .mdma-v2 */
  padding: 24px;
  box-sizing: border-box;
  width: 100%;
  overflow: visible;
}

/* ── Card base ── */
.mdma-v2 .v2-dazu-card {
  background: #0D0C1A;
  border-radius: 12px;
  overflow: visible;
  border: 0;
  position: relative;
  isolation: isolate;
  transition: transform 140ms ease;
  display: flex; flex-direction: column;
}

/* ── Electric border ring (::before) — mask technique ── */
.mdma-v2 .v2-dazu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
  background: conic-gradient(
    from var(--v2-angle, 0deg),
    #72C7C8 0%,
    #6A44D4 22%,
    #A78BFA 36%,
    #72C7C8 50%,
    #050508 55%,
    #6A44D4 65%,
    #72C7C8 80%,
    #050508 84%,
    #72C7C8 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: v2-border-spin 4s linear infinite;
  opacity: 0.7;
  transition: opacity 200ms;
}

/* ── Outer neon aura (::after) — behind card, no click blocking ── */
.mdma-v2 .v2-dazu-card::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 15px;
  pointer-events: none;
  z-index: -1;
  background: transparent;
  box-shadow:
    0 0 8px 1px rgba(114, 199, 200, .35),
    0 0 16px 2px rgba(106, 68, 212, .22);
  opacity: 0.6;
  animation: v2-electric-pulse 3.2s ease-in-out infinite alternate;
  transition: opacity 200ms;
}

/* FIX 3: more organic pulse with slight amplitude variation */
@keyframes v2-electric-pulse {
  0%   { box-shadow: 0 0 5px 1px rgba(114,199,200,.22), 0 0 10px 1px rgba(106,68,212,.15); opacity: 0.4; }
  25%  { box-shadow: 0 0 11px 2px rgba(167,139,250,.42), 0 0 18px 3px rgba(114,199,200,.22); opacity: 0.72; }
  55%  { box-shadow: 0 0 6px 1px rgba(114,199,200,.28),  0 0 11px 1px rgba(106,68,212,.18); opacity: 0.48; }
  80%  { box-shadow: 0 0 13px 3px rgba(114,199,200,.48), 0 0 24px 4px rgba(167,139,250,.28); opacity: 0.82; }
  100% { box-shadow: 0 0 8px 2px rgba(106,68,212,.38),   0 0 16px 2px rgba(114,199,200,.32); opacity: 0.65; }
}

/* FIX 2: Async delays per card so they feel organic */
.mdma-v2 .v2-dazu-card:nth-child(1)::before { animation-delay: 0ms; }
.mdma-v2 .v2-dazu-card:nth-child(1)::after  { animation-delay: 0ms; }
.mdma-v2 .v2-dazu-card:nth-child(2)::before { animation-delay: -700ms; }
.mdma-v2 .v2-dazu-card:nth-child(2)::after  { animation-delay: -500ms; }
.mdma-v2 .v2-dazu-card:nth-child(3)::before { animation-delay: -1400ms; }
.mdma-v2 .v2-dazu-card:nth-child(3)::after  { animation-delay: -1100ms; }
.mdma-v2 .v2-dazu-card:nth-child(4)::before { animation-delay: -2200ms; }
.mdma-v2 .v2-dazu-card:nth-child(4)::after  { animation-delay: -1800ms; }

/* Hover: brighter ring, stronger aura, acid hint */
.mdma-v2 .v2-dazu-card:hover::before { opacity: 1; animation-duration: 2.5s; }
.mdma-v2 .v2-dazu-card:hover::after  {
  opacity: 1;
  box-shadow:
    0 0 14px 3px rgba(114,199,200,.55),
    0 0 28px 5px rgba(106,68,212,.35),
    0 0 4px  1px rgba(167,255,0,.15);
}
.mdma-v2 .v2-dazu-card:hover {
  transform: translateY(-3px);
}

/* Card children above border layer */
.mdma-v2 .v2-dazu-card > * { position: relative; z-index: 1; }

/* ── Image wrapper — transparent bg, 9px padding ── */
.mdma-v2 .v2-dazu-img-wrap {
  display: block; aspect-ratio: 1 / 1;
  overflow: hidden; background: transparent; padding: 9px;
  border-radius: 12px 12px 0 0;
}
.mdma-v2 .v2-dazu-img-wrap img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  padding: 0; display: block; transition: transform 200ms ease;
  border: 0 !important; outline: 0 !important; box-shadow: none !important;
}
.mdma-v2 .v2-dazu-card:hover .v2-dazu-img-wrap img { transform: scale(1.03); }
.mdma-v2 .v2-dazu-info { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.mdma-v2 .v2-dazu-label { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #5A5980; }
.mdma-v2 .v2-dazu-name  { font-size: 13px; font-weight: 700; color: #F0EFFF; line-height: 1.3; }
.mdma-v2 .v2-dazu-price { font-size: 14px; font-weight: 700; color: #72C7C8; margin-top: 2px; }
.mdma-v2 .v2-dazu-price .woocommerce-Price-amount,
.mdma-v2 .v2-dazu-price bdi { color: #72C7C8; }
.mdma-v2 .v2-dazu-cta {
  display: inline-block; margin-top: auto; padding: 7px 14px;
  border-radius: 6px; border: 1px solid rgba(114,199,200,.35);
  color: #72C7C8; font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none; text-align: center;
  transition: background 150ms, border-color 150ms, color 150ms; align-self: flex-start;
}
.mdma-v2 .v2-dazu-cta:hover { background: #A7FF00 !important; border-color: #A7FF00 !important; color: #050508 !important; }
@media (max-width: 900px) { .mdma-v2 .v2-dazu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; } }
@media (max-width: 480px)  { .mdma-v2 .v2-dazu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; padding: 18px; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mdma-v2 .v2-dazu-card::before { animation: none; opacity: 0.5; }
  .mdma-v2 .v2-dazu-card::after  { animation: none; opacity: 0.4; }
}


/* ────────────────────────────────────────
   C) ZULETZT ANGESEHEN
──────────────────────────────────────── */
.mdma-v2 .v2-lastviewed {
  margin-top: 56px; padding-top: 36px; border-top: 0.5px solid #2A2850;
}
.mdma-v2 .v2-lastviewed-grid { display: flex; gap: 14px; flex-wrap: wrap; }
.mdma-v2 .v2-lv-card {
  display: flex; align-items: center; gap: 14px;
  background: #0D0C1A; border: 1.5px solid rgba(255,255,255,.06);
  border-radius: 12px; padding: 12px; text-decoration: none;
  transition: border-color 150ms, box-shadow 150ms; max-width: 280px;
}
.mdma-v2 .v2-lv-card:hover { border-color: rgba(114,199,200,.4); box-shadow: 0 0 14px rgba(114,199,200,.1); }
.mdma-v2 .v2-lv-thumb {
  width: 70px; height: 70px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden; background: #141228;
}
.mdma-v2 .v2-lv-thumb img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 3px; display: block; }
.mdma-v2 .v2-lv-info  { display: flex; flex-direction: column; gap: 3px; }
.mdma-v2 .v2-lv-name  { font-size: 13px; font-weight: 700; color: #F0EFFF; line-height: 1.3; }
.mdma-v2 .v2-lv-price { font-size: 13px; color: #72C7C8; font-weight: 600; }
.mdma-v2 .v2-lv-label { font-size: 10px; color: #5A5980; letter-spacing: .05em; text-transform: uppercase; }


/* ────────────────────────────────────────
   D) NEWSLETTER / JOIN THE DROP
──────────────────────────────────────── */
.mdma-v2 .v2-newsletter { margin-top: 56px; margin-bottom: 8px; }
.mdma-v2 .v2-nl-wrap {
  padding: 2px; border-radius: 16px;
  background: conic-gradient(from var(--v2-angle, 0deg), #72C7C8, #6A44D4, #72C7C8, #6A44D4, #72C7C8);
  animation: v2-border-spin 12s linear infinite;
}
.mdma-v2 .v2-nl-inner { background: #0A0916; border-radius: 14px; padding: 40px 32px; text-align: center; }
.mdma-v2 .v2-nl-title {
  font-size: clamp(20px, 3vw, 30px); font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: #F0EFFF; margin-bottom: 8px;
}
.mdma-v2 .v2-nl-sub { font-size: 14px; color: #9897BE; margin-bottom: 24px; line-height: 1.6; }
.mdma-v2 .v2-nl-form {
  display: flex; gap: 10px; max-width: 440px;
  margin: 0 auto 14px; flex-wrap: wrap;
}
.mdma-v2 .v2-nl-input {
  flex: 1; min-width: 180px; padding: 13px 16px;
  background: #141228; border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 8px; color: #F0EFFF; font-size: 14px;
  font-family: inherit; outline: none; transition: border-color 150ms;
  -webkit-appearance: none;
}
.mdma-v2 .v2-nl-input:focus { border-color: #72C7C8; }
.mdma-v2 .v2-nl-input::placeholder { color: #5A5980; }
.mdma-v2 .v2-nl-btn {
  padding: 13px 22px; background: #72C7C8 !important; color: #050508 !important;
  font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border: none; border-radius: 8px; cursor: pointer; font-family: inherit;
  transition: opacity 120ms, transform 80ms; -webkit-tap-highlight-color: transparent;
}
.mdma-v2 .v2-nl-btn:hover  { background: #A7FF00 !important; color: #050508 !important; opacity: 1; }
.mdma-v2 .v2-nl-btn:active { transform: scale(.97); }
.mdma-v2 .v2-nl-hint    { font-size: 11px; color: #5A5980; line-height: 1.5; }
.mdma-v2 .v2-nl-success { margin-top: 12px; font-size: 13px; color: #72C7C8; font-weight: 600; }
@media (max-width: 520px) {
  .mdma-v2 .v2-nl-inner { padding: 28px 18px; }
  .mdma-v2 .v2-nl-form  { flex-direction: column; }
  .mdma-v2 .v2-nl-btn   { width: 100%; }
}


/* ================================================================
   HELLO ELEMENTOR / RESET.CSS OVERRIDE — v1.0.4
   Source of red: reset.css?ver=3.4.4 rule:
     [type=button]:hover, button:hover { background-color: #c36; color: #fff; }
   These blocks use maximum specificity + !important to win.
   ONLY ATC button and thumbnails are targeted.
   Size swatches and all other elements are NOT touched.
   ================================================================ */

/* FIX 1 — Add-to-Cart button: defeat Hello Elementor #c36 */
.mdma-v2 button.v2-atc-btn,
.mdma-v2 button.v2-atc-btn:link,
.mdma-v2 button.v2-atc-btn:visited {
  background:       #72C7C8 !important;
  background-color: #72C7C8 !important;
  color:            #050508 !important;
  border-color:     transparent !important;
  box-shadow:       none !important;
}
.mdma-v2 button.v2-atc-btn:hover,
.mdma-v2 button.v2-atc-btn:focus,
.mdma-v2 button.v2-atc-btn:focus-visible {
  background:       #A7FF00 !important;
  background-color: #A7FF00 !important;
  color:            #050508 !important;
  box-shadow:       0 0 0 2px rgba(167,255,0,.28), 0 0 18px rgba(167,255,0,.22) !important;
  outline:          none !important;
}
.mdma-v2 button.v2-atc-btn:active {
  background:       #93E000 !important;
  background-color: #93E000 !important;
  color:            #050508 !important;
  transform:        scale(.97);
  outline:          none !important;
}
/* Added / feedback state: acid green */
.mdma-v2 button.v2-atc-btn.is-added,
.mdma-v2 button.v2-atc-btn.is-added:hover,
.mdma-v2 button.v2-atc-btn.is-added:focus,
.mdma-v2 button.v2-atc-btn.v2-atc-added,
.mdma-v2 button.v2-atc-btn.v2-atc-added:hover,
.mdma-v2 button.v2-atc-btn.v2-atc-added:focus {
  background:       #A7FF00 !important;
  background-color: #A7FF00 !important;
  color:            #050508 !important;
  box-shadow:       0 0 0 2px rgba(167,255,0,.3) !important;
}

/* FIX 2 — Thumbnails: defeat Hello Elementor #c36
   Hover/focus = purple #6A44D4
   Active/selected (is-active) = teal #72C7C8 */
.mdma-v2 button.v2-thumb,
.mdma-v2 button.v2-thumb:link,
.mdma-v2 button.v2-thumb:visited {
  background:       #0D0C1A !important;
  background-color: #0D0C1A !important;
  color:            inherit !important;
  border-color:     rgba(255,255,255,.08) !important;
  outline:          none !important;
  box-shadow:       none !important;
}
.mdma-v2 button.v2-thumb:hover,
.mdma-v2 button.v2-thumb:focus,
.mdma-v2 button.v2-thumb:focus-visible {
  background:       #0D0C1A !important;
  background-color: #0D0C1A !important;
  color:            inherit !important;
  border-color:     #6A44D4 !important;
  box-shadow:       0 0 0 1px rgba(106,68,212,.85), 0 0 14px rgba(106,68,212,.25) !important;
  outline:          none !important;
}
.mdma-v2 button.v2-thumb:active {
  background:       #0D0C1A !important;
  background-color: #0D0C1A !important;
  border-color:     #6A44D4 !important;
  box-shadow:       0 0 0 2px rgba(106,68,212,.9) !important;
  outline:          none !important;
}
/* Selected/active thumb = Teal */
.mdma-v2 button.v2-thumb.is-active,
.mdma-v2 button.v2-thumb.v2-thumb-active {
  background:       #0D0C1A !important;
  background-color: #0D0C1A !important;
  border-color:     #72C7C8 !important;
  box-shadow:       0 0 0 1px rgba(114,199,200,.55), 0 0 14px rgba(114,199,200,.18) !important;
  outline:          none !important;
}
/* Active + hover: show purple briefly */
.mdma-v2 button.v2-thumb.is-active:hover,
.mdma-v2 button.v2-thumb.v2-thumb-active:hover {
  border-color:     #6A44D4 !important;
  box-shadow:       0 0 0 1px rgba(106,68,212,.85) !important;
}


/* ================================================================
   MICRO PATCH v1.0.6 — MAIN IMAGE FULLY FRAMELESS
   Catches all possible class names WordPress / WooCommerce /
   Elementor might use for the main product image wrapper.
   ONLY targets main gallery image — thumbnails are NOT affected.
   ================================================================ */

/* All known main-image wrapper class variants */
.mdma-v2 .v2-main,
.mdma-v2 .v2-main-wrap,
.mdma-v2 .v2-main-frame,
.mdma-v2 .v2-gallery-main,
.mdma-v2 .v2-main-image,
.mdma-v2 .v2-product-main-image {
  border:     0 !important;
  outline:    0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Kill pseudo-element glows or animated borders on main image only */
.mdma-v2 .v2-main::before,
.mdma-v2 .v2-main::after,
.mdma-v2 .v2-main-wrap::before,
.mdma-v2 .v2-main-wrap::after,
.mdma-v2 .v2-main-frame::before,
.mdma-v2 .v2-main-frame::after,
.mdma-v2 .v2-gallery-main::before,
.mdma-v2 .v2-gallery-main::after,
.mdma-v2 .v2-main-image::before,
.mdma-v2 .v2-main-image::after {
  display:    none !important;
  content:    none !important;
  border:     0 !important;
  box-shadow: none !important;
}

/* The actual <img> inside any of those wrappers */
.mdma-v2 .v2-main img,
.mdma-v2 .v2-main-wrap img,
.mdma-v2 .v2-main-frame img,
.mdma-v2 .v2-gallery-main img,
.mdma-v2 .v2-main-image img,
.mdma-v2 img.v2-main-img {
  border:     0 !important;
  outline:    0 !important;
  box-shadow: none !important;
}


/* ═══════════════════════════════════════════════════════════════
   MDMAWEAR V2 — CART DRAWER v5
   DNA: "Dazu passt"-Card-System (animated border, neon aura)
   Scope: .elementor-menu-cart__* + .woocommerce-mini-cart-item
          + .mini_cart_item  — kein Produktseiten-Layout berührt
   ═══════════════════════════════════════════════════════════════ */

/* ── DRAWER CONTAINER ── */
.elementor-menu-cart__container {
  position: fixed !important;
  top: 0 !important; right: 0 !important; bottom: 0 !important; left: auto !important;
  width: 350px !important;
  max-width: calc(100vw - 16px) !important;
  height: 100% !important; min-height: 100vh !important;
  background: #09090f !important;
  border-left: 1px solid rgba(114,199,200,.22) !important;
  box-shadow: -16px 0 64px rgba(0,0,0,.9) !important;
  display: flex !important; flex-direction: column !important;
  overflow: hidden !important;
  z-index: 100000 !important;
  transform: translateX(110%) !important;
  transition: transform 340ms cubic-bezier(.22,.61,.36,1) !important;
}
.elementor-menu-cart__container.elementor-active,
.elementor-menu-cart--shown .elementor-menu-cart__container,
.elementor-menu-cart__container[style*="display:flex"],
.elementor-menu-cart__container[style*="display: flex"],
.elementor-menu-cart__container[style*="visibility:visible"],
body.elementor-menu-cart--open .elementor-menu-cart__container {
  transform: translateX(0) !important;
}
@media (max-width: 480px) {
  .elementor-menu-cart__container {
    width: 100vw !important; max-width: 100vw !important;
  }
}

/* ── MAIN: flex-column, volle Höhe ── */
.elementor-menu-cart__main {
  display: flex !important; flex-direction: column !important;
  height: 100% !important; min-height: 100vh !important;
  background: transparent !important; overflow: hidden !important;
}

/* ── HEADER ── */
.elementor-menu-cart__header {
  flex-shrink: 0 !important;
  display: flex !important; align-items: center !important;
  justify-content: space-between !important;
  padding: 18px 20px 14px !important;
  background: #0D0C1A !important;
  border-bottom: 1px solid rgba(114,199,200,.16) !important;
}
.elementor-menu-cart__header-title,
.elementor-menu-cart__header .e-cart-title {
  font-size: 11px !important; font-weight: 800 !important;
  letter-spacing: .14em !important; text-transform: uppercase !important;
  color: #F0EFFF !important;
}
.elementor-menu-cart__close-button {
  display: flex !important; align-items: center !important; justify-content: center !important;
  width: 30px !important; height: 30px !important; border-radius: 8px !important;
  background: rgba(114,199,200,.08) !important; border: 1px solid rgba(114,199,200,.2) !important;
  color: #72C7C8 !important; cursor: pointer !important; transition: background 150ms !important;
}
.elementor-menu-cart__close-button:hover,
.elementor-menu-cart__close-button:focus {
  background: rgba(114,199,200,.2) !important; outline: none !important;
}

/* ── PRODUKTLISTE: scrollbar, wächst ── */
.elementor-menu-cart__products {
  flex: 1 1 auto !important;
  overflow-y: auto !important; overflow-x: hidden !important;
  padding: 20px 8px 56px 14px !important;   /* right 8px: room for glow scrollbar */
  background: transparent !important;
  -webkit-mask-image: linear-gradient(to bottom, #000 80%, transparent 100%) !important;
  mask-image: linear-gradient(to bottom, #000 80%, transparent 100%) !important;
}
/* WC Liste zurücksetzen */
.elementor-menu-cart__products ul.woocommerce-mini-cart,
.elementor-menu-cart__products ul.cart_list {
  list-style: none !important; margin: 0 !important; padding: 0 !important;
  display: flex !important; flex-direction: column !important; gap: 0 !important;
}
/* Divider weg */
.elementor-menu-cart__product-divider,
.elementor-menu-cart__products hr { display: none !important; }

/* Glow-Scrollbar (Bild C) */
.elementor-menu-cart__products::-webkit-scrollbar { width: 2px !important; }
.elementor-menu-cart__products::-webkit-scrollbar-track { background: rgba(255,255,255,.03) !important; }
.elementor-menu-cart__products::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #72C7C8 0%, #8B5CF6 60%, rgba(139,92,246,.2) 100%) !important;
  border-radius: 2px !important;
  box-shadow: 0 0 8px rgba(114,199,200,.65), 0 0 16px rgba(139,92,246,.35) !important;
}

/* ════════════════════════════════════════════
   PRODUKT-CARDS — DNA: v2-dazu-card
   Animated border ring + neon aura + hover
   ════════════════════════════════════════════ */

.elementor-menu-cart__product,
.elementor-menu-cart__products li.woocommerce-mini-cart-item,
.elementor-menu-cart__products .mini_cart_item {
  /* Layout */
  display: flex !important; flex-direction: column !important;
  align-items: stretch !important;
  width: 100% !important; margin: 0 0 16px !important;
  /* Card style — Dazu-passt DNA */
  background: #0D0C1A !important;
  border-radius: 12px !important;
  overflow: visible !important;       /* visible so ::before border + ::after glow don't clip */
  border: 0 !important;
  position: relative !important;
  isolation: isolate !important;
  transition: transform 140ms ease !important;
  padding: 0 !important;
}

/* Animated border ring — identisch Dazu-passt */
.elementor-menu-cart__product::before,
.elementor-menu-cart__products li.woocommerce-mini-cart-item::before,
.elementor-menu-cart__products .mini_cart_item::before {
  content: '' !important;
  position: absolute !important; inset: 0 !important;
  padding: 1.5px !important; border-radius: 12px !important;
  pointer-events: none !important; z-index: 2 !important;
  background: conic-gradient(
    from var(--v2-angle, 0deg),
    #72C7C8 0%, #6A44D4 22%, #A78BFA 36%,
    #72C7C8 50%, #050508 55%,
    #6A44D4 65%, #72C7C8 80%,
    #050508 84%, #72C7C8 100%
  ) !important;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  animation: v2-border-spin 4s linear infinite !important;
  opacity: 0.65 !important;
  transition: opacity 200ms !important;
}

/* Neon aura — identisch Dazu-passt */
.elementor-menu-cart__product::after,
.elementor-menu-cart__products li.woocommerce-mini-cart-item::after,
.elementor-menu-cart__products .mini_cart_item::after {
  content: '' !important;
  position: absolute !important; inset: -4px !important;
  border-radius: 15px !important;
  pointer-events: none !important; z-index: -1 !important;
  background: transparent !important;
  box-shadow:
    0 0 8px 1px rgba(114,199,200,.32),
    0 0 16px 2px rgba(106,68,212,.2) !important;
  opacity: 0.55 !important;
  animation: v2-electric-pulse 3.2s ease-in-out infinite alternate !important;
  transition: opacity 200ms !important;
}

/* Hover: stärkerer Ring + Glow, leichtes Lift */
.elementor-menu-cart__product:hover::before,
.elementor-menu-cart__products li.woocommerce-mini-cart-item:hover::before,
.elementor-menu-cart__products .mini_cart_item:hover::before {
  opacity: 1 !important; animation-duration: 2.5s !important;
}
.elementor-menu-cart__product:hover::after,
.elementor-menu-cart__products li.woocommerce-mini-cart-item:hover::after,
.elementor-menu-cart__products .mini_cart_item:hover::after {
  opacity: 1 !important;
  box-shadow:
    0 0 14px 3px rgba(114,199,200,.55),
    0 0 28px 5px rgba(106,68,212,.35),
    0 0 4px 1px rgba(167,255,0,.12) !important;
}
.elementor-menu-cart__product:hover,
.elementor-menu-cart__products li.woocommerce-mini-cart-item:hover,
.elementor-menu-cart__products .mini_cart_item:hover {
  transform: translateY(-2px) !important;
}

/* Card-Children über border-layer */
.elementor-menu-cart__product > *,
.elementor-menu-cart__products li.woocommerce-mini-cart-item > *,
.elementor-menu-cart__products .mini_cart_item > * {
  position: relative !important; z-index: 1 !important;
}

/* ── PRODUKTBILD — wie v2-dazu-img-wrap ── */
.elementor-menu-cart__product-image,
.elementor-menu-cart__products li.woocommerce-mini-cart-item > a:first-of-type,
.elementor-menu-cart__products .mini_cart_item > a:has(img) {
  display: block !important;
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  overflow: hidden !important;
  background: transparent !important;
  padding: 9px !important;
  border-radius: 12px 12px 0 0 !important;
  flex-shrink: 0 !important;
}
.elementor-menu-cart__product-image img,
.elementor-menu-cart__products li.woocommerce-mini-cart-item > a:first-of-type img,
.elementor-menu-cart__products .mini_cart_item > a:has(img) img {
  width: 100% !important; height: 100% !important;
  object-fit: contain !important; object-position: center !important;
  display: block !important;
  border: 0 !important; outline: 0 !important; box-shadow: none !important;
  transition: transform 200ms ease !important;
}
.elementor-menu-cart__product:hover .elementor-menu-cart__product-image img,
.elementor-menu-cart__products li.woocommerce-mini-cart-item:hover > a:first-of-type img {
  transform: scale(1.03) !important;
}

/* ── TEXTBEREICH — wie v2-dazu-info ── */
.elementor-menu-cart__product-details,
.elementor-menu-cart__products .mini_cart_item .woocommerce-mini-cart-item__info {
  padding: 14px 22px 20px 16px !important;
  display: flex !important; flex-direction: column !important;
  gap: 6px !important; flex: 1 !important;
}

/* Produktname — wie v2-dazu-name */
.elementor-menu-cart__product-name,
.elementor-menu-cart__product-name a,
.elementor-menu-cart__products .mini_cart_item .product-title {
  font-size: 13px !important; font-weight: 700 !important;
  color: #F0EFFF !important; line-height: 1.3 !important;
  text-decoration: none !important; display: block !important;
  white-space: normal !important;
}
.elementor-menu-cart__product-name a:hover { color: #72C7C8 !important; }

/* Preis — wie v2-dazu-price */
.elementor-menu-cart__product-price,
.elementor-menu-cart__product-price .woocommerce-Price-amount,
.elementor-menu-cart__product-price bdi,
.elementor-menu-cart__products .mini_cart_item .woocommerce-Price-amount {
  font-size: 14px !important; font-weight: 700 !important;
  color: #72C7C8 !important; margin-top: 2px !important;
}

/* Menge */
.elementor-menu-cart__product-quantity,
.elementor-menu-cart__products .mini_cart_item .quantity {
  font-size: 11px !important; color: #9897BE !important; font-weight: 500 !important;
}

/* ── ANSEHEN-Button — wie v2-dazu-cta ── */
.elementor-menu-cart__product-details::after,
.elementor-menu-cart__products li.woocommerce-mini-cart-item .product-details::after {
  content: 'ANSEHEN' !important;
  display: inline-block !important; margin-top: 8px !important;
  padding: 7px 14px !important;
  border-radius: 6px !important; border: 1px solid rgba(114,199,200,.35) !important;
  color: #72C7C8 !important; font-size: 11px !important; font-weight: 700 !important;
  letter-spacing: .06em !important; text-transform: uppercase !important;
  text-decoration: none !important; text-align: center !important;
  transition: background 150ms, border-color 150ms, color 150ms !important;
  align-self: flex-start !important; cursor: pointer !important;
}
.elementor-menu-cart__product-details:hover::after {
  background: #A7FF00 !important; border-color: #A7FF00 !important;
  color: #050508 !important;
}

/* ── REMOVE — rechts oben absolut ── */
.elementor-menu-cart__product-remove,
.elementor-menu-cart__products li.woocommerce-mini-cart-item a.remove_from_cart_button,
.elementor-menu-cart__products .mini_cart_item a.remove_from_cart_button {
  position: absolute !important;
  top: 8px !important; right: 8px !important; z-index: 4 !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  width: 26px !important; height: 26px !important; border-radius: 50% !important;
  background: rgba(9,9,15,.7) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  color: #5A5980 !important; font-size: 14px !important;
  text-decoration: none !important;
  transition: background 150ms, color 150ms, border-color 150ms !important;
  line-height: 1 !important;
}
.elementor-menu-cart__product-remove a:hover,
.elementor-menu-cart__products li.woocommerce-mini-cart-item a.remove_from_cart_button:hover,
.elementor-menu-cart__products .mini_cart_item a.remove_from_cart_button:hover {
  background: rgba(255,59,114,.2) !important;
  border-color: rgba(255,59,114,.4) !important;
  color: #FF3B72 !important;
}

/* ── DATENMÜLL AUSBLENDEN ──
   "Delivery time: 7" und ähnliche Meta-Felder
   die WooCommerce/Theme in mini-cart items injiziert */
.elementor-menu-cart__products .mini_cart_item .delivery-time,
.elementor-menu-cart__products .mini_cart_item [class*="delivery"],
.elementor-menu-cart__products .mini_cart_item [class*="shipping-time"],
.elementor-menu-cart__products .mini_cart_item dl.variation,
.elementor-menu-cart__products .woocommerce-mini-cart-item dl,
.elementor-menu-cart__products .mini_cart_item .wc-item-meta,
.elementor-menu-cart__products .mini_cart_item .wc-item-meta-label,
.elementor-menu-cart__product-details dl,
.elementor-menu-cart__product-details .wc-item-meta {
  display: none !important;
}

/* ── STICKY FOOTER ── */
.elementor-menu-cart__subtotal {
  flex-shrink: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  background: #0D0C1A !important;
  border-top: 1px solid rgba(114,199,200,.2) !important;
  padding: 16px 20px 10px !important;
  margin: 0 !important;
  display: flex !important; justify-content: space-between !important; align-items: center !important;
  font-size: 11px !important; font-weight: 700 !important;
  letter-spacing: .08em !important; text-transform: uppercase !important;
  color: #9897BE !important;
}
.elementor-menu-cart__subtotal .woocommerce-Price-amount,
.elementor-menu-cart__subtotal bdi {
  font-size: 20px !important; font-weight: 900 !important;
  color: #F0EFFF !important; letter-spacing: -.01em !important;
}
.elementor-menu-cart__footer-buttons {
  flex-shrink: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  background: #0D0C1A !important;
  padding: 10px 20px 28px !important;
  margin: 0 !important;
  display: flex !important; flex-direction: column !important; gap: 10px !important;
}
.elementor-menu-cart__footer-buttons .elementor-button,
.elementor-menu-cart__footer-buttons a.button,
.elementor-menu-cart__footer-buttons .wc-forward {
  width: 100% !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  padding: 15px 24px !important; border-radius: 12px !important;
  font-size: 11px !important; font-weight: 900 !important;
  letter-spacing: .12em !important; text-transform: uppercase !important;
  text-decoration: none !important; border: none !important;
  cursor: pointer !important; outline: none !important;
  transition: background 180ms, box-shadow 180ms !important;
}
/* Warenkorb anzeigen — Premium outline (wie v2-rev-write-btn) */
.elementor-menu-cart__footer-buttons .elementor-button-view-cart,
.elementor-menu-cart__footer-buttons a.button:not(.checkout),
.elementor-menu-cart__footer-buttons .wc-forward:not(.checkout) {
  background: transparent !important;
  color: #72C7C8 !important;
  border: 1.5px solid #72C7C8 !important;
  box-shadow: 0 0 0 0 transparent !important;
}
.elementor-menu-cart__footer-buttons .elementor-button-view-cart:hover,
.elementor-menu-cart__footer-buttons a.button:not(.checkout):hover {
  background: #A7FF00 !important; color: #050508 !important;
  border-color: #A7FF00 !important;
  box-shadow: 0 4px 20px rgba(167,255,0,.3) !important;
}
/* Kasse — Premium Acid Green */
.elementor-menu-cart__footer-buttons .elementor-button-checkout,
.elementor-menu-cart__footer-buttons a.checkout,
.elementor-menu-cart__footer-buttons .wc-forward.checkout {
  background: #A7FF00 !important;
  color: #050508 !important;
  font-weight: 900 !important;
  letter-spacing: .14em !important;
  border: none !important;
  box-shadow:
    0 2px 18px rgba(167,255,0,.35),
    0 0 0 1px rgba(167,255,0,.25) !important;
}
.elementor-menu-cart__footer-buttons .elementor-button-checkout:hover,
.elementor-menu-cart__footer-buttons a.checkout:hover {
  background: #c6ff33 !important;
  box-shadow:
    0 4px 28px rgba(167,255,0,.55),
    0 0 0 1px rgba(167,255,0,.4) !important;
}
.elementor-menu-cart__footer-buttons .elementor-button:active,
.elementor-menu-cart__footer-buttons .elementor-button:focus,
.elementor-menu-cart__footer-buttons a:active,
.elementor-menu-cart__footer-buttons a:focus {
  outline: none !important; box-shadow: none !important;
}

/* ── OVERLAY ── */
.elementor-menu-cart__overlay {
  background: rgba(5,5,8,.75) !important;
  backdrop-filter: blur(4px) !important; -webkit-backdrop-filter: blur(4px) !important;
}

/* ── LEERER WARENKORB ── */
.elementor-menu-cart__empty-message,
.woocommerce-mini-cart__empty-message {
  color: #9897BE !important; text-align: center !important;
  padding: 60px 20px !important; font-size: 13px !important;
}



/* ═══════════════════════════════════════════════════════════════
   MDMAWEAR V2 — ABOUT PAGE (.mdma-v2-about)
   Scoped: all rules under .mdma-v2-about — no impact on
   product pages, header, cart drawer, or footer.
   ═══════════════════════════════════════════════════════════════ */
/* ── PAGE-9202 WRAPPER UNBOXING ──
   WordPress/Theme limits main, .site-main, .page-content to ~1140px.
   Override ONLY for the About draft page. No other pages affected. */
body.page-id-9202 #content,
body.page-id-9202 main,
body.page-id-9202 .site-main,
body.page-id-9202 .page-content,
body.page-id-9202 .entry-content,
body.page-id-9202 .post-9202,
body.page-id-9202 .hentry,
body.page-id-9202 article,
body.page-id-9202 .elementor-widget-container,
body.page-id-9202 .elementor-widget-wrap,
body.page-id-9202 .elementor-element,
body.page-id-9202 .mdma-v2 {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ── ABOUT PAGE: kill empty theme page-header + reduce top gap ── */
body.page-id-9202 .page-header {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.page-id-9202 .mdma-v2-about,
body.page-id-9202 .mdma-v2 {
  padding-top: clamp(48px, 4vw, 80px) !important;
}

.mdma-v2-about {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  background: #050508; color: #F0EFFF; font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased; line-height: 1.65; font-size: 15px;
  overflow-x: clip;
}
.mdma-v2-about *, .mdma-v2-about *::before, .mdma-v2-about *::after { box-sizing: border-box; }

/* ── SECTION BASE: frame controlled by page-scoped rules at end of file ── */
.mab-section {
  padding: 56px 100px;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.mab-grid {
  display: grid; grid-template-columns: 35fr 65fr; gap: 56px; align-items: center;
}

/* Hero: text left 35%, hero image right 65% *//* ── LABELS ── */
.mab-label {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: #42fbff; margin-bottom: 12px;
}
/* Stronger scoped override — beats Elementor/Hello inherit chain */
.mdma-v2-about .mab-label,
.mdma-v2-about span.mab-label {
  color: #42fbff !important;
}

/* ── HEADINGS ── */
.mab-h1 { font-size: clamp(28px, 3.2vw, 48px); font-weight: 900; line-height: 1.1; margin: 0 0 20px; letter-spacing: -.02em; }
.mab-h2 { font-size: clamp(24px, 2.6vw, 38px); font-weight: 800; line-height: 1.15; margin: 0 0 18px; letter-spacing: -.015em; }
.mab-gradient { background: linear-gradient(135deg, #72C7C8, #8B5CF6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mab-cyan { color: #72C7C8; }
.mab-muted { color: #9897BE; }

/* ── TEXT ── */
.mab-text p { color: #c5c3e0; margin: 0 0 16px; max-width: 540px; }

/* ── IMAGES ── */
.mab-img { border-radius: 14px; overflow: hidden; }
.mab-img img { width: 100%; height: auto; display: block; object-fit: cover; }

/* ── HERO ── */
.mab-hero { padding-top: 0; padding-bottom: 0; }
.mab-hero .mab-grid { grid-template-columns: 35fr 65fr; gap: 48px; }
.mab-hero .mab-img img { border-radius: 14px; height: 600px; object-fit: cover; object-position: center center; }

/* ── FOUNDER ── */
.mab-founder .mab-img img { height: 530px; object-fit: cover; object-position: center center; }
/* Founder: image left (65%) / text right (35%) */
.mab-founder .mab-grid { grid-template-columns: 65fr 35fr; }
/* Products: image left (65%) / text right (35%) */
.mab-products .mab-grid { grid-template-columns: 65fr 35fr; }
.mab-signature { width: 140px; margin: 16px 0 6px; opacity: .9; }
.mab-founder-name { font-size: 13px; font-weight: 700; color: #F0EFFF; line-height: 1.4; }
.mab-founder-name .mab-muted { font-weight: 400; font-size: 12px; }

/* ── MISSION VALUES ── */
.mab-values { display: flex; flex-direction: column; gap: 28px; }
.mab-value { text-align: center; }
.mab-value-icon { width: 48px; height: 48px; margin: 0 auto 10px; display: block; }
.mab-value h3 { font-size: 14px; font-weight: 800; color: #F0EFFF; margin: 0 0 4px; letter-spacing: .06em; text-transform: uppercase; }
.mab-value p { color: #9897BE; font-size: 13px; margin: 0; max-width: none; }
.mab-mission .mab-values { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-self: start; }

/* ── PRODUCT IMAGE ── */
.mab-products .mab-img img { height: 400px; object-fit: cover; object-position: center center; }

/* ── CHECKLIST ── */
.mab-checks { list-style: none; padding: 0; margin: 8px 0 0; }
.mab-checks li { padding: 6px 0 6px 28px; position: relative; font-size: 14px; color: #c5c3e0; }
.mab-checks li::before { content: '✓'; position: absolute; left: 0; color: #72C7C8; font-weight: 700; }

/* ── ACCORDION (reuses Produktseiten DNA) ── */
.mab-accordion-wrap { display: flex; flex-direction: column; gap: 6px; }

/* ── NEON ACCORDION — reuses existing v2-border-spin keyframe ── */
.mab-acc {
  border-radius: 12px;
  background: #050508;
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
}
.mab-acc::before {
  content: '';
  position: absolute; inset: 0; padding: 1.5px;
  border-radius: inherit; pointer-events: none; z-index: 0;
  background: conic-gradient(
    from var(--v2-angle, 0deg), #72C7C8, #6A44D4, #72C7C8, #6A44D4, #72C7C8
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: v2-border-spin 8s linear infinite;
  opacity: 0.55;
}
.mab-acc[open]::before { opacity: 1; animation-duration: 5s; }
.mab-acc::after {
  content: ''; position: absolute; inset: 1.5px;
  border-radius: 10.5px; background: #050508; z-index: -1;
}
.mab-acc > summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; cursor: pointer; font-size: 13px; font-weight: 600;
  color: #9897BE; list-style: none; user-select: none;
  transition: color 150ms; line-height: 1.4;
  position: relative; z-index: 1;
  /* Kill any theme/Elementor default border on summary */
  border: none !important;
  border-bottom: none !important;
  outline: none;
  background: transparent;
}
.mab-acc > summary::-webkit-details-marker { display: none; }
.mab-acc > summary::marker { display: none; content: ''; }
.mab-acc[open] > summary { color: #72C7C8; }
/* Kill browser/Elementor focus outline that shows as teal line on click */
.mdma-v2-about .mab-acc summary,
.mdma-v2-about .mab-acc summary:focus,
.mdma-v2-about .mab-acc summary:focus-visible,
.mdma-v2-about .mab-acc summary:active,
.mab-acc > summary:focus,
.mab-acc > summary:focus-visible,
.mab-acc > summary:active {
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
  border-bottom: none !important;
  text-decoration: none !important;
}
.mab-acc-icon {
  font-size: 17px; color: #5A5980; line-height: 1; flex-shrink: 0;
  transition: transform .22s, color .22s; font-weight: 300; pointer-events: none;
}
.mab-acc[open] .mab-acc-icon { transform: rotate(45deg); color: #72C7C8; }
.mab-acc-body {
  padding: 2px 18px 16px; font-size: 13px; color: #9897BE;
  line-height: 1.8; position: relative; z-index: 1;
}

/* ── COMMUNITY IMAGE ── */
.mab-community .mab-img img { height: 300px; object-fit: cover; object-position: center center; }

/* ── STATS ── */
.mab-stats { display: flex; gap: 32px; margin-top: 24px; }
.mab-stat-num { display: block; font-size: 28px; font-weight: 900; color: #72C7C8; letter-spacing: -.01em; }
.mab-stat-label { font-size: 11px; color: #5A5980; text-transform: uppercase; letter-spacing: .08em; }

/* ── CTA BANNER — neon animated border ── */
.mab-cta {
  padding: 0 0 80px;
  width: var(--v2-frame-width, min(calc(100% - 64px), 2560px));
  margin: 0 auto;
  box-sizing: border-box;
  /* Override the inherited mab-section padding-inline so CTA spans full frame */
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.mab-cta-neon {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding: 36px 48px;
  background: #050508; border-radius: 16px;
  position: relative; z-index: 0; isolation: isolate; overflow: hidden;
  box-shadow: 0 0 40px rgba(114,199,200,.1);
}
.mab-cta-neon::before {
  content: '';
  position: absolute; inset: 0; padding: 1.5px;
  border-radius: inherit; pointer-events: none; z-index: 0;
  background: conic-gradient(
    from var(--v2-angle, 0deg), #72C7C8, #6A44D4, #72C7C8, #6A44D4, #72C7C8
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: v2-border-spin 6s linear infinite;
  opacity: 0.8;
}
.mab-cta-neon::after {
  content: ''; position: absolute; inset: 1.5px;
  border-radius: 14.5px; background: #050508; z-index: -1;
}
.mab-cta-left {
  display: flex; align-items: center; gap: 20px;
  position: relative; z-index: 1;
}
.mab-cta-icon { width: 44px; height: 44px; flex-shrink: 0; opacity: .9; }
.mab-cta-text { position: relative; z-index: 1; }
.mab-cta-text h2 { font-size: 22px; font-weight: 800; margin: 0 0 4px; color: #F0EFFF; }
.mab-cta-text p { font-size: 14px; color: #9897BE; margin: 0; }
.mab-cta-btn {
  display: inline-flex; align-items: center; padding: 14px 28px;
  background: #42fbff; color: #050508 !important; font-size: 13px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none !important;
  border-radius: 10px; white-space: nowrap;
  transition: background 180ms, box-shadow 180ms;
  box-shadow: 0 0 18px rgba(66,251,255,.35);
  position: relative; z-index: 1; flex-shrink: 0;
}
.mab-cta-btn:hover {
  background: #A7FF00; color: #050508 !important; box-shadow: 0 4px 24px rgba(167,255,0,.45);
}

/* ── DIVIDER ── */
.mab-divider {
  width: var(--v2-frame-width, min(calc(100% - 64px), 2560px)); margin: 0 auto; padding: 0;
  line-height: 0; overflow: hidden;
}
.mab-divider img {
  width: 100%; height: 10px; object-fit: cover; display: block;
  opacity: .75;
}

/* ── PRINCIPLES IMAGE (sketch photo) ── */
.mab-principles-logo {
  width: 100%; max-width: 380px; height: 260px;
  object-fit: cover; object-position: center;
  margin-top: 18px; border-radius: 10px;
  filter: drop-shadow(0 0 12px rgba(114,199,200,.3));
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .mab-grid { grid-template-columns: 1fr; gap: 32px; }
  .mab-section { padding: 40px 20px; width: calc(100% - 32px); max-width: 100%; }
  .mab-cta { padding: 0 20px 48px; width: calc(100% - 32px); max-width: 100%; }
  .mab-cta-neon { flex-direction: column; text-align: center; padding: 28px 24px; }
  .mab-cta-left { flex-direction: column; gap: 12px; }
  .mab-cta { padding: 0 20px 48px; max-width: 100%; }
  .mab-stats { justify-content: center; }
  .mab-hero .mab-grid { grid-template-columns: 1fr; }
  .mab-hero .mab-img { order: -1; }
}


/* ════════════════════════════════════════════════════════
   V2 DESIGN FRAME — v1.0.107
   Formula: min(1920px, calc(100vw - 200px))
   3840px → 1920px | 2560px → 1920px | 1920px → 1720px

   Architecture:
   - page_id=9097: master frame = body.page-id-9097 .mdma-v2
   - page_id=9202: master frame = body.page-id-9202 .mdma-v2-about
   ONE master frame per page. Inner sections = width:100%.
   ════════════════════════════════════════════════════════ */

/* ── STEP 1: Free all WordPress/Theme/Elementor outer wrappers ──
   These are the containers ABOVE the master frame.
   They must be 100vw so the master frame can center within the full viewport. */
body.page-id-9097 #content,
body.page-id-9097 main,
body.page-id-9097 .site-main,
body.page-id-9097 .page-content,
body.page-id-9097 .entry-content,
body.page-id-9097 .hentry,
body.page-id-9097 article,
body.page-id-9097 .elementor-section,
body.page-id-9097 .elementor-container,
body.page-id-9097 .elementor-section-boxed > .elementor-container,
body.page-id-9097 .e-con,
body.page-id-9097 .e-con-inner,
body.page-id-9097 .elementor-widget-container,
body.page-id-9097 .elementor-widget-wrap,
body.page-id-9097 .elementor-element,
body.page-id-9202 #content,
body.page-id-9202 main,
body.page-id-9202 .site-main,
body.page-id-9202 .page-content,
body.page-id-9202 .entry-content,
body.page-id-9202 .hentry,
body.page-id-9202 article,
body.page-id-9202 .elementor-section,
body.page-id-9202 .elementor-container,
body.page-id-9202 .elementor-section-boxed > .elementor-container,
body.page-id-9202 .e-con,
body.page-id-9202 .e-con-inner,
body.page-id-9202 .elementor-widget-container,
body.page-id-9202 .elementor-widget-wrap,
body.page-id-9202 .elementor-element {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}

/* ── STEP 2: ONE master frame per page ── */

/* page_id=9097 master frame: .mdma-v2 (product shortcode root) */
body.page-id-9097 .mdma-v2 {
  width: min(1920px, calc(100vw - 200px)) !important;
  max-width: 1920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

/* page_id=9202 master frame: .mdma-v2-about (about shortcode root) */
body.page-id-9202 .mdma-v2-about {
  width: min(1920px, calc(100vw - 200px)) !important;
  max-width: 1920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* ── STEP 3: Inner sections fill the master frame ──
   .mab-section keeps its own padding (100px each side from base rule).
   No additional centering — it's already inside the centered master frame. */
body.page-id-9202 .mdma-v2-about .mab-section {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* CTA and Divider: same — fill master frame */
body.page-id-9202 .mdma-v2-about .mab-cta,
body.page-id-9202 .mdma-v2-about .mab-divider {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ── Responsive: tighter safe-space on smaller viewports ── */
@media (max-width: 1199px) {
  body.page-id-9097 .mdma-v2,
  body.page-id-9202 .mdma-v2-about {
    width: calc(100vw - 64px) !important;
  }
}

@media (max-width: 767px) {
  body.page-id-9097 .mdma-v2,
  body.page-id-9202 .mdma-v2-about {
    width: calc(100vw - 32px) !important;
  }
}
