/* === THEME-ABHÄNGIGE FARBEN === */
[data-bs-theme] #nav_container {
    position: relative;
    overflow: visible;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.35),   /* heller Reflex oben */
        rgba(255,255,255,0.15),   /* weicher Glanz */
        rgba(0,0,0,0.20)          /* dunkler Metallschatten unten */
    ) !important;

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.4),   /* Glanzkante oben */
        inset 0 -2px 4px rgba(0,0,0,0.35),       /* Schatten unten */
        0 0 6px rgba(0,0,0,0.25);                /* leichte Außen-Tiefe */
}

[data-bs-theme] #nav_container::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background: repeating-linear-gradient(
        to right,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 1px,
        rgba(0,0,0,0.03) 2px
    );
    opacity: 0.4;
}

[data-bs-theme="dark"] #nav_container {
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.18),
        rgba(255,255,255,0.08),
        rgba(0,0,0,0.35)
    ) !important;
}

/* Light Mode */
[data-bs-theme="light"] .right-sticky-nav .rsn-item:hover {
    color: #222; /* dunkles Grau → perfekt sichtbar */
}

/* Dark Mode */
[data-bs-theme="dark"] .right-sticky-nav .rsn-item:hover {
    color: #fff; /* helles Weiß → perfekt sichtbar */
}

/* Light Mode */
:root[data-bs-theme="light"] {
	--top-leiste-bag: #F2F2F2;
	--top-leiste-border: #cccccc:
	--top-leiste-color: #575757;
	--top-leiste-hover: #373737;
	--header-bag: #000000;
    --mini-nav-bg: #f2f2f2;
    --mini-nav-border: #cccccc;
	--mini-nav-icon: #575757;
	--mini-nav-icon-hover: #373737;
	--navigation-hover-rgb: 57,255,20;
	--navigation-bag: #f2f2f2;
	--navigation-color: #000000;
	--navigation-hover: #2ecc10;
	--navigation-border: #cccccc;
    --footer-bg: #f5f5f5;
    --footer-color: #111;      /* Text schwarz */
    --footer-heading: #000;    /* Überschrift schwarz */
    --footer-border: #000;     /* Linie schwarz */
    --footer-link: #000;       /* Links schwarz */
}

/* Dark Mode */
:root[data-bs-theme="dark"] {
	--top-leiste-bag: #000000;
	--top-leiste-border: #222222:
	--top-leiste-color: #39ff14;
	--top-leiste-hover: #2ecc10;
	--header-bag: #000000;
    --mini-nav-bg: #000000;
    --mini-nav-border: #222222;
	--mini-nav-icon: #39ff14;
	--mini-nav-icon-hover: #2ecc10;
	--navigation-hover-rgb: 57,255,20;
	--navigation-bag: #000000;
	--navigation-color: #ffffff;
	--navigation-hover: #39ff14;
	--navigation-border: #222222;
    --footer-bg: #0f0f0f;
    --footer-color: #eee;      /* Text weiß */
    --footer-heading: #fff;    /* Überschrift weiß */
    --footer-border: #fff;     /* Linie weiß */
    --footer-link: #fff;       /* Links weiß */;
}

/* Top Leiste */
.top {
	min-height: 20px;
	color: rgb(var(--top-leiste-color)) !important;
    background: var(--top-leiste-bag);
	border-bottom: 1px solid var(--top-leiste-border) !important;
}

.top a:hover {
	color: rgb(var(--top-leiste-hover)) !important;
}

#top.top {
    background-color: var(--top-leiste-bag) !important;
    color: rgb(var(--top-leiste-color)) !important;
}

#container1.header, #container1, .header {
	background-color: var(--header-bag) !important;
}

.fa-lg {
  font-size: 1.5em !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgb(255, 0, 29) !important;
}

[data-bs-theme="dark"] .text-danger,
[data-bs-theme="light"] .text-danger {
  color: rgb(255, 0, 29) !important;
}

[data-bs-theme="dark"] .text-danger:hover,
[data-bs-theme="light"] .text-danger:hover {
  color: rgb(255, 0, 29, 0.8) !important;
}

.logobar-icons a.text-danger i {
    color: rgb(255, 0, 29) !important;
}

.logobar-icons a.text-danger:hover i {
    color: rgb(255, 0, 29, 0.8) !important;
}

#logobar, #toggle_wishlist, #toggle_cart {
	background: black;
	color: #39ff14 !important;
	border-bottom: 1px solid #000;
	padding: 12px 0;
}

#logobar {
	height: 150px;
}

.logobar-inner {
    max-width: 1320px;
    margin: 0 auto;
    align-items: center;
    
    gap: 20px;
	justify-content: space-between;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: flex-start;
	
}

/* Logo */
.nav-logo img {
	flex: 0 1 auto;
	max-height: 200px;
	width: auto;
	height: auto;
}

/* Suche */
.logobar-search {
    flex: 1; /* nimmt den freien Platz ein */
    display: flex;
    justify-content: center;
	
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
}

/* Icons rechts */
.logobar-icons {
    display: flex;
    align-items: center;
    gap: 16px;
	flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
}

.nav-icon {
    background: none;
    border: none;
    color: #023E8D;
    font-size: 1.25em;
    cursor: pointer;
}

/* Basis-Styling für ALLE Icons im Header */
.logobar-icons button,
.logobar-icons a,
.logobar-icons .icon,
.logobar-icons i,
.icontext,
.icontext a {
    color: #39ff14; /* Neon-Grün wie Toggle */
    transition: color .2s ease, transform .2s ease;
}

.logobar-icons button:hover i,
.logobar-icons a:hover i,
.logobar-icons .icon:hover i {
    color: #2ecc10; /* Neon-Grün etwas dunkler wie Toggle */
    transform: scale(1.15);
}

.logobar-icons .icontext:hover {
    color: #2ecc10; /* Neon-Grün etwas dunkler wie Toggle */
}

.logobar-icons button:active i,
.logobar-icons a:active i,
.logobar-icons .icon:active i {
    color: #2ecc10; /* dunkleres Grün */
    transform: scale(1.05);
}

.flexbox-panel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: center;
}

.flexbox-item {
    flex: 1 1 auto;
}

.flex-item:nth-child(1) {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
}

.flex-item:nth-child(2) {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
}

.flex-item:nth-child(3) {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
}

.flex-item:nth-child(4) {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
}

/* Mobile: Suchfeld wird zur Lupe */
@media (max-width: 768px) {
    .logobar-search {
        display: none;
    }
   /*.logobar-icons::before {
        content: "\f002"; 
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 1.25em;
        margin-right: 12px;
        cursor: pointer;
    }*/
}

/* Mobile Layout */
@media (max-width: 500px) {

    /* 1) Header wird vertikal */
    .logobar-inner {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* 2) Logo bleibt oben */
    .nav-logo {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* 3) Mobile-Zeile sichtbar machen */
    .mobile-row {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    /* 4) Mobile-Lupe */
    .mobile-search-icon {
        display: flex;
        font-size: 26px;
        color: #39ff14;
        cursor: pointer;
    }

    /* 5) Icons in der Mobile-Zeile */
    .mobile-icons {
        display: flex;
        gap: 14px;
        align-items: center;
    }

    /* 6) Desktop-Suche ausblenden */
    .logobar-search {
        display: none !important;
    }

    /* 7) Desktop-Icons ausblenden */
    .logobar-icons {
        display: none !important;
    }

    /* 8) Desktop-Toggle ausblenden */
    .logobar-inner > .flex-item:nth-child(3) {
        display: none !important;
    }
}

/* Desktop: Mobile-Zeile ausblenden */
@media (min-width: 501px) {
    .mobile-row {
        display: none;
    }
}

/* Toggle-Button */
.ni-theme-toggle-btn {
    all: unset;
    position: relative !important;
    width: 42px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10;
    transition: transform .2s ease;
}

/* Neon-Ring */
.ni-theme-toggle-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #39ff14;
    border-radius: 50%;
    box-sizing: border-box;
    z-index: 0;
}

.ni-theme-toggle-btn:hover::before {
    border-color: #2ecc10; /* dunkleres Neon-Grün */
	box-shadow: 0 0 8px #39ff14, 0 0 16px #39ff
}

/* Icon */
.ni-theme-toggle-icon {
    all: unset;
    font-family: "Phosphor";
    font-size: 26px;
    line-height: 1;
    display: inline-block;
    color: #39ff14 !important;
    position: relative;
    z-index: 1;
    transition: transform .2s ease, color .2s ease;
}

/* Hover: Ring + Icon */
.ni-theme-toggle-btn:hover {
    transform: scale(1.15);
}

.ni-theme-toggle-btn:hover .ni-theme-toggle-icon {
    color: #2ecc10 !important;
}

@keyframes cyberGlow {
    0%   { box-shadow: 0 0 8px #39ff14, 0 0 16px #39ff14; }
    33%  { box-shadow: 0 0 8px #00eaff, 0 0 16px #00eaff; }
    66%  { box-shadow: 0 0 8px #ff00ff, 0 0 16px #ff00ff; }
    100% { box-shadow: 0 0 8px #39ff14, 0 0 16px #39ff14; }
}

.ni-theme-toggle-btn::before {
    animation: cyberGlow 3s infinite linear;
}

/* Mobile: Ring ausblenden */
@media (max-width: 500px) {
    .ni-theme-toggle-btn::before {
        display: none !important;
		box-shadow: none !important;
        animation: none !important;
    }

    .ni-theme-toggle-btn {
        width: auto !important;
        height: auto !important;
        transform: none !important;
    }
}

/* Suchbutton komplett neutralisieren */
.ni-search-btn {
    all: unset;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 10px;

    /* leichter grauer Rahmen */
    border: 1px solid var(--bs-border-color); /*#666;*/

    /* Abrundung nur rechts */
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;

    /* Abstand zur Suchbox */
    margin-left: -1px; /* damit der Rahmen sauber anliegt */
    /*background: #000; /* passt zum schwarzen Header */
	/*background-color: rgba(var(--bs-secondary-bg-rgb));
	background-color: var(--bs-body-bg);*/
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    background-color: rgba(var(--bs-secondary-color));

}

/* Lupe – Neon-Grün */
.ni-search-icon {
    all: unset;
    font-family: "Phosphor";
    font-size: 22px;
    line-height: 1;
    display: inline-block;
    color: #39ff14 !important;
    opacity: 1 !important;
}

/* Hover – dunkleres Neon-Grün */
.ni-search-btn:hover .ni-search-icon {
    color: #2ecc10 !important;
    transform: scale(1.15);
}

//* Haupt Navigation */
/* Ausgangszustand: Navigation normal sichtbar */
#nav_container {
    position: relative;
	opacity: 0;
	transform: translateY(-100%);
    transition:
        transform .55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity .55s cubic-bezier(0.22, 1, 0.36, 1);	
    z-index: 99990;
}

/* Navigation rausfahren */
#nav_container.nav-hide {
    transform: translateY(-100%);
	opacity: 0;
}

/* Navigation reinfahren */
#nav_container.nav-show {
    position: fixed;
    top: 53px;
    left: 0;
    right: 0;
    transform: translateY(0);
	opacity: 1;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.65),
        rgba(0,0,0,0.08)
    );
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0,0,0,0.15);
    z-index: 99990;
}

:root[data-bs-theme="dark"] #nav_container.nav-animate {
    animation:
		navGlowDark 0.6s ease-out,
        navBounceDark 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

#nav_container.nav-animate {
    animation:
		navGlow 0.6s ease-out,
        navBounce 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

/* Glow */
@keyframes navGlow {
    0%   { box-shadow: 0 0 0 rgba(57,255,20,0); }
    40%  { box-shadow: 0 0 22px rgba(57,255,20,0.55); }
    100% { box-shadow: 0 0 0 rgba(57,255,20,0); }
}

/* Bounce */
@keyframes navBounceDark {
    0%   { transform: translateY(-140%); }
    55%  { transform: translateY(10px); }
    75%  { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}

@keyframes navBounce {
    0%   { transform: translateY(-120%); }
    60%  { transform: translateY(6px); }
    80%  { transform: translateY(-2px); }
    100% { transform: translateY(0); }
}

:root[data-bs-theme="dark"] #nav_container.nav-show {
    animation: navGlowDark 0.6s ease-out;
}

@keyframes navGlowDark {
    0% {
        box-shadow: 0 0 0 rgba(57,255,20,0);
    }
    40% {
        box-shadow: 0 0 22px rgba(57,255,20,0.65);
    }
    100% {
        box-shadow: 0 0 0 rgba(57,255,20,0);
    }
}

:root[data-bs-theme="dark"] #nav_container.nav-show {
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.08),
        rgba(0,0,0,0.35)
    );
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

:root[data-bs-theme="light"] #nav_container.nav-show {
    background-color: #ffffff !important;
}

:root[data-bs-theme="dark"] #nav_container.nav-show {
    background-color: #212529 !important;
}

#nav_container {
    background-color: var(--navigation-bag) !important;
}

#nav_container {
    position: relative;
    overflow: visible;
}

#navbar {
    min-height: 35px !important;
}

/* Bootstrap überschreibt sonst die Positionierung */
#nav_container .nav-item {
    position: static !important;
}

/* Deine Box (LI) – Bezugspunkt für die Linie */
#nav_container .navbox {
    position: relative !important;
    flex: 0 0 auto !important; /* NICHT strecken */
    width: auto !important;
}

#nav_container {
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.10),
        rgba(0,0,0,0.15)
    ) !important;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.3),
                inset 0 -2px 4px rgba(0,0,0,0.25);
}

/* Link korrekt in die Box zwingen */
#nav_container .navbox .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 12px !important;
    height: 35px !important;
    line-height: 35px !important;

    margin: 0 !important;
    position: relative !important;
    color: var(--navigation-color) !important;
    text-decoration: none;
}

/* Linie oben – sitzt an der Box */
#nav_container .navbox::after {
    content: "";
    position: absolute;
    top: -5px; /* Linie über der Box */
    left: 0;

    width: 100%;
    height: 4px; /* deine dickere Linie */
    background-color: var(--navigation-hover);

    border-radius: 4px; /* abgerundet */

    transform: scaleX(0);
    transform-origin: center;
    opacity: 0;

    transition: transform .3s ease, opacity .2s ease, box-shadow .3s ease;
}

/* Hover + Active */
#nav_container .navbox:hover::after,
#nav_container .navbox.active::after {
    transform: scaleX(1);
    opacity: 1;

    /* Glow-Effekt */
    /*box-shadow: 0 0 8px var(--navigation-hover);*/
	
	background: linear-gradient(90deg, var(--navigation-hover), #e52e71, var(--navigation-hover));
	box-shadow: 0 0 12px var(--navigation-hover);
}

/* Hover-Farbe für Text/Icon */
#nav_container .navbox:hover .nav-link,
#nav_container .navbox.active .nav-link {
    color: var(--navigation-hover) !important;
}

/* Bootstrap Dropdown-Pfeil wieder aktivieren */
#nav_container .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

#nav_container .navbox .nav-link {
    font-size: 17px !important;      /* vorher 16–18px → minimal größer */
    font-weight: 600 !important;     /* kräftiger, aber nicht fett */
    letter-spacing: 0.3px !important; /* wirkt hochwertiger */
}

#nav_container .navbox:hover .nav-link,
#nav_container .navbox.active .nav-link {
    font-size: 17px !important;     /* +1px → sichtbar */
    font-weight: 700 !important;    /* kräftiger */
    letter-spacing: 0.3px !important; /* edler */
    text-shadow: 0 0 2px var(--navigation-hover); /* Mini-Glow */
}

/*.nav-link {
	color: var(--box-sub) !important;
}*/

/*.navbar-nav .nav-link.active, .nav-link:hover {
	color: var(--box-sub-hover) !important;
}*/

/* Go To Top */
.go2top {
    background: linear-gradient(#000 15%, #38FF00 100%);
    background-color: #000; /* Basisfarbe, verhindert Durchscheinen */
    background-clip: padding-box; /* verhindert Transparenz nach außen */

    color: var(--bs-body-color);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;

    display: flex;
    justify-content: center;
    align-items: center;

    position: fixed;
    right: 15px;
    bottom: 15px;

    z-index: 20;
}

.go2top:hover {
    background: linear-gradient(#000 2%, #38FF00 100%);
    color: var(--bs-body-color);
    transform: scale(1.05);
}

.go2top-ring {
    position: fixed;

    /* 6px weiter nach rechts und unten */
    right: 9px;   /* 15px - 6px */
    bottom: 9px;  /* 15px - 6px */

    width: 60px;
    height: 60px;
    border-radius: 50%;

    background: conic-gradient(
        #00FF58 var(--progress),
        transparent 0deg
    );

    z-index: 10;
    pointer-events: none;
}

.go2top-mask {
    position: fixed;
    right: 15px;
    bottom: 15px;

    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;

    z-index: 15; /* zwischen Ring und Button */
    pointer-events: none;
}

.go2top,
.go2top-mask,
.go2top-ring {
    opacity: 0;
    transition: opacity .35s ease, transform .35s ease;
}

.go2top.visible,
.go2top-mask.visible,
.go2top-ring.visible {
    opacity: 1;
}

/* === ANIMATIONEN === */

/* Neon-Glow Flash + größerer Einstieg */
@keyframes miniNavGlowIntro {
    0%   { 
        transform: translateY(-140%);
        height: 72px; /* vorher 64px → jetzt größer */
        box-shadow: 0 0 0px rgba(57,255,20,0);
        opacity: 0;
    }
    30%  { 
        transform: translateY(0);
        height: 72px;
        box-shadow: 0 0 22px rgba(57,255,20,0.8);
        opacity: 1;
    }
    60%  { 
        height: 62px;
        box-shadow: 0 0 32px rgba(57,255,20,0.6);
    }
    100% { 
        height: 55px; /* neue Endhöhe */
        box-shadow: 0 0 0px rgba(57,255,20,0);
    }
}

/* Logo Drop-In (höher & größer) */
@keyframes miniLogoDrop {
    0%   { transform: translateY(-26px) scale(1.45); opacity: 0; }
    50%  { transform: translateY(-8px) scale(1.30); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes miniLogoGlow {
    0%   { filter: drop-shadow(0 0 0px #39ff14); }
    40%  { filter: drop-shadow(0 0 12px #39ff14); }
    70%  { filter: drop-shadow(0 0 20px #39ff14); }
    100% { filter: drop-shadow(0 0 0px #39ff14); }
}

/* Icons Slide-In (Basis) */
@keyframes miniIconStagger {
    0%   { transform: translateX(32px); opacity: 0; }
    60%  { transform: translateX(6px); opacity: 1; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes miniIconRotate {
    0%   { transform: translateX(32px) rotate(-25deg); opacity: 0; }
    60%  { transform: translateX(6px) rotate(-8deg); opacity: 1; }
    100% { transform: translateX(0) rotate(0deg); opacity: 1; }
}

/* ÄUSSERER CONTAINER */
.mini-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    height: 55px; /* Endhöhe */
	background: var(--mini-nav-bg);
	border-bottom: 1px solid var(--mini-nav-border);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transform: translateY(-100%);
    transition: opacity .25s ease, transform .25s ease;

    z-index: 99999;
    overflow: hidden; /* verhindert Springen */
}

/* Sichtbar + Glow + Slide-In */
.mini-nav.visible {
    opacity: 1;
    transform: translateY(0);
    animation: miniNavGlowIntro 0.6s ease-out forwards;
}

.mini-nav-limit {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.mini-left {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
}

.mini-logo {
    height: 45px;
    opacity: 0; /* wichtig für Animation */
}

.mini-nav.visible .mini-logo {
    animation:
        miniLogoDrop 0.55s ease-out forwards,
        miniLogoGlow 0.55s ease-out forwards;
}

.mini-right {
    flex: 0 0 auto;
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Icons Grundzustand */
.mini-right .mini-item {
    opacity: 0;
    color: var(--mini-nav-icon);
    font-size: 20px;
    transition: color .2s ease, transform .2s ease;
    text-decoration: none;
}

/* Hover */
.mini-item:hover {
    transform: scale(1.2);
    color: var(--mini-nav-icon-hover);
}

/* Icons Grundzustand */
.mini-right .mini-item {
    opacity: 0;
}

/* Stagger: 1–7 */
.mini-nav.visible .mini-right .mini-item:nth-child(1) {
    animation: miniIconRotate 0.55s ease-out forwards;
    animation-delay: 0.00s;
}

.mini-nav.visible .mini-right .mini-item:nth-child(2) {
    animation: miniIconRotate 0.55s ease-out forwards;
    animation-delay: 0.08s;
}

.mini-nav.visible .mini-right .mini-item:nth-child(3) {
    animation: miniIconRotate 0.55s ease-out forwards;
    animation-delay: 0.16s;
}

.mini-nav.visible .mini-right .mini-item:nth-child(4) {
    animation: miniIconRotate 0.55s ease-out forwards;
    animation-delay: 0.24s;
}

.mini-nav.visible .mini-right .mini-item:nth-child(5) {
    animation: miniIconRotate 0.55s ease-out forwards;
    animation-delay: 0.32s;
}

.mini-nav.visible .mini-right .mini-item:nth-child(6) {
    animation: miniIconRotate 0.55s ease-out forwards;
    animation-delay: 0.40s;
}

.mini-nav.visible .mini-right .mini-item:nth-child(7) {
    animation: miniIconRotate 0.55s ease-out forwards;
    animation-delay: 0.48s;
}

/* FOOTER – Grunddesign */
#layout_footer.footer-area {
    background-color: transparent !important;
}

.footer-area {
    position: relative;
}

.footer-area {
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.10),
        rgba(0,0,0,0.20)
    ) !important;

    color: var(--footer-color) !important;

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.35),
        inset 0 -2px 4px rgba(0,0,0,0.45),
        0 0 12px rgba(0,0,0,0.25);

    padding-top: 25px;
    padding-bottom: 15px;
}

.footer-area .footer-heading {
    border-bottom: 0 !important;
    position: relative;

    color: var(--footer-heading) !important;
    font-weight: 700;
    font-size: 1.15rem;

    padding-bottom: 6px;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
	text-shadow: 0 0 6px rgba(57,255,20,0.35); /* minimaler Neon-Schimmer */
}

/* Footer – dezenter Chrome-Glow-Streifen oben */
.footer-area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;

    background: linear-gradient(
        to right,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.45),
        rgba(255,255,255,0.25)
    );

    box-shadow:
        0 0 6px rgba(255,255,255,0.25),
        0 2px 4px rgba(0,0,0,0.35);

    pointer-events: none;
    z-index: 2;
}

.footer-area .footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;

    background: linear-gradient(
        to right,
        rgba(255,255,255,0.35),
        rgba(0,0,0,0.35)
    );

    box-shadow: 0 0 6px rgba(255,255,255,0.25);
}

.footer-area a {
    color: var(--footer-link) !important;
    text-decoration: none !important;
    transition: color .2s ease, text-shadow .2s ease;
}

.footer-area a:hover {
    text-shadow: 0 0 6px rgba(255,255,255,0.35);
}

/* Neon-Hover für alle Footer-Links in allen Boxen */
.footer-area .box-cont a,
.footer-area .box-info a,
.footer-area .box-misc a {
    color: var(--footer-link) !important;
    text-decoration: none !important;
    transition: text-shadow .25s ease, color .25s ease;
}

.footer-area .box-cont a:hover,
.footer-area .box-info a:hover,
.footer-area .box-misc a:hover {
    color: var(--footer-link) !important;
    text-shadow: 0 0 12px rgba(57,255,20,0.75);
}

/* Social Icons – Container */
.footer-area .content_box_social {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

/* Social Buttons */
.footer-area .content_box_social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    border-radius: 12px;
    background: rgba(57,255,20,0.10);
    border: 1px solid rgba(57,255,20,0.20);

    transition: background .3s ease, box-shadow .3s ease, transform .6s ease;
}

/* Icon selbst */
.footer-area .content_box_social a i {
    font-size: 26px;
    opacity: 0.75;
    transform-origin: center;

    /* Embossed Effekt */
    text-shadow:
        0 1px 1px rgba(255,255,255,0.6),   /* Licht oben */
        0 -1px 1px rgba(0,0,0,0.35);       /* Schatten unten */

    transition: opacity .4s ease, transform .8s ease-in-out;
}

/* Hover: drehen + vergrößern + Neon-Hintergrund */
.footer-area .content_box_social a:hover {
    background: rgba(57,255,20,0.25);
    box-shadow: 0 0 12px rgba(57,255,20,0.45);
    transform: scale(1.15);
}

.footer-area .content_box_social a:hover i {
    opacity: 1;
    transform: rotate(360deg) scale(1.15);
}

.footer-area .content_box_social .btn {
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.25);

    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.12),
        rgba(0,0,0,0.25)
    );

    color: var(--footer-color) !important;
    transition: all .25s ease;
}

.footer-area .content_box_social .btn:hover {
    background: rgba(255,255,255,0.20);
    box-shadow: 0 0 10px rgba(255,255,255,0.25);
    color: #000 !important;
}

:root[data-bs-theme="dark"] .footer-area .content_box_social a {
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.08),   /* leichter Lichtreflex oben */
        rgba(0,0,0,0.35)          /* dunkler Schatten unten */
    );
    border: 1px solid rgba(255,255,255,0.10);

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.15),  /* Licht oben */
        inset 0 -2px 3px rgba(0,0,0,0.45),        /* Schatten unten */
        0 1px 2px rgba(0,0,0,0.45);               /* äußere Tiefe */
}

/* Hover im Dark-Mode */
:root[data-bs-theme="dark"] .footer-area .content_box_social a:hover {
    background: rgba(57,255,20,0.25);
    box-shadow:
        0 0 14px rgba(57,255,20,0.55),
        inset 0 1px 2px rgba(255,255,255,0.15),
        inset 0 -2px 3px rgba(0,0,0,0.45);
}

:root[data-bs-theme="light"] .footer-area .content_box_social a {
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.65),
        rgba(0,0,0,0.08)
    );
    border: 1px solid rgba(0,0,0,0.15);

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.6),   /* Licht oben */
        inset 0 -2px 3px rgba(0,0,0,0.15),       /* Schatten unten */
        0 1px 2px rgba(0,0,0,0.10);              /* leichte Tiefe */
}

/* Hover im Light-Mode */
:root[data-bs-theme="light"] .footer-area .content_box_social a:hover {
    background: rgba(57,255,20,0.25);
    box-shadow:
        0 0 14px rgba(57,255,20,0.55),
        inset 0 1px 2px rgba(255,255,255,0.6),
        inset 0 -2px 3px rgba(0,0,0,0.15);
}

:root[data-bs-theme="dark"] .footer-payments span {
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.08),
        rgba(0,0,0,0.35)
    );
    padding: 8px 10px;
	border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.15),  /* Licht oben */
        inset 0 -2px 3px rgba(0,0,0,0.45),        /* Schatten unten */
        0 1px 2px rgba(0,0,0,0.45);               /* äußere Tiefe */
}

/* Dark-Mode Payment Buttons – Hover wie Social-Schalter */
:root[data-bs-theme="dark"] .footer-payments span:hover {
    background: rgba(57,255,20,0.25); /* Neon-Hintergrund */
    transform: scale(1.15);           /* Button wird größer */
    box-shadow:
        0 0 14px rgba(57,255,20,0.55), /* Neon-Glow */
        inset 0 1px 2px rgba(255,255,255,0.15),
        inset 0 -2px 3px rgba(0,0,0,0.45);
}

/* WICHTIG: Icon selbst NICHT mehr vergrößern */
.footer-payments img:hover {
    transform: none !important;
}

:root[data-bs-theme="light"] .footer-area .content_box_payment img {
    filter: brightness(0.95);
}

/* Payment-Container */
/* Neuer, sauberer Container */
.footer-payments {
    display: flex;
    flex-wrap: wrap;     /* bricht automatisch um */
    gap: 12px;            /* Abstand zwischen Icons */
    align-items: center;
}

/* Jedes Icon-Element */
.footer-payments span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Bilder */
.footer-payments img {
    height: 30px;              /* gleiche Höhe wie Social-Schalter */
    width: auto;               /* verhindert Verzerrung */
    filter: none !important;   /* entfernt grayscale */
    opacity: 1 !important;     /* volle Farbe */
    image-rendering: auto;
    transition: transform .25s ease, opacity .25s ease;
}

/* Hover */
.footer-payments img:hover {
	text-shadow:
        0 1px 1px rgba(255,255,255,0.25),
        0 -1px 1px rgba(0,0,0,0.45);
    transform: scale(1.10);
}

/* Light-Mode Payment Buttons – Chrome Look */
:root[data-bs-theme="light"] .footer-payments span {
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.65),   /* Licht oben */
        rgba(0,0,0,0.08)          /* Schatten unten */
    );
    padding: 8px 10px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 10px;

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.6),  /* innerer Lichtreflex */
        inset 0 -2px 3px rgba(0,0,0,0.15),      /* innerer Schatten */
        0 1px 2px rgba(0,0,0,0.10);             /* äußere Tiefe */

    transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}

/* Hover – exakt wie Social-Schalter */
:root[data-bs-theme="light"] .footer-payments span:hover {
    background: rgba(57,255,20,0.25); /* Neon-Hintergrund */
    transform: scale(1.15);           /* Button wird größer */
    box-shadow:
        0 0 14px rgba(57,255,20,0.55), /* Neon-Glow */
        inset 0 1px 2px rgba(255,255,255,0.6),
        inset 0 -2px 3px rgba(0,0,0,0.15);
}

/* Icon selbst NICHT vergrößern */
:root[data-bs-theme="light"] .footer-payments img:hover {
    transform: none !important;
}

/* Hover – leicht vergrößern */
.footer-area .content_box_payment img:hover {
    transform: scale(1.10);
}

/* Kontakt-Box Grundlayout */
/* Kontakt-Box Schriftfarbe fixieren – verhindert Bootstrap-Überschreibung */
.footer-area .box_kon,
.footer-area .box_kon * {
    color: var(--footer-color) !important;
}

.footer-area .box_kon {
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 500;
    line-height: 1.45;
    opacity: 0.95;
    transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}

/* Kontakt-Box Zeilen */
.footer-area .box_kon .kon-item {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.footer-area .box_kon .kon-item:last-child {
    margin-bottom: 0;
}

/* Kontakt-Box Links */
.footer-area .box_kon .kon-link {
    color: var(--footer-color);
    text-decoration: none;
}

/* Phosphor Icons – Grundlayout */
.footer-area .box_kon .kon-item i {
    font-size: 20px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease;
}

/* Mini-Hover für Icons */
.footer-area .box_kon .kon-item:hover i {
    transform: scale(1.15);
}

:root[data-bs-theme="light"] .footer-area .box_kon {
    background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(0,0,0,0.08));
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.6),
        inset 0 -2px 3px rgba(0,0,0,0.15),
        0 1px 2px rgba(0,0,0,0.10);
}

/* Light-Mode Icon Chrome-Effekt */
:root[data-bs-theme="light"] .footer-area .box_kon .kon-item i {
    color: var(--footer-color);
    text-shadow:
        0 1px 1px rgba(255,255,255,0.6),
        0 -1px 1px rgba(0,0,0,0.25);
}

/* Light-Mode Hover */
:root[data-bs-theme="light"] .footer-area .box_kon:hover {
    background: rgba(57,255,20,0.20);
    transform: scale(1.03);
    box-shadow:
        0 0 12px rgba(57,255,20,0.45),
        inset 0 1px 2px rgba(255,255,255,0.6),
        inset 0 -2px 3px rgba(0,0,0,0.15);
}

:root[data-bs-theme="dark"] .footer-area .box_kon {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.35));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.15),
        inset 0 -2px 3px rgba(0,0,0,0.45),
        0 1px 2px rgba(0,0,0,0.45);
}

/* Dark-Mode Icon Chrome-Effekt */
:root[data-bs-theme="dark"] .footer-area .box_kon .kon-item i {
    color: var(--footer-color);
    text-shadow:
        0 1px 1px rgba(255,255,255,0.25),
        0 -1px 1px rgba(0,0,0,0.55);
}

/* Dark-Mode Hover */
:root[data-bs-theme="dark"] .footer-area .box_kon:hover {
    background: rgba(57,255,20,0.18);
    transform: scale(1.03);
    box-shadow:
        0 0 12px rgba(57,255,20,0.55),
        inset 0 1px 2px rgba(255,255,255,0.15),
        inset 0 -2px 3px rgba(0,0,0,0.45);
}

/* Footer – Metallkante unten */
.footer-area::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;

    background: linear-gradient(
        to right,
        rgba(255,255,255,0.35),
        rgba(0,0,0,0.45),
        rgba(255,255,255,0.25)
    );

    box-shadow:
        0 -1px 2px rgba(0,0,0,0.4),
        0 1px 2px rgba(255,255,255,0.25);

    pointer-events: none;
}

/* Copyright – dezenter Glanz */
.footer-area .footer-copy {
    font-size: 0.75rem;
    font-weight: 600;

    color: var(--footer-color) !important;
    opacity: 0.6; /* blasser als normaler Text */

    text-shadow:
        0 0 1px rgba(255,255,255,0.2),
        0 1px 1px rgba(0,0,0,0.35),
        0 -1px 1px rgba(255,255,255,0.1);
}

.footer-area .footer-copy-link,
.copyright:hover a {
    color: var(--footer-link) !important;
    font-weight: 600;
}

.footer-area .mod_copyright {
    margin-top: 5px !important;   /* Abstand zu den Boxen */
    padding-bottom: 5px !important; /* Abstand zum unteren Rand */
}

.copyright {
	margin: -25px 0 0 0 !important;
	min-height: 20px !important;
}

.copyright, .copyright a {
    font-size: 0.75rem !important;
    font-weight: 600 !important;

    color: var(--footer-color) !important;
    opacity: 0.75 !important; /* blasser als normaler Text */

    text-shadow:
        0 0 1px rgba(255,255,255,0.2),
        0 1px 1px rgba(0,0,0,0.35),
        0 -1px 1px rgba(255,255,255,0.1) !important;
}

.cop_magenta {
	color: rgb(177, 52, 126) !important;
}

[data-bs-theme="dark"] .footer-area .content_box_social .btn:hover {
    color: #fff !important;
}

/* Footer */
/* .footer {
	background-color: var(--box-footer) !important;
}*/

/* Footer Überschrift wieder fett & sichtbar */
/* #layout_footer .box-heading {
    font-weight: 700 !important;
    font-size: 1.1rem;
    color: var(--box-sub-head) !important;
    border-bottom: 2px solid var(--box-sub-head) !important;
    padding-bottom: 6px;
    margin-bottom: 2px;
}*/

/*#layout_footer .mod_copyright {
    padding-bottom: 0px !important;
}*/

/* Copyright-Bereich */
/*.copyright {
  margin: -20px 0 0 0;
  min-height: 20px;
}*/

/* Text */
/*#layout_footer .footer-copy {
    font-size: 0.65rem;
	font-weight: 600;
    color: #1C7F00 !important;
    text-align: center;
}*/

/* Link – schlägt #layout_footer a */
/*#layout_footer .footer-copy-link {
    color: #1C7F00 !important;
    text-decoration: none !important;
    font-weight: 600;
}*/

.zoom-wrapper {
    display: inline-block;
    overflow: hidden;
    border-radius: 6px; /* optional, für runde Ecken */
}

.zoom-wrapper img {
    display: block;
}

.zoom-wrapper img {
    transition: transform .45s cubic-bezier(0.33, 1, 0.68, 1),
                filter .45s cubic-bezier(0.33, 1, 0.68, 1);
}

.zoom-wrapper img.zoom-hover:hover {
    transform: scale(1.25);
    filter: brightness(1.05) contrast(1.01);
}

li.withdraw_link .nav-link {
	font-weight: bold;
    color: #b30000 !important;
    border: 2px solid #b30000;
    padding: 6px 10px;
    border-radius: 4px;
    background-color: #ffe6e6;
	box-shadow: 0 0 6px rgba(204, 0, 0, 0.3);
	transition: background-color .6s cubic-bezier(.4,0,.2,1),
            color .6s cubic-bezier(.4,0,.2,1),
            border-color .6s cubic-bezier(.4,0,.2,1);
}

li.withdraw_link .nav-link:hover {
	background: #cc0000 !important;
    color: #ffffff !important;
}

/* Widerrufslink: Buttons */
.btn-primary {
    background-color: #e91e63;
    border-color: #e91e63;
}

.btn-primary:hover {
    background-color: #c2185b;
    border-color: #c2185b;
}

/* Rechte Sticky Navbar */
.right-sticky-nav {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 99998;
}

/* Buttons */
.right-sticky-nav .rsn-item {
    width: 46px;
    height: 46px;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.12),
        rgba(0,0,0,0.25)
    );

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px 0 0 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--navigation-hover);
    text-decoration: none;

    box-shadow: 0 0 6px rgba(0,0,0,0.25);

    transform: perspective(600px) rotateX(0deg);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    position: relative;
    overflow: hidden;
}

/* Hover – 3D-Kipp-Effekt */
/* Hover – Metall + dezenter Neon-Glow */
.right-sticky-nav .rsn-item:hover {
    transform: perspective(600px) rotateX(6deg) translateX(-6px);

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.30),
        rgba(255,255,255,0.12),
        rgba(0,0,0,0.25)
    );

    /* Metall + Neon-Grün Glow */
    box-shadow:
        inset 0 2px 4px rgba(255,255,255,0.35),
        inset 0 -3px 6px rgba(0,0,0,0.45),
        0 0 10px rgba(57,255,20,0.45),   /* Neon-Grün Glow */
        0 0 18px rgba(57,255,20,0.25);   /* weicher Außen-Glow */
}

/* Icons */
.right-sticky-nav i {
    font-size: 24px;
}

/* Nur Desktop sichtbar */
@media (max-width: 991px) {
    .right-sticky-nav {
        display: none;
    }
}