/* ============================================================
   BUTTKE THEME — Design Tokens
   ============================================================ */

:root {
  --bg:        #0c1016;
  --pink:      #ff00aa;
  --cyan:      #00fff1;
  --mint:      #46fcb4;
  --orange:    #ff6e48;
  --violet:    #a855f7;
  --glass:     rgba(255, 255, 255, .06);
  --glass2:    rgba(255, 255, 255, .11);
  --stroke:    rgba(255, 255, 255, .14);
  --shadow:    0 20px 60px rgba(0, 0, 0, .50);
  --radius:    20px;
  --radius-sm: 14px;
}


/* ============================================================
   BASE
   ============================================================ */

html { background: #0c1016 !important; min-height: 100%; }

body {
  background: transparent !important;
  min-height: 100%;
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}


/* ============================================================
   BACKGROUND — Ambient Glow
   ============================================================ */

body::before {
  content: "";
  position: fixed;
  inset: -35%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(850px  850px  at 15% 30%, rgba(255,   0, 170, .45), transparent 72%),
    radial-gradient(900px  900px  at 75% 35%, rgba(  0, 255, 241, .35), transparent 72%),
    radial-gradient(1000px 1000px at 55% 80%, rgba( 70, 252, 180, .16), transparent 75%),
    radial-gradient(950px  950px  at 85% 75%, rgba(255, 110,  72, .12), transparent 78%),
    linear-gradient(120deg,
      rgba(255,   0, 170, .06),
      rgba(  0, 255, 241, .05),
      rgba( 70, 252, 180, .04),
      transparent 60%
    );
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  filter: blur(125px) saturate(145%);
  opacity: .92;
  animation: drift 30s ease-in-out infinite alternate;
}

@keyframes drift {
  0%   { transform: translate3d(-1%,  -1%,  0) scale(1);    }
  50%  { transform: translate3d(1.5%,  1%,  0) scale(1.04); }
  100% { transform: translate3d(-1.5%, 1.5%, 0) scale(1.06); }
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(1200px 900px at 50% 45%,
    transparent 0%,
    rgba(12, 16, 22, .6)  70%,
    rgba(12, 16, 22, .85) 100%
  );
}


/* ============================================================
   ELEMENTOR — Reset
   ============================================================ */

.elementor,
.elementor-section,
.elementor-container,
.elementor-widget-wrap,
.elementor-row,
.elementor-button-wrapper,
.elementor-widget-button,
.elementor-widget-button .elementor-widget-container {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
}

.elementor-button,
a.elementor-button,
.elementor-button-wrapper .elementor-button {
  background-color: transparent !important;
  background-image: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
  color: rgba(255, 255, 255, .92) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

.elementor-button-content-wrapper {
  display: flex !important;
  align-items: center !important;
  gap: .5rem !important;
  pointer-events: none;
  position: relative;
  z-index: 1;
}


/* ============================================================
   SHARED KEYFRAMES
   ============================================================ */

/* Ambient glow ring breathing */
@keyframes liquid-breathe {
  0%, 100% { opacity: .44; filter: blur(18px); }
  50%       { opacity: .60; filter: blur(24px); }
}

@keyframes liquid-breathe-intense {
  0%, 100% { opacity: .55; filter: blur(20px); }
  50%       { opacity: .78; filter: blur(28px); }
}

/* Button sheen — fährt schnell einmalig durch */

/* Card shimmer — langsam, periodisch, diagonal */


/* Iridescent border colour shift */
@keyframes iridescent {
  0%   { filter: hue-rotate(0deg)   brightness(1);    }
  33%  { filter: hue-rotate(40deg)  brightness(1.10); }
  66%  { filter: hue-rotate(-30deg) brightness(1.05); }
  100% { filter: hue-rotate(0deg)   brightness(1);    }
}

/* Soft specular pulse on the top-edge highlight */
@keyframes specular-pulse {
  0%, 100% { opacity: .22; }
  50%       { opacity: .42; }
}

@keyframes border-spin {
  to { --border-angle: 360deg; }
}


/* ============================================================
   GLASS SHIMMER — shared pseudo helper
   Applied via a ::after shimmer layer on every glass surface.
   Cards use a dedicated child pseudo; buttons already have
   ::after for the sheen so we layer it differently.
   ============================================================ */

/* Mixin-like placeholder — every glass element gets this */
.glass-card,
.neon-btn,
a.neon-btn,
.elementor-button.neon-btn {
  /* ensure stacking context so shimmer pseudo clips correctly */
  isolation: isolate;
}


/* ============================================================
   GLASS CARD — Base
   ============================================================ */

.glass-card {
  position: relative !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  isolation: isolate !important;

  background-image:
    radial-gradient(ellipse 60% 40% at 25% 10%,
      rgba(255, 255, 255, .18), transparent 65%),
    radial-gradient(ellipse 70% 55% at 75% 90%,
      rgba(255, 255, 255, .05), transparent 70%),
    linear-gradient(160deg,
      rgba(255, 255, 255, .12) 0%,
      rgba(255, 255, 255, .05) 50%,
      rgba(255, 255, 255, .08) 100%
    ) !important;

  border: 1px solid rgba(255, 255, 255, .16) !important;

  backdrop-filter: blur(20px) saturate(170%) brightness(1.06) !important;
  -webkit-backdrop-filter: blur(20px) saturate(170%) brightness(1.06) !important;

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .06),
    0 20px 60px rgba(0, 0, 0, .50),
    inset 0  1px 0 rgba(255, 255, 255, .22),
    inset 0 -1px 0 rgba(0, 0, 0, .20) !important;

  transition: transform .28s cubic-bezier(.34, 1.56, .64, 1), box-shadow .28s ease !important;
}

/* ── Shimmer ── */
.glass-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important; bottom: 0 !important;
  left: 0 !important; right: 0 !important;
  width: 55% !important;
  background: linear-gradient(
    108deg,
    transparent              15%,
    rgba(255, 255, 255, .11) 40%,
    rgba(255, 255, 255, .20) 50%,
    rgba(255, 255, 255, .11) 60%,
    transparent              85%
  ) !important;
  transform: translateX(-160%) skewX(-15deg);
  transition: transform 0.7s ease;
  pointer-events: none !important;
  z-index: 3 !important;
}

.glass-card:hover::before {
  transform: translateX(210%) skewX(-15deg);
}

/* ── Neon aura ── */
.glass-card::after {
  content: "" !important;
  position: absolute !important;
  inset: -3px !important;
  border-radius: inherit !important;
  pointer-events: none !important;
  background: linear-gradient(120deg,
    rgba(255,   0, 170, .40),
    rgba(  0, 255, 241, .40),
    rgba( 70, 252, 180, .25)
  ) !important;
  filter: blur(20px) !important;
  opacity: .16 !important;
  z-index: -1 !important;
  transition: opacity .28s ease !important;
  animation: iridescent 10s ease-in-out infinite !important;
}

.glass-card:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .10),
    0 28px 80px rgba(0, 0, 0, .60),
    inset 0  1px 0 rgba(255, 255, 255, .30),
    inset 0 -1px 0 rgba(0, 0, 0, .25) !important;
}

.glass-card:hover::after { opacity: .28 !important; }


/* ── Card Colour Variants ── */

.glass-card.is-pink {
  background-image:
    radial-gradient(ellipse 60% 40% at 25% 10%,  rgba(255, 255, 255, .18), transparent 65%),
    radial-gradient(ellipse 80% 60% at 70%  90%, rgba(255,   0, 170, .20), transparent 70%),
    linear-gradient(160deg, rgba(255, 0, 170, .16) 0%, rgba(255, 255, 255, .05) 60%, rgba(255, 0, 170, .08) 100%) !important;
  border-color: rgba(255, 0, 170, .35) !important;
  box-shadow:
    0 0 0 1px rgba(255, 0, 170, .14),
    0 20px 60px rgba(0, 0, 0, .50),
    0 0 45px rgba(255, 0, 170, .14),
    inset 0  1px 0 rgba(255, 255, 255, .22),
    inset 0 -1px 0 rgba(0, 0, 0, .20) !important;
}
.glass-card.is-pink::after {
  background: linear-gradient(120deg, rgba(255, 0, 170, .8), rgba(255, 100, 200, .5), rgba(0, 255, 241, .2)) !important;
  opacity: .26 !important;
}
.glass-card.is-pink:hover::after { opacity: .44 !important; }
.glass-card.is-pink::before {
  background: linear-gradient(
    108deg,
    transparent              10%,
    rgba(255, 100, 200, .16) 38%,
    rgba(255, 180, 220, .28) 50%,
    rgba(255, 100, 200, .16) 62%,
    transparent              90%
  ) !important;
}

.glass-card.is-cyan {
  background-image:
    radial-gradient(ellipse 60% 40% at 25% 10%,  rgba(255, 255, 255, .18), transparent 65%),
    radial-gradient(ellipse 80% 60% at 70%  90%, rgba(0, 255, 241, .20), transparent 70%),
    linear-gradient(160deg, rgba(0, 255, 241, .14) 0%, rgba(255, 255, 255, .05) 60%, rgba(0, 255, 241, .08) 100%) !important;
  border-color: rgba(0, 255, 241, .35) !important;
  box-shadow:
    0 0 0 1px rgba(0, 255, 241, .14),
    0 20px 60px rgba(0, 0, 0, .50),
    0 0 45px rgba(0, 255, 241, .12),
    inset 0  1px 0 rgba(255, 255, 255, .22),
    inset 0 -1px 0 rgba(0, 0, 0, .20) !important;
}
.glass-card.is-cyan::after {
  background: linear-gradient(120deg, rgba(0, 255, 241, .8), rgba(70, 252, 180, .5), rgba(255, 0, 170, .1)) !important;
  opacity: .24 !important;
}
.glass-card.is-cyan:hover::after { opacity: .40 !important; }
.glass-card.is-cyan::before {
  background: linear-gradient(
    108deg,
    transparent              10%,
    rgba(100, 255, 245, .16) 38%,
    rgba(180, 255, 252, .28) 50%,
    rgba(100, 255, 245, .16) 62%,
    transparent              90%
  ) !important;
}

.glass-card.is-mint {
  background-image:
    radial-gradient(ellipse 60% 40% at 25% 10%,  rgba(255, 255, 255, .18), transparent 65%),
    radial-gradient(ellipse 80% 60% at 70%  90%, rgba(70, 252, 180, .20), transparent 70%),
    linear-gradient(160deg, rgba(70, 252, 180, .14) 0%, rgba(255, 255, 255, .05) 60%, rgba(70, 252, 180, .08) 100%) !important;
  border-color: rgba(70, 252, 180, .35) !important;
  box-shadow:
    0 0 0 1px rgba(70, 252, 180, .14),
    0 20px 60px rgba(0, 0, 0, .50),
    0 0 45px rgba(70, 252, 180, .12),
    inset 0  1px 0 rgba(255, 255, 255, .22),
    inset 0 -1px 0 rgba(0, 0, 0, .20) !important;
}
.glass-card.is-mint::after {
  background: linear-gradient(120deg, rgba(70, 252, 180, .8), rgba(0, 255, 241, .5), rgba(255, 0, 170, .1)) !important;
  opacity: .24 !important;
}
.glass-card.is-mint:hover::after { opacity: .40 !important; }
.glass-card.is-mint::before {
  background: linear-gradient(
    108deg,
    transparent              10%,
    rgba(130, 255, 200, .16) 38%,
    rgba(200, 255, 230, .28) 50%,
    rgba(130, 255, 200, .16) 62%,
    transparent              90%
  ) !important;
}

.glass-card.is-violet {
  background-image:
    radial-gradient(ellipse 60% 40% at 25% 10%,  rgba(255, 255, 255, .18), transparent 65%),
    radial-gradient(ellipse 80% 60% at 70%  90%, rgba(168, 85, 247, .20), transparent 70%),
    linear-gradient(160deg, rgba(168, 85, 247, .16) 0%, rgba(255, 255, 255, .05) 60%, rgba(168, 85, 247, .08) 100%) !important;
  border-color: rgba(168, 85, 247, .35) !important;
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, .14),
    0 20px 60px rgba(0, 0, 0, .50),
    0 0 45px rgba(168, 85, 247, .14),
    inset 0  1px 0 rgba(255, 255, 255, .22),
    inset 0 -1px 0 rgba(0, 0, 0, .20) !important;
}
.glass-card.is-violet::after {
  background: linear-gradient(120deg, rgba(168, 85, 247, .9), rgba(255, 0, 170, .4), rgba(0, 255, 241, .2)) !important;
  opacity: .26 !important;
}
.glass-card.is-violet:hover::after { opacity: .44 !important; }
.glass-card.is-violet::before {
  background: linear-gradient(
    108deg,
    transparent              10%,
    rgba(200, 150, 255, .16) 38%,
    rgba(220, 190, 255, .28) 50%,
    rgba(200, 150, 255, .16) 62%,
    transparent              90%
  ) !important;
}

/* Dark */
.glass-card.is-dark {
  background-image:
    radial-gradient(ellipse 60% 40% at 25% 10%, rgba(255, 255, 255, .10), transparent 65%),
    linear-gradient(160deg, rgba(255, 255, 255, .07) 0%, rgba(0, 0, 0, .10) 100%) !important;
  border-color: rgba(255, 255, 255, .08) !important;
  backdrop-filter: blur(28px) saturate(140%) brightness(.92) !important;
  -webkit-backdrop-filter: blur(28px) saturate(140%) brightness(.92) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .04),
    0 24px 70px rgba(0, 0, 0, .70),
    inset 0  1px 0 rgba(255, 255, 255, .12),
    inset 0 -1px 0 rgba(0, 0, 0, .35) !important;
}

/* Frost */
.glass-card.is-frost {
  background-image:
    radial-gradient(ellipse 60% 40% at 30% 10%, rgba(255, 255, 255, .55), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .15) 100%) !important;
  border-color: rgba(255, 255, 255, .50) !important;
  backdrop-filter: blur(30px) saturate(120%) brightness(1.20) !important;
  -webkit-backdrop-filter: blur(30px) saturate(120%) brightness(1.20) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .30),
    0 20px 60px rgba(0, 0, 0, .35),
    inset 0  1px 0 rgba(255, 255, 255, .70),
    inset 0 -1px 0 rgba(0, 0, 0, .08) !important;
}
.glass-card.is-frost::after { opacity: .06 !important; }
.glass-card.is-frost::before {
  background: linear-gradient(
    108deg,
    transparent              10%,
    rgba(255, 255, 255, .30) 38%,
    rgba(255, 255, 255, .55) 50%,
    rgba(255, 255, 255, .30) 62%,
    transparent              90%
  ) !important;
}

/* Aurora */
@keyframes aurora-shift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

.glass-card.is-aurora {
  background-image:
    radial-gradient(ellipse 60% 40% at 22% 8%,  rgba(255, 255, 255, .22), transparent 60%),
    radial-gradient(ellipse 55% 45% at 80% 85%, rgba(168, 85, 247, .16), transparent 65%),
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0, 255, 241, .08),  transparent 70%),
    linear-gradient(160deg,
      rgba(255,   0, 170, .10) 0%,
      rgba(  0, 255, 241, .08) 35%,
      rgba( 70, 252, 180, .08) 65%,
      rgba(168,  85, 247, .10) 100%
    ) !important;
  border-color: rgba(255, 255, 255, .20) !important;
  backdrop-filter: blur(22px) saturate(200%) brightness(1.10) !important;
  -webkit-backdrop-filter: blur(22px) saturate(200%) brightness(1.10) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .10),
    0 20px 60px rgba(0, 0, 0, .50),
    0 0 50px rgba(168, 85, 247, .10),
    inset 0  1px 0 rgba(255, 255, 255, .28),
    inset 0 -1px 0 rgba(0, 0, 0, .18) !important;
}

.glass-card.is-aurora::after {
  background: conic-gradient(
    from 0deg,
    var(--pink),
    var(--cyan),
    var(--mint),
    var(--violet),
    var(--orange),
    var(--pink)
  ) !important;
  opacity: .22 !important;
  animation: iridescent 6s ease-in-out infinite !important;
}
.glass-card.is-aurora:hover::after { opacity: .40 !important; }

.glass-card.is-aurora::before {
  background: linear-gradient(
    108deg,
    transparent              10%,
    rgba(168, 255, 240, .16) 30%,
    rgba(255, 200, 240, .28) 45%,
    rgba(200, 240, 255, .28) 55%,
    rgba(168, 255, 200, .16) 70%,
    transparent              90%
  ) !important;
}


/* ============================================================
   LIQUID BUTTON — Base
   ============================================================ */

.neon-btn,
a.neon-btn,
.elementor-button.neon-btn {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .55rem !important;

  padding: .38rem 1.4rem !important;
  border-radius: 999px !important;

  background-color: transparent !important;
  background-image:
    radial-gradient(ellipse 55% 35% at 30% 15%,
      rgba(255, 255, 255, .24), transparent 65%),
    radial-gradient(ellipse 80% 60% at 70% 88%,
      rgba(255, 0, 170, .10), transparent 75%),
    linear-gradient(155deg,
      rgba(255, 255, 255, .15) 0%,
      rgba(255, 255, 255, .06) 45%,
      rgba(255, 255, 255, .11) 100%
    ) !important;

  border: 1px solid rgba(255, 255, 255, .24) !important;
  backdrop-filter: blur(24px) saturate(180%) brightness(1.08) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.08) !important;

  color: rgba(255, 255, 255, .95) !important;
  font-weight: 600 !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  font-size: .80rem !important;

  box-shadow:
    0 0  0    1px rgba(255, 0, 170, .14),
    0 8px 28px    rgba(0, 0, 0, .55),
    0 0 40px      rgba(255, 0, 170, .08),
    inset 0  1px 0 rgba(255, 255, 255, .32),
    inset 0 -1px 0 rgba(0, 0, 0, .22) !important;

  transition:
    transform    .28s cubic-bezier(.34, 1.56, .64, 1),
    box-shadow   .25s ease,
    border-color .25s ease !important;

  isolation: isolate !important;
  overflow: hidden !important;
  cursor: pointer !important;
}

/* ── Glow ring — conic breathing + iridescent shift ── */
.neon-btn::before,
a.neon-btn::before,
.elementor-button.neon-btn::before {
  content: "" !important;
  position: absolute !important;
  inset: -4px !important;
  border-radius: inherit !important;
  pointer-events: none !important;
  background: conic-gradient(
    from 0deg, var(--pink), var(--cyan), var(--mint), var(--pink)
  ) !important;
  filter: blur(20px) !important;
  opacity: .48 !important;
  z-index: -1 !important;
  animation:
    liquid-breathe 4s ease-in-out infinite,
    iridescent 8s ease-in-out infinite !important;
}

/* ── Sheen sweep — läuft immer, aber pausiert im Ruhezustand ── */
.neon-btn::after,
a.neon-btn::after,
.elementor-button.neon-btn::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  width: 50% !important;
  background: linear-gradient(
    105deg,
    transparent              10%,
    rgba(255, 255, 255, .22) 40%,
    rgba(255, 255, 255, .38) 50%,
    rgba(255, 255, 255, .22) 60%,
    transparent              90%
  ) !important;
  pointer-events: none !important;
  z-index: 2 !important;
  transform: translateX(-200%) skewX(-20deg);
  transition: transform 0.7s ease;
}

/* Hover: startet die Animation */
.neon-btn:hover::after,
a.neon-btn:hover::after,
.elementor-button.neon-btn:hover::after {
  transform: translateX(350%) skewX(-20deg);
}

/* Hover */
.neon-btn:hover,
a.neon-btn:hover,
.elementor-button.neon-btn:hover {
  transform: translateY(-3px) scale(1.02) !important;
  border-color: rgba(255, 255, 255, .42) !important;
  color: #fff !important;
  box-shadow:
    0 0  0    1px rgba(255, 0, 170, .26),
    0 14px 44px   rgba(0, 0, 0, .65),
    0 0 65px      rgba(255, 0, 170, .20),
    inset 0  1px 0 rgba(255, 255, 255, .44),
    inset 0 -1px 0 rgba(0, 0, 0, .28) !important;
}

.neon-btn:hover::before,
a.neon-btn:hover::before,
.elementor-button.neon-btn:hover::before {
  opacity: .72 !important;
  filter: blur(26px) !important;
  animation-duration: 1.8s, 4s !important;
}

/* Active */
.neon-btn:active,
a.neon-btn:active,
.elementor-button.neon-btn:active {
  transform: translateY(-1px) scale(.98) !important;
  transition-duration: .08s !important;
}


/* ── Button Colour Variants ── */

/* Pink */
.neon-btn.is-pink,
.elementor-button.neon-btn.is-pink {
  background-image:
    radial-gradient(ellipse 55% 35% at 30% 15%, rgba(255, 255, 255, .24), transparent 65%),
    radial-gradient(ellipse 80% 60% at 70% 88%, rgba(255, 0, 170, .22), transparent 70%),
    linear-gradient(155deg, rgba(255, 0, 170, .18) 0%, rgba(255, 255, 255, .06) 50%, rgba(255, 0, 170, .10) 100%) !important;
  border-color: rgba(255, 0, 170, .42) !important;
  box-shadow:
    0 0  0    1px rgba(255, 0, 170, .22),
    0 8px 28px    rgba(0, 0, 0, .55),
    0 0 45px      rgba(255, 0, 170, .18),
    inset 0  1px 0 rgba(255, 255, 255, .32),
    inset 0 -1px 0 rgba(0, 0, 0, .22) !important;
}
.neon-btn.is-pink::before,
.elementor-button.neon-btn.is-pink::before {
  background: conic-gradient(from 0deg, var(--pink), rgba(255, 80, 200, .8), #ff6080, var(--pink)) !important;
}
.neon-btn.is-pink:hover,
.elementor-button.neon-btn.is-pink:hover {
  box-shadow:
    0 0  0    1px rgba(255, 0, 170, .40),
    0 14px 44px   rgba(0, 0, 0, .65),
    0 0 70px      rgba(255, 0, 170, .32),
    inset 0  1px 0 rgba(255, 255, 255, .44),
    inset 0 -1px 0 rgba(0, 0, 0, .28) !important;
}

/* Cyan */
.neon-btn.is-cyan,
.elementor-button.neon-btn.is-cyan {
  background-image:
    radial-gradient(ellipse 55% 35% at 30% 15%, rgba(255, 255, 255, .24), transparent 65%),
    radial-gradient(ellipse 80% 60% at 70% 88%, rgba(0, 255, 241, .20), transparent 70%),
    linear-gradient(155deg, rgba(0, 255, 241, .14) 0%, rgba(255, 255, 255, .06) 50%, rgba(0, 255, 241, .08) 100%) !important;
  border-color: rgba(0, 255, 241, .38) !important;
  box-shadow:
    0 0  0    1px rgba(0, 255, 241, .18),
    0 8px 28px    rgba(0, 0, 0, .55),
    0 0 45px      rgba(0, 255, 241, .14),
    inset 0  1px 0 rgba(255, 255, 255, .32),
    inset 0 -1px 0 rgba(0, 0, 0, .22) !important;
}
.neon-btn.is-cyan::before,
.elementor-button.neon-btn.is-cyan::before {
  background: conic-gradient(from 0deg, var(--cyan), var(--mint), #00d4ff, var(--cyan)) !important;
}
.neon-btn.is-cyan:hover,
.elementor-button.neon-btn.is-cyan:hover {
  box-shadow:
    0 0  0    1px rgba(0, 255, 241, .35),
    0 14px 44px   rgba(0, 0, 0, .65),
    0 0 70px      rgba(0, 255, 241, .26),
    inset 0  1px 0 rgba(255, 255, 255, .44),
    inset 0 -1px 0 rgba(0, 0, 0, .28) !important;
}

/* Mint */
.neon-btn.is-mint,
.elementor-button.neon-btn.is-mint {
  background-image:
    radial-gradient(ellipse 55% 35% at 30% 15%, rgba(255, 255, 255, .24), transparent 65%),
    radial-gradient(ellipse 80% 60% at 70% 88%, rgba(70, 252, 180, .20), transparent 70%),
    linear-gradient(155deg, rgba(70, 252, 180, .14) 0%, rgba(255, 255, 255, .06) 50%, rgba(70, 252, 180, .08) 100%) !important;
  border-color: rgba(70, 252, 180, .38) !important;
  box-shadow:
    0 0  0    1px rgba(70, 252, 180, .16),
    0 8px 28px    rgba(0, 0, 0, .55),
    0 0 45px      rgba(70, 252, 180, .12),
    inset 0  1px 0 rgba(255, 255, 255, .32),
    inset 0 -1px 0 rgba(0, 0, 0, .22) !important;
}
.neon-btn.is-mint::before,
.elementor-button.neon-btn.is-mint::before {
  background: conic-gradient(from 0deg, var(--mint), var(--cyan), #80ffcc, var(--mint)) !important;
}

/* Violet */
.neon-btn.is-violet,
.elementor-button.neon-btn.is-violet {
  background-image:
    radial-gradient(ellipse 55% 35% at 30% 15%, rgba(255, 255, 255, .24), transparent 65%),
    radial-gradient(ellipse 80% 60% at 70% 88%, rgba(168, 85, 247, .22), transparent 70%),
    linear-gradient(155deg, rgba(168, 85, 247, .16) 0%, rgba(255, 255, 255, .06) 50%, rgba(168, 85, 247, .10) 100%) !important;
  border-color: rgba(168, 85, 247, .40) !important;
  box-shadow:
    0 0  0    1px rgba(168, 85, 247, .20),
    0 8px 28px    rgba(0, 0, 0, .55),
    0 0 45px      rgba(168, 85, 247, .16),
    inset 0  1px 0 rgba(255, 255, 255, .32),
    inset 0 -1px 0 rgba(0, 0, 0, .22) !important;
}
.neon-btn.is-violet::before,
.elementor-button.neon-btn.is-violet::before {
  background: conic-gradient(from 0deg, var(--violet), #e879f9, #818cf8, var(--violet)) !important;
}

/* Ghost */
.neon-btn.is-ghost,
.elementor-button.neon-btn.is-ghost {
  background-image:
    linear-gradient(155deg, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, .02) 100%) !important;
  border-color: rgba(255, 255, 255, .18) !important;
  box-shadow:
    inset 0  1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(0, 0, 0, .16),
    0 4px 16px rgba(0, 0, 0, .30) !important;
}
.neon-btn.is-ghost::before,
.elementor-button.neon-btn.is-ghost::before {
  opacity: .18 !important;
  filter: blur(14px) !important;
}
.neon-btn.is-ghost:hover::before,
.elementor-button.neon-btn.is-ghost:hover::before {
  opacity: .38 !important;
}

/* White / Frost */
.neon-btn.is-white,
.elementor-button.neon-btn.is-white {
  background-image:
    linear-gradient(155deg, rgba(255, 255, 255, .55) 0%, rgba(255, 255, 255, .30) 100%) !important;
  border-color: rgba(255, 255, 255, .60) !important;
  color: rgba(20, 20, 30, .95) !important;
  backdrop-filter: blur(28px) saturate(140%) brightness(1.25) !important;
  -webkit-backdrop-filter: blur(28px) saturate(140%) brightness(1.25) !important;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, .35),
    inset 0  1px 0 rgba(255, 255, 255, .80),
    inset 0 -1px 0 rgba(0, 0, 0, .08) !important;
}
.neon-btn.is-white::before,
.elementor-button.neon-btn.is-white::before {
  opacity: .15 !important;
}
.neon-btn.is-white:hover,
.elementor-button.neon-btn.is-white:hover {
  color: #000 !important;
}


/* ── Button Size Variants ── */

.neon-btn.is-sm,
.elementor-button.neon-btn.is-sm {
  padding: .60rem 1.30rem !important;
  font-size: .72rem !important;
}

.neon-btn.is-lg,
.elementor-button.neon-btn.is-lg {
  padding: 1.15rem 2.60rem !important;
  font-size: .90rem !important;
}


/* ============================================================
   UTILITIES
   ============================================================ */

.glass-text {
  color: rgba(255, 255, 255, .88);
  text-shadow: 0 1px 18px rgba(0, 0, 0, .35);
}

.glass-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, .20),
    transparent
  );
}


/* ============================================================
   GRADIENT TEXT — Utilities
   Klasse auf ein Inline-Element setzen (span, em, strong)
   ============================================================ */

.text-gradient {
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(255, 0, 170, .32));
}

.text-gradient-full {
  background: linear-gradient(90deg, var(--pink), var(--cyan), var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 0, 170, .28));
}

.text-gradient-warm {
  background: linear-gradient(90deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(255, 110, 72, .28));
}

.text-gradient-cool {
  background: linear-gradient(90deg, var(--cyan), var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(0, 255, 241, .28));
}

.text-gradient-reverse {
  background: linear-gradient(90deg, var(--mint), var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(70, 252, 180, .28));
}

.text-gradient-animated {
  background: linear-gradient(
    90deg,
    var(--pink),
    var(--cyan),
    var(--mint),
    var(--pink)
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 0, 170, .30));
  animation: textGradientFlow 5s ease-in-out infinite;
}

@keyframes textGradientFlow {
  0%   { background-position: 0%   center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0%   center; }
}


/* ============================================================
   SCROLLBAR
   ============================================================ */

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 0, 170, .45) transparent;
}

/* Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--pink),
    var(--cyan),
    var(--mint)
  );
  box-shadow:
    0 0 8px rgba(255, 0, 170, .50),
    0 0 16px rgba(0, 255, 241, .25);
  border: none;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    var(--pink),
    var(--cyan)
  );
  box-shadow:
    0 0 12px rgba(255, 0, 170, .70),
    0 0 24px rgba(0, 255, 241, .40);
}

::-webkit-scrollbar-corner {
  background: transparent;
}


/* ============================================================
   DIVIDER / TRENNER — Varianten
   ============================================================ */

/* Standard — läuft links & rechts aus */
.glass-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent        0%,
    rgba(255, 255, 255, .18) 20%,
    rgba(255, 255, 255, .28) 50%,
    rgba(255, 255, 255, .18) 80%,
    transparent        100%
  );
  border: none;
  margin: 0;
}

/* Pink-Akzent */
.glass-divider.is-pink {
  background: linear-gradient(
    90deg,
    transparent              0%,
    rgba(255,   0, 170, .22) 20%,
    rgba(255,   0, 170, .50) 50%,
    rgba(255,   0, 170, .22) 80%,
    transparent              100%
  );
  box-shadow: 0 0 12px rgba(255, 0, 170, .20);
}

/* Cyan-Akzent */
.glass-divider.is-cyan {
  background: linear-gradient(
    90deg,
    transparent              0%,
    rgba(  0, 255, 241, .20) 20%,
    rgba(  0, 255, 241, .45) 50%,
    rgba(  0, 255, 241, .20) 80%,
    transparent              100%
  );
  box-shadow: 0 0 12px rgba(0, 255, 241, .16);
}

/* Neon-Regenbogen — Pink → Cyan → Mint */
.glass-divider.is-neon {
  background: linear-gradient(
    90deg,
    transparent              0%,
    rgba(255,   0, 170, .55) 20%,
    rgba(  0, 255, 241, .60) 50%,
    rgba( 70, 252, 180, .55) 80%,
    transparent              100%
  );
  box-shadow:
    0 0 14px rgba(255,   0, 170, .18),
    0 0 28px rgba(  0, 255, 241, .12);
}

/* Glow-animiert — Farbe breathed */
.glass-divider.is-animated {
  background: linear-gradient(
    90deg,
    transparent              0%,
    rgba(255,   0, 170, .50) 20%,
    rgba(  0, 255, 241, .60) 50%,
    rgba( 70, 252, 180, .50) 80%,
    transparent              100%
  );
  animation: divider-glow 4s ease-in-out infinite;
}

@keyframes divider-glow {
  0%, 100% {
    box-shadow: 0 0 8px  rgba(255,   0, 170, .25), 0 0 16px rgba(255,   0, 170, .10);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 18px rgba(  0, 255, 241, .40), 0 0 36px rgba(  0, 255, 241, .18);
    filter: brightness(1.3);
  }
}

/* Links ausblenden */
.glass-divider.from-left {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, .28) 0%,
    rgba(255, 255, 255, .18) 60%,
    transparent              100%
  );
}

/* Rechts ausblenden */
.glass-divider.from-right {
  background: linear-gradient(
    90deg,
    transparent              0%,
    rgba(255, 255, 255, .18) 40%,
    rgba(255, 255, 255, .28) 100%
  );
}


/* ============================================================
   DIVIDER — Elementor Widget Fix
   Zielt auf .elementor-divider-separator innerhalb von .glass-divider
   ============================================================ */

/* ============================================================
   DIVIDER — Elementor Widget Fix
   ============================================================ */

/* Alles von Elementor killen */
.glass-divider.elementor-widget-divider .elementor-divider,
.glass-divider.elementor-widget-divider .elementor-divider-separator,
.glass-divider .elementor-divider,
.glass-divider .elementor-divider-separator {
  border: none !important;
  border-top: none !important;
  background: none !important;
  background-image: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Wrapper auf 1px begrenzen */
.glass-divider .elementor-divider {
  height: 1px !important;
  line-height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Unsere Linie auf den Separator */
.glass-divider .elementor-divider-separator {
  display: block !important;
  height: 1px !important;
  width: 100% !important;
  background: linear-gradient(
    90deg,
    transparent              0%,
    rgba(255, 255, 255, .18) 20%,
    rgba(255, 255, 255, .30) 50%,
    rgba(255, 255, 255, .18) 80%,
    transparent              100%
  ) !important;
}

/* Pink */
.glass-divider.is-pink .elementor-divider-separator {
  background: linear-gradient(
    90deg,
    transparent              0%,
    rgba(255,   0, 170, .22) 20%,
    rgba(255,   0, 170, .55) 50%,
    rgba(255,   0, 170, .22) 80%,
    transparent              100%
  ) !important;
  box-shadow: 0 0 12px rgba(255, 0, 170, .22) !important;
}

/* Cyan */
.glass-divider.is-cyan .elementor-divider-separator {
  background: linear-gradient(
    90deg,
    transparent              0%,
    rgba(  0, 255, 241, .20) 20%,
    rgba(  0, 255, 241, .50) 50%,
    rgba(  0, 255, 241, .20) 80%,
    transparent              100%
  ) !important;
  box-shadow: 0 0 12px rgba(0, 255, 241, .18) !important;
}

/* Neon Regenbogen */
.glass-divider.is-neon .elementor-divider-separator {
  background: linear-gradient(
    90deg,
    transparent              0%,
    rgba(255,   0, 170, .55) 20%,
    rgba(  0, 255, 241, .65) 50%,
    rgba( 70, 252, 180, .55) 80%,
    transparent              100%
  ) !important;
  box-shadow:
    0 0 14px rgba(255,   0, 170, .20),
    0 0 28px rgba(  0, 255, 241, .12) !important;
}

/* Animiert */
.glass-divider.is-animated .elementor-divider-separator {
  background: linear-gradient(
    90deg,
    transparent              0%,
    rgba(255,   0, 170, .50) 20%,
    rgba(  0, 255, 241, .65) 50%,
    rgba( 70, 252, 180, .50) 80%,
    transparent              100%
  ) !important;
  animation: divider-glow 4s ease-in-out infinite !important;
}

/* Von links */
.glass-divider.from-left .elementor-divider-separator {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, .30) 0%,
    rgba(255, 255, 255, .18) 60%,
    transparent              100%
  ) !important;
}

/* Von rechts */
.glass-divider.from-right .elementor-divider-separator {
  background: linear-gradient(
    90deg,
    transparent              0%,
    rgba(255, 255, 255, .18) 40%,
    rgba(255, 255, 255, .30) 100%
  ) !important;
}


/* ============================================================
   GLASS IMAGE — Bild mit Glasrahmen-Effekt
   Klasse auf das Elementor Image-Widget: glass-img
   ============================================================ */

/* Wrapper-Reset */
.glass-img,
.glass-img .elementor-widget-container {
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  position: relative !important;
  isolation: isolate !important;
  display: block !important;
}

/* Das Bild selbst */
.glass-img img {
  border-radius: var(--radius) !important;
  display: block !important;
  width: 100% !important;
  transition: transform .45s cubic-bezier(.34, 1.20, .64, 1), filter .35s ease !important;
}

/* Hover: Bild leicht zoomen */
.glass-img:hover img {
  transform: scale(1.04) !important;
  filter: brightness(1.08) saturate(1.10) !important;
}

/* ── Glasrahmen (border + glow) ── */
.glass-img .elementor-widget-container {
  border: 1px solid rgba(255, 255, 255, .18) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .06),
    0 20px 60px rgba(0, 0, 0, .55),
    0 0 40px rgba(255, 0, 170, .08),
    inset 0  1px 0 rgba(255, 255, 255, .22),
    inset 0 -1px 0 rgba(0, 0, 0, .20) !important;
  background: rgba(255, 255, 255, .04) !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
}

/* ── Specular-Highlight oben links ── */
.glass-img .elementor-widget-container::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: var(--radius) !important;
  pointer-events: none !important;
  background:
    radial-gradient(ellipse 70% 35% at 20% 0%,
      rgba(255, 255, 255, .22), transparent 60%),
    radial-gradient(ellipse 40% 20% at 90% 10%,
      rgba(255, 255, 255, .10), transparent 60%) !important;
  z-index: 2 !important;
}

/* ── Shimmer beim Hover ── */
.glass-img .elementor-widget-container::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  width: 55% !important;
  background: linear-gradient(
    108deg,
    transparent              10%,
    rgba(255, 255, 255, .10) 38%,
    rgba(255, 255, 255, .20) 50%,
    rgba(255, 255, 255, .10) 62%,
    transparent              90%
  ) !important;
  pointer-events: none !important;
  z-index: 3 !important;
  transform: translateX(-150%);
}

.glass-img:hover .elementor-widget-container::after {
  transform: translateX(210%) skewX(-15deg);
}

/* ── Neon-Aura beim Hover ── */
.glass-img:hover .elementor-widget-container {
  border-color: rgba(255, 255, 255, .28) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .10),
    0 28px 80px rgba(0, 0, 0, .65),
    0 0 55px rgba(255, 0, 170, .14),
    inset 0  1px 0 rgba(255, 255, 255, .30),
    inset 0 -1px 0 rgba(0, 0, 0, .25) !important;
}


/* ── Farb-Varianten ── */

/* Pink-Rahmen */
.glass-img.is-pink .elementor-widget-container {
  border-color: rgba(255, 0, 170, .35) !important;
  box-shadow:
    0 0 0 1px rgba(255, 0, 170, .12),
    0 20px 60px rgba(0, 0, 0, .55),
    0 0 45px rgba(255, 0, 170, .14),
    inset 0  1px 0 rgba(255, 255, 255, .22),
    inset 0 -1px 0 rgba(0, 0, 0, .20) !important;
}
.glass-img.is-pink:hover .elementor-widget-container {
  box-shadow:
    0 0 0 1px rgba(255, 0, 170, .24),
    0 28px 80px rgba(0, 0, 0, .65),
    0 0 65px rgba(255, 0, 170, .22),
    inset 0  1px 0 rgba(255, 255, 255, .30),
    inset 0 -1px 0 rgba(0, 0, 0, .25) !important;
}

/* Cyan-Rahmen */
.glass-img.is-cyan .elementor-widget-container {
  border-color: rgba(0, 255, 241, .32) !important;
  box-shadow:
    0 0 0 1px rgba(0, 255, 241, .10),
    0 20px 60px rgba(0, 0, 0, .55),
    0 0 45px rgba(0, 255, 241, .12),
    inset 0  1px 0 rgba(255, 255, 255, .22),
    inset 0 -1px 0 rgba(0, 0, 0, .20) !important;
}
.glass-img.is-cyan:hover .elementor-widget-container {
  box-shadow:
    0 0 0 1px rgba(0, 255, 241, .22),
    0 28px 80px rgba(0, 0, 0, .65),
    0 0 65px rgba(0, 255, 241, .20),
    inset 0  1px 0 rgba(255, 255, 255, .30),
    inset 0 -1px 0 rgba(0, 0, 0, .25) !important;
}

/* Mint-Rahmen */
.glass-img.is-mint .elementor-widget-container {
  border-color: rgba(70, 252, 180, .30) !important;
  box-shadow:
    0 0 0 1px rgba(70, 252, 180, .10),
    0 20px 60px rgba(0, 0, 0, .55),
    0 0 45px rgba(70, 252, 180, .10),
    inset 0  1px 0 rgba(255, 255, 255, .22),
    inset 0 -1px 0 rgba(0, 0, 0, .20) !important;
}
.glass-img.is-mint:hover .elementor-widget-container {
  box-shadow:
    0 0 0 1px rgba(70, 252, 180, .20),
    0 28px 80px rgba(0, 0, 0, .65),
    0 0 65px rgba(70, 252, 180, .18),
    inset 0  1px 0 rgba(255, 255, 255, .30),
    inset 0 -1px 0 rgba(0, 0, 0, .25) !important;
}

/* Violet-Rahmen */
.glass-img.is-violet .elementor-widget-container {
  border-color: rgba(168, 85, 247, .35) !important;
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, .12),
    0 20px 60px rgba(0, 0, 0, .55),
    0 0 45px rgba(168, 85, 247, .12),
    inset 0  1px 0 rgba(255, 255, 255, .22),
    inset 0 -1px 0 rgba(0, 0, 0, .20) !important;
}
.glass-img.is-violet:hover .elementor-widget-container {
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, .22),
    0 28px 80px rgba(0, 0, 0, .65),
    0 0 65px rgba(168, 85, 247, .20),
    inset 0  1px 0 rgba(255, 255, 255, .30),
    inset 0 -1px 0 rgba(0, 0, 0, .25) !important;
}

/* ── Radius-Varianten ── */
.glass-img.is-rounded,
.glass-img.is-rounded .elementor-widget-container,
.glass-img.is-rounded img { border-radius: 999px !important; }

.glass-img.is-square,
.glass-img.is-square .elementor-widget-container,
.glass-img.is-square img { border-radius: 0 !important; }

.glass-img.is-sm,
.glass-img.is-sm .elementor-widget-container,
.glass-img.is-sm img { border-radius: var(--radius-sm) !important; }


/* ============================================================
   GLASS IMAGE COMPARISON — ElementsKit TwentyTwenty Widget
   Klasse auf das Widget: glass-img
   ============================================================ */

/* Wrapper */
.glass-img .ekit-wid-con,
.glass-img .twentytwenty-wrapper,
.glass-img .elementskit-image-comparison,
.glass-img .twentytwenty-container {
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  position: relative !important;
  isolation: isolate !important;
}

/* Glasrahmen auf dem Container */
.glass-img .twentytwenty-container {
  border: 1px solid rgba(255, 255, 255, .18) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .06),
    0 20px 60px rgba(0, 0, 0, .55),
    0 0 40px rgba(255, 0, 170, .08),
    inset 0  1px 0 rgba(255, 255, 255, .22),
    inset 0 -1px 0 rgba(0, 0, 0, .20) !important;
}

/* Specular-Highlight oben */
.glass-img .twentytwenty-container::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  pointer-events: none !important;
  background:
    radial-gradient(ellipse 70% 35% at 20% 0%,
      rgba(255, 255, 255, .20), transparent 60%),
    radial-gradient(ellipse 40% 20% at 88% 8%,
      rgba(255, 255, 255, .10), transparent 55%) !important;
  z-index: 10 !important;
}

/* Shimmer beim Hover */
.glass-img .twentytwenty-container::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  width: 55% !important;
  background: linear-gradient(
    108deg,
    transparent              10%,
    rgba(255, 255, 255, .10) 38%,
    rgba(255, 255, 255, .20) 50%,
    rgba(255, 255, 255, .10) 62%,
    transparent              90%
  ) !important;
  pointer-events: none !important;
  z-index: 10 !important;
  transform: translateX(-160%) skewX(-15deg);
  transition: transform 0.7s ease;
}
.glass-img:hover .twentytwenty-container::after {
  transform: translateX(210%) skewX(-15deg);
}

/* Hover — Rahmen heller */
.glass-img:hover .twentytwenty-container {
  border-color: rgba(255, 255, 255, .28) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .10),
    0 28px 80px rgba(0, 0, 0, .65),
    0 0 55px rgba(255, 0, 170, .14),
    inset 0  1px 0 rgba(255, 255, 255, .30),
    inset 0 -1px 0 rgba(0, 0, 0, .25) !important;
}

/* ── Handle (Schieberegler) im Theme-Stil ── */
.glass-img .twentytwenty-handle {
  background: rgba(255, 255, 255, .12) !important;
  border: 2px solid rgba(255, 255, 255, .55) !important;
  box-shadow:
    0 0 0 3px rgba(255, 0, 170, .25),
    0 0 20px rgba(255, 0, 170, .30),
    inset 0 1px 0 rgba(255, 255, 255, .40) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

/* Pfeile am Handle */
.glass-img .twentytwenty-left-arrow {
  border-right-color: rgba(255, 255, 255, .90) !important;
}
.glass-img .twentytwenty-right-arrow {
  border-left-color: rgba(255, 255, 255, .90) !important;
}

/* Overlay Labels */
.glass-img .twentytwenty-overlay {
  background: transparent !important;
}
.glass-img .twentytwenty-before-label::before,
.glass-img .twentytwenty-after-label::before {
  background: rgba(12, 16, 22, .55) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  border-radius: 999px !important;
  color: rgba(255, 255, 255, .90) !important;
  font-size: .72rem !important;
  letter-spacing: .08em !important;
  padding: .3rem .9rem !important;
  box-shadow: 0 0 14px rgba(0, 0, 0, .40) !important;
}

/* ── Farb-Varianten ── */
.glass-img.is-pink .twentytwenty-container {
  border-color: rgba(255, 0, 170, .35) !important;
  box-shadow: 0 0 0 1px rgba(255,0,170,.12), 0 20px 60px rgba(0,0,0,.55), 0 0 45px rgba(255,0,170,.14), inset 0 1px 0 rgba(255,255,255,.22), inset 0 -1px 0 rgba(0,0,0,.20) !important;
}
.glass-img.is-pink .twentytwenty-handle {
  box-shadow: 0 0 0 3px rgba(255,0,170,.35), 0 0 22px rgba(255,0,170,.38), inset 0 1px 0 rgba(255,255,255,.40) !important;
}
.glass-img.is-pink:hover .twentytwenty-container {
  box-shadow: 0 0 0 1px rgba(255,0,170,.24), 0 28px 80px rgba(0,0,0,.65), 0 0 65px rgba(255,0,170,.22), inset 0 1px 0 rgba(255,255,255,.30), inset 0 -1px 0 rgba(0,0,0,.25) !important;
}

.glass-img.is-cyan .twentytwenty-container {
  border-color: rgba(0, 255, 241, .32) !important;
  box-shadow: 0 0 0 1px rgba(0,255,241,.10), 0 20px 60px rgba(0,0,0,.55), 0 0 45px rgba(0,255,241,.12), inset 0 1px 0 rgba(255,255,255,.22), inset 0 -1px 0 rgba(0,0,0,.20) !important;
}
.glass-img.is-cyan .twentytwenty-handle {
  box-shadow: 0 0 0 3px rgba(0,255,241,.30), 0 0 22px rgba(0,255,241,.32), inset 0 1px 0 rgba(255,255,255,.40) !important;
}

.glass-img.is-violet .twentytwenty-container {
  border-color: rgba(168, 85, 247, .35) !important;
  box-shadow: 0 0 0 1px rgba(168,85,247,.12), 0 20px 60px rgba(0,0,0,.55), 0 0 45px rgba(168,85,247,.12), inset 0 1px 0 rgba(255,255,255,.22), inset 0 -1px 0 rgba(0,0,0,.20) !important;
}
.glass-img.is-violet .twentytwenty-handle {
  box-shadow: 0 0 0 3px rgba(168,85,247,.32), 0 0 22px rgba(168,85,247,.35), inset 0 1px 0 rgba(255,255,255,.40) !important;
}

/* ── Radius-Varianten ── */
.glass-img.is-rounded .ekit-wid-con,
.glass-img.is-rounded .twentytwenty-wrapper,
.glass-img.is-rounded .twentytwenty-container { border-radius: 30px !important; }

.glass-img.is-square .ekit-wid-con,
.glass-img.is-square .twentytwenty-wrapper,
.glass-img.is-square .twentytwenty-container { border-radius: 0 !important; }

.glass-img.is-sm .ekit-wid-con,
.glass-img.is-sm .twentytwenty-wrapper,
.glass-img.is-sm .twentytwenty-container { border-radius: var(--radius-sm) !important; }


/* ============================================================
   GLASS IMAGE BOX — Elementor Image Box Widget
   Klasse auf das Widget: glass-box
   ============================================================ */

/* Wrapper */
.glass-box,
.glass-box .elementor-widget-container {
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  position: relative !important;
  isolation: isolate !important;
}

/* Glascard auf dem Wrapper */
.glass-box .elementor-image-box-wrapper {
  position: relative !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  padding: 8px 12px !important;
  background-image:
    radial-gradient(ellipse 60% 40% at 25% 10%,
      rgba(255, 255, 255, .18), transparent 65%),
    linear-gradient(160deg,
      rgba(255, 255, 255, .12) 0%,
      rgba(255, 255, 255, .05) 50%,
      rgba(255, 255, 255, .08) 100%
    ) !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  backdrop-filter: blur(20px) saturate(170%) brightness(1.06) !important;
  -webkit-backdrop-filter: blur(20px) saturate(170%) brightness(1.06) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .06),
    0 20px 60px rgba(0, 0, 0, .50),
    inset 0  1px 0 rgba(255, 255, 255, .22),
    inset 0 -1px 0 rgba(0, 0, 0, .20) !important;
  transition: transform .28s cubic-bezier(.34, 1.56, .64, 1), box-shadow .28s ease !important;
}

/* Shimmer */
.glass-box .elementor-image-box-wrapper::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  width: 55% !important;
  background: linear-gradient(
    108deg,
    transparent              10%,
    rgba(255, 255, 255, .10) 38%,
    rgba(255, 255, 255, .20) 50%,
    rgba(255, 255, 255, .10) 62%,
    transparent              90%
  ) !important;
  pointer-events: none !important;
  z-index: 3 !important;
  transform: translateX(-160%) skewX(-15deg);
  transition: transform 0.7s ease;
}
.glass-box:hover .elementor-image-box-wrapper::before {
  transform: translateX(210%) skewX(-15deg);
}

/* Neon Aura */
.glass-box .elementor-image-box-wrapper::after {
  content: "" !important;
  position: absolute !important;
  inset: -3px !important;
  border-radius: inherit !important;
  pointer-events: none !important;
  background: linear-gradient(120deg,
    rgba(255,   0, 170, .40),
    rgba(  0, 255, 241, .40),
    rgba( 70, 252, 180, .25)
  ) !important;
  filter: blur(20px) !important;
  opacity: .12 !important;
  z-index: -1 !important;
  transition: opacity .28s ease !important;
}

/* Hover */
.glass-box:hover .elementor-image-box-wrapper {
  transform: translateY(-3px) !important;
  border-color: rgba(255, 255, 255, .26) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .10),
    0 28px 80px rgba(0, 0, 0, .60),
    inset 0  1px 0 rgba(255, 255, 255, .30),
    inset 0 -1px 0 rgba(0, 0, 0, .25) !important;
}
.glass-box:hover .elementor-image-box-wrapper::after {
  opacity: .24 !important;
}

/* ── Icon / Bild ── */
.glass-box .elementor-image-box-img {
  position: relative !important;
  z-index: 2 !important;
  margin: 0 20px 0 0 !important;
  flex-shrink: 0 !important;
}

.glass-box .elementor-image-box-img img {
  border-radius: 0 !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  transition: transform .28s cubic-bezier(.34, 1.56, .64, 1), filter .28s ease !important;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, .08)) !important;
}

.glass-box:hover .elementor-image-box-img img {
  transform: scale(1.08) !important;
  filter: drop-shadow(0 0 14px rgba(255, 0, 170, .35)) brightness(1.08) !important;
}

/* ── Text ── */
.glass-box .elementor-image-box-content {
  position: relative !important;
  z-index: 2 !important;
}

.glass-box .elementor-image-box-title {
  color: rgba(255, 255, 255, .92) !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
}

.glass-box .elementor-image-box-description {
  
  line-height: 1.65 !important;
}


/* ── Farb-Varianten ── */

.glass-box.is-pink .elementor-image-box-wrapper {
  background-image:
    radial-gradient(ellipse 60% 40% at 25% 10%, rgba(255,255,255,.18), transparent 65%),
    radial-gradient(ellipse 80% 60% at 70% 90%, rgba(255,0,170,.20), transparent 70%),
    linear-gradient(160deg, rgba(255,0,170,.16) 0%, rgba(255,255,255,.05) 60%, rgba(255,0,170,.08) 100%) !important;
  border-color: rgba(255, 0, 170, .35) !important;
  box-shadow:
    0 0 0 1px rgba(255,0,170,.12),
    0 20px 60px rgba(0,0,0,.50),
    0 0 40px rgba(255,0,170,.12),
    inset 0  1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(0,0,0,.20) !important;
}
.glass-box.is-pink .elementor-image-box-img img {
  border-color: rgba(255, 0, 170, .28) !important;
  filter: drop-shadow(0 0 10px rgba(255, 0, 170, .30)) !important;
}
.glass-box.is-pink .elementor-image-box-wrapper::after {
  background: linear-gradient(120deg, rgba(255,0,170,.8), rgba(255,100,200,.5), rgba(0,255,241,.2)) !important;
}

.glass-box.is-cyan .elementor-image-box-wrapper {
  background-image:
    radial-gradient(ellipse 60% 40% at 25% 10%, rgba(255,255,255,.18), transparent 65%),
    radial-gradient(ellipse 80% 60% at 70% 90%, rgba(0,255,241,.20), transparent 70%),
    linear-gradient(160deg, rgba(0,255,241,.14) 0%, rgba(255,255,255,.05) 60%, rgba(0,255,241,.08) 100%) !important;
  border-color: rgba(0, 255, 241, .32) !important;
  box-shadow:
    0 0 0 1px rgba(0,255,241,.10),
    0 20px 60px rgba(0,0,0,.50),
    0 0 40px rgba(0,255,241,.10),
    inset 0  1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(0,0,0,.20) !important;
}
.glass-box.is-cyan .elementor-image-box-img img {
  border-color: rgba(0, 255, 241, .25) !important;
  filter: drop-shadow(0 0 10px rgba(0, 255, 241, .28)) !important;
}

.glass-box.is-mint .elementor-image-box-wrapper {
  background-image:
    radial-gradient(ellipse 60% 40% at 25% 10%, rgba(255,255,255,.18), transparent 65%),
    radial-gradient(ellipse 80% 60% at 70% 90%, rgba(70,252,180,.20), transparent 70%),
    linear-gradient(160deg, rgba(70,252,180,.14) 0%, rgba(255,255,255,.05) 60%, rgba(70,252,180,.08) 100%) !important;
  border-color: rgba(70, 252, 180, .30) !important;
  box-shadow:
    0 0 0 1px rgba(70,252,180,.10),
    0 20px 60px rgba(0,0,0,.50),
    0 0 40px rgba(70,252,180,.10),
    inset 0  1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(0,0,0,.20) !important;
}
.glass-box.is-mint .elementor-image-box-img img {
  border-color: rgba(70, 252, 180, .25) !important;
  filter: drop-shadow(0 0 10px rgba(70, 252, 180, .26)) !important;
}

.glass-box.is-violet .elementor-image-box-wrapper {
  background-image:
    radial-gradient(ellipse 60% 40% at 25% 10%, rgba(255,255,255,.18), transparent 65%),
    radial-gradient(ellipse 80% 60% at 70% 90%, rgba(168,85,247,.20), transparent 70%),
    linear-gradient(160deg, rgba(168,85,247,.16) 0%, rgba(255,255,255,.05) 60%, rgba(168,85,247,.08) 100%) !important;
  border-color: rgba(168, 85, 247, .32) !important;
  box-shadow:
    0 0 0 1px rgba(168,85,247,.12),
    0 20px 60px rgba(0,0,0,.50),
    0 0 40px rgba(168,85,247,.12),
    inset 0  1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(0,0,0,.20) !important;
}
.glass-box.is-violet .elementor-image-box-img img {
  border-color: rgba(168, 85, 247, .28) !important;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, .28)) !important;
}