/* ========================================================
   1. GENERELLE EINSTELLUNGEN
   ======================================================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    /* KORREKTUR: Sorgt dafÃ¼r, dass der Seiteninhalt um die HÃ¶he der Leiste nach unten rutscht */
    padding-top: 60px; 
    font-family: Arial, sans-serif;
    background-color: #fcfcfc;
    color: #2c3e50;
    overflow-x: hidden;
}


/* ========================================================
   2. NAVIGATION â€“ EPOXYRESINER BRANDING
   ======================================================== */

/* KORREKTUR: Der alte .navbar-Block wurde entfernt, da .main-nav jetzt die Fixierung Ã¼bernimmt */

.main-nav {
    background-color: #000000;
    padding: 15px 0;
    width: 100%;
    
    /* KORREKTUR: Hier wird das gesamte MenÃ¼ am oberen Rand fixiert */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 985px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 15px;
}

.nav-link {
    color: #ff7700 !important;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 14px;
    padding: 9px 13px;
    border-radius: 4px;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-link:hover {
    background-color: #ff7700 !important;
    color: #000000 !important;
}

.nav-link.active {
    background-color: #FF7700 !important;
    color: #000000 !important;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid #ff7700;
    color: #ff7700;
    font-size: 25px;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
}

/* ========================================================
   3. UNIVERSAL-BANNER / SLIDER
   ======================================================== */

.universal-banner-container {
    position: relative;
    width: 100%;
    max-width: 985px;
    height: 400px;
    margin: 30px auto !important;
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.slider-wrapper {
    position: relative;
    width: 100% !important;
    height: 100% !important;
}

.universal-banner-container .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.2s ease-in-out;
}

.universal-banner-container .slide.active {
    opacity: 1;
    z-index: 2;
}
/* ========================================================
   STARTSEITEN-SLIDER – PFEILE
   ======================================================== */

.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff7700 !important;
    color: #000000 !important;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}

.arrow-btn:hover,
.arrow-btn:focus,
.arrow-btn:active {
    background: #ff7700 !important;
    color: #000000 !important;
}

.arrow-btn:hover {
    transform: translateY(-50%) scale(1.05);
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}


/* ========================================================
   4. FOOTER – EPOXYRESINER BRANDING
   ======================================================== */

footer {
    background-color: #000000;
    color: #ffffff;
    padding: 25px 0;
    margin-top: 50px;
    text-align: center;
    width: 100%;
}
.footer-container {
    max-width: 985px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-text {
    color: #ffffff;
    margin: 0 0 12px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ff7700;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: none;
}


/* ========================================================
   5. HAUPTBEREICH
   ======================================================== */

main {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

main p {
    min-height: 55px;
    margin-bottom: 40px !important;
}

/* ========================================================
   6. MOBILE NAVIGATION / HAMBURGER-MENÃœ
   ======================================================== */

@media (max-width: 768px) {

    body {
        padding-top: 65px; 
    }

    .main-nav {
        /* LÃ–SUNG FÃœR TRANSPARENZ & GLAS: Direkt auf dem Element angewendet */
        background-color: rgba(0, 0, 0, 0.85) !important; /* Zu 85% deckend schwarz, 15% durchsichtig */
        backdrop-filter: blur(8px) !important;            /* Der Glaseffekt fÃ¼r moderne Browser */
        -webkit-backdrop-filter: blur(8px) !important;    /* Speziell fÃ¼r iPhones / Safari */
        
        padding: 10px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    .menu-toggle {
        display: block;
        margin: 0; 
        position: relative;
        z-index: 1005; /* Stellt sicher, dass der Button immer ganz oben liegt */
    }

    .nav-container {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 10px 0 0 0;
        gap: 4px;
    }

    /* HOCHFORMAT */
    .nav-container.menu-open {
        display: flex;
        max-height: 65vh;                  
        overflow-y: auto;                  
        -webkit-overflow-scrolling: touch; 
        padding-bottom: 15px;              
    }

    .nav-link {
        display: block;        
        flex-shrink: 0;        
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 11px 10px;
    }
}

/* QUERFORMAT-REPARATUR: Wenn das Handy flach gehalten wird */
@media (max-width: 768px) and (orientation: landscape) {
    
    .nav-container.menu-open {
        display: flex !important;
        flex-direction: row !important;       /* Links nebeneinander im Querformat */
        flex-wrap: wrap !important;           /* Zeilenumbruch falls nÃ¶tig */
        justify-content: center !important;   /* Mittig anordnen */
        max-height: 55vh !important;          /* Begrenzt HÃ¶he, damit man den Inhalt darunter sieht */
        overflow-y: auto !important;          /* Aktiviert Scrollen, falls im Querformat doch der Platz knapp wird */
    }

    .nav-link {
        width: auto !important;               /* Breite flexibel statt 100% */
        display: inline-block !important;     
        padding: 8px 12px !important;         /* Kompakter fÃ¼r flache Bildschirme */
    }
}

/* QUERFORMAT-REPARATUR: Wenn das Handy flach gehalten wird */
@media (max-width: 768px) and (orientation: landscape) {
    
    .main-nav {
        background-color: transparent !important; /* Macht den Hauptblock durchsichtig */
        position: fixed;
    }

    /* REPARATUR FÃœR DEN GLASEFFEKT: Erzeugt eine eigene Glasschicht */
    .main-nav::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.75) !important; /* Auf 0.75 gesenkt (deutlich sichtbarer!) */
        backdrop-filter: blur(8px) !important;            /* HÃ¶herer Weichzeichner (8px statt 5px) */
        -webkit-backdrop-filter: blur(8px) !important;    /* Safari-Handy-UnterstÃ¼tzung */
        z-index: 1;
    }

    .nav-container.menu-open {
        position: relative;
        z-index: 2; /* Schiebt die Links vor die Glasschicht */
        flex-direction: row !important;       
        flex-wrap: wrap !important;           
        justify-content: center !important;   
        max-height: 55vh !important;          
    }

    .nav-link {
        width: auto !important;               
        display: inline-block !important;     
        padding: 8px 12px !important;         
        position: relative;
        z-index: 3;
    }
}

/* QUERFORMAT-REPARATUR: Wenn das Handy flach gehalten wird */
/* HIER WAR DER FEHLER: Das darf nicht IN der max-width-Klammer stehen, sondern direkt dahinter! */
@media (max-width: 768px) and (orientation: landscape) {
    
    .main-nav {
        background-color: rgba(0, 0, 0, 0.85) !important; /* Elegant transparent */
        backdrop-filter: blur(5px);                        /* Schicker Weichzeichner im Hintergrund */
        -webkit-backdrop-filter: blur(5px);                /* UnterstÃ¼tzung fÃ¼r iPhones/Safari */
    }

    .nav-container.menu-open {
        flex-direction: row !important;       /* Links wieder nebeneinander anordnen */
        flex-wrap: wrap !important;           /* Umbrechen, falls eine Zeile voll ist */
        justify-content: center !important;   /* Mittig ausrichten */
        max-height: 50vh !important;          /* Etwas flacher fÃ¼rs Querformat */
    }

    .nav-link {
        width: auto !important;               /* Breite flexibel machen */
        display: inline-block !important;     
        padding: 8px 12px !important;         /* Kompakteres Design fÃ¼rs Querformat */
    }
}

/* ========================================================
   7. RESPONSIVER 985 × 400 BANNER
   ======================================================== */

@media (max-width: 985px) {

    .universal-banner-container {
        width: calc(100% - 20px) !important;
        max-width: 985px;
        height: auto !important;
        aspect-ratio: 985 / 400;
        margin: 15px 10px !important;
    }

    .slider-wrapper {
        width: 100% !important;
        height: 100% !important;
    }

    .universal-banner-container .slide {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    main p {
        min-height: auto;
    }
}


/* ========================================================
   8. AUSVERKAUFT-OVERLAY FÜR PRODUKTBILDER
   ======================================================== */

.mein-produkt-wrapper {
    position: relative !important;
}

.mein-produkt-wrapper img,
.mini-slider-wrapper .mini-slide {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    display: block !important;
}

.mein-produkt-wrapper .ausverkauft-stempel {
    display: none !important;
}

.mein-produkt-wrapper.sold-out .ausverkauft-stempel {
    display: block !important;
    position: absolute !important;
    top: 100px !important;
    left: 50% !important;
    transform: translate(-50%, -50%) rotate(-8deg) !important;
    z-index: 99 !important;
    color: #dc3545 !important;
    font-family: 'Arial Black', 'Impact', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    border: 4px solid #dc3545 !important;
    border-radius: 6px !important;
    padding: 5px 12px !important;
    background-color: rgba(255,255,255,0.95) !important;
    max-width: 85% !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    user-select: none !important;
}

.mein-produkt-wrapper.sold-out a {
    background: #bdc3c7 !important;
    color: #7f8c8d !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
    font-size: 0 !important;
}

.mein-produkt-wrapper.sold-out a::before {
    content: "Ausverkauft" !important;
    font-size: 14px !important;
    font-weight: bold !important;
    display: block !important;
}
/* ========================================================
   9. MINI-PRODUKT-SLIDER (Variante 2: Von unten hoch)
   ======================================================== */
.mini-slider-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #ffffff;
}

.mini-slider-wrapper .mini-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease-in-out;
}

.mini-slider-wrapper .mini-slide.active {
    opacity: 1;
    z-index: 2;
}

.mini-arrow {
    position: absolute;
    top: 50%;
    background: rgba(255,255,255,0.85);
    color: #34495e;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);

    /* Startzustand: Unsichtbar und ein gutes Stück weiter unten */
    opacity: 0;
    visibility: hidden;
    transform: translateY(0%); /* Startet tiefer im Vergleich zur Zielmitte (-50%) */

    /* Steuert das weiche Hochgleiten */
    transition: background 0.3s, color 0.3s, opacity 0.3s ease, visibility 0.3s, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mini-arrow-left {
    left: 8px;
}

.mini-arrow-right {
    right: 8px;
}

/* ZIELZUSTAND BEIM HOVERN: Sichtbar machen und hoch auf die echte Mitte (-50%) ziehen */
.mini-slider-wrapper.has-multiple-slides:hover .mini-arrow {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
}

/* Wenn man den Pfeil direkt mit der Maus berührt: Leicht vergrößern */
.mini-arrow:hover {
    background: #ff7700 !important;
    color: #000000 !important;
    transform: translateY(-50%) scale(1.1) !important;
}

/* ========================================================
   10. LIGHTBOX-GROSSANSICHT – DESKTOP
   EPOXYRESINER ORANGE / SCHWARZ
   ======================================================== */

.shop-lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.82);
    z-index: 999999 !important;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: auto;
}

.shop-lightbox-overlay.lightbox-aktiv {
    display: flex;
}

.shop-lightbox-rahmen {
    display: flex;
    flex-direction: column;
    width: auto;
    max-width: 628px;
    background-color: #000000 !important;
    padding: 12px;
    border: 3px solid #ff7700;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.55);
    margin: 0 auto;
    z-index: 1000000 !important;
}

.shop-lightbox-grossbild {
    width: 600px !important;
    height: 400px !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
    background-color: #ffffff !important;
    border: 1px solid #ff7700;
    border-radius: 5px;
}

.shop-lightbox-textbereich {
    width: 100% !important;
    max-width: 600px;
    color: #ffffff !important;
    font-family: Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-align: center !important;
    padding: 10px 15px 5px 15px !important;
    user-select: none !important;
    font-weight: normal !important;
    overflow-wrap: break-word;
}

.shop-lightbox-steuerung {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    height: 40px;
    padding: 10px 5px 0 5px;
    background-color: #000000 !important;
}

.shop-lightbox-links-block {
    display: flex;
    align-items: center;
    gap: 14px;
}

.shop-lightbox-pfeil,
.shop-lightbox-play {
    background: transparent;
    color: #ff7700 !important;
    border: none;
    font-size: 18px !important;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s, transform 0.1s;
    padding: 0 4px;
    line-height: 1;
}

.shop-lightbox-pfeil:hover,
.shop-lightbox-play:hover {
    color: #ffffff !important;
    transform: scale(1.15);
}

.shop-lightbox-play {
    font-size: 15px !important;
    margin-right: 4px;
}

.shop-lightbox-nummer {
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 11px;
    user-select: none;
    margin-left: 5px;
}

.shop-lightbox-schliessen {
    color: #ff7700 !important;
    font-size: 20px !important;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s, transform 0.1s;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.shop-lightbox-schliessen:hover {
    color: #ffffff !important;
    transform: scale(1.15);
}


/* ========================================================
   11. KONTAKTFORMULAR
   ======================================================== */

.kontakt-wrapper {
    max-width: 600px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #ff7700;
    font-family: Arial, sans-serif;
}

.kontakt-heading {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: Arial, sans-serif;
}

.kontakt-wrapper > p {
    min-height: auto !important;
    margin-bottom: 20px !important;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 14px;
    color: #333333;
    text-align: left;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #333333;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #ff7700;
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    text-align: left;
}

.checkbox-group input {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 13px;
    color: #555555;
    line-height: 1.4;
    font-weight: normal;
}

.checkbox-group a {
    color: #ff7700;
    text-decoration: underline;
}

.submit-btn {
    background-color: #ff7700;
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.2s;
}

.submit-btn:hover {
    background-color: #e06600;
}


/* ========================================================
   12. SMARTPHONE-ANPASSUNGEN
   ======================================================== */

@media (max-width: 600px) {

    /* Kontaktformular – bewährte Feinjustierung */

    .kontakt-wrapper {
        width: calc(100% - 20px);
        margin: 25px 10px;
        padding: 20px 15px;
        transform: translateX(-4px);
    }

    .kontakt-heading {
        font-size: 20px;
    }


    /* Sliderpfeile auf dem Handy komplett ausblenden */

    .arrow-btn {
        display: none !important;
    }


    /* ====================================================
       LIGHTBOX MOBIL
       Nur hier gelten die Smartphone-Werte!
       ==================================================== */

    .shop-lightbox-overlay {
        padding: 10px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    .shop-lightbox-rahmen {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 10px 5px 10px !important;
        margin: 0 auto !important;
        transform: translateX(-4px);
        box-sizing: border-box !important;
    }

    .shop-lightbox-grossbild {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 60vh !important;
        aspect-ratio: 3 / 2;
        object-fit: contain !important;
        box-sizing: border-box !important;
    }

    .shop-lightbox-textbereich {
        width: 100% !important;
        max-width: 100% !important;
        padding: 8px 6px 4px 6px !important;
        box-sizing: border-box !important;
        overflow-wrap: anywhere !important;
    }

    .shop-lightbox-steuerung {
        width: 100% !important;
        max-width: 100% !important;
        height: 36px !important;
        padding: 7px 2px 0 2px !important;
        box-sizing: border-box !important;
    }

    .shop-lightbox-links-block {
        gap: 9px !important;
    }

    .shop-lightbox-pfeil,
    .shop-lightbox-play {
        font-size: 16px !important;
    }

    .shop-lightbox-schliessen {
        font-size: 18px !important;
    }


    /* Kompakter Footer */

    footer {
        padding: 15px 5px;
        margin-top: 30px;
    }

    .footer-content,
    .footer-container {
        padding: 0 5px;
    }

    .footer-text {
        font-size: 10px;
        margin: 0 0 10px 0;
        white-space: nowrap;
    }

    .footer-links {
        gap: 8px 12px;
        margin-bottom: 0;
    }

    .footer-links a {
        font-size: 10px;
    }
}


/* ========================================================
   13. SLIDERPFEILE NUR BEI MAUSKONTAKT
   ======================================================== */

@media (min-width: 769px) {

    .universal-banner-container .arrow-btn {
        opacity: 0;
        visibility: hidden;
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.2s ease;
    }

    .universal-banner-container:hover .arrow-btn {
        opacity: 1;
        visibility: visible;
    }
}


/* Auf Handy und Tablet bleiben die Pfeile sichtbar */

@media (max-width: 768px) {

    .universal-banner-container .arrow-btn {
        opacity: 1;
        visibility: visible;
    }
}


/* ========================================================
   14. FOOTER-LINKS – KEINE UNTERSTREICHUNG
   ======================================================== */

.site-footer .footer-links a,
.site-footer .footer-links a:visited,
.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus,
.site-footer .footer-links a:active {
    text-decoration: none !important;
}


/* ========================================================
   15. HORIZONTALES VERSCHIEBEN VERHINDERN
   ======================================================== */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 600px) {

    body,
    main,
    .main-nav,
    .nav-container,
    .universal-banner-container,
    .kontakt-wrapper,
    .site-footer,
    .footer-content,
    .shop-lightbox-overlay,
    .shop-lightbox-rahmen {
        max-width: 100% !important;
    }

    img,
    input,
    textarea,
    select,
    button {
        max-width: 100%;
    }
}
/* ========================================================
   LIGHTBOX – HANDY QUERFORMAT
   ======================================================== */

@media (max-height: 500px) and (orientation: landscape) {

    .shop-lightbox-overlay {
        align-items: flex-start !important;
        overflow-y: auto !important;
        padding: 5px 10px !important;
    }

    .shop-lightbox-rahmen {
        width: auto !important;
        max-width: calc(100vw - 20px) !important;
        margin: 0 auto !important;
        padding: 5px !important;
        transform: none !important;
    }

    .shop-lightbox-grossbild {
        width: auto !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 65vh !important;
        aspect-ratio: auto !important;
        object-fit: contain !important;
    }

    .shop-lightbox-textbereich {
        padding: 4px 6px 2px 6px !important;
        font-size: 12px !important;
        line-height: 1.3 !important;
    }

    .shop-lightbox-steuerung {
        height: 32px !important;
        padding: 3px 3px 0 3px !important;
    }
}
/* ========================================================
   LIGHTBOX – EPOXYRESINER FARBDESIGN
   NUR FARBEN – KEINE TECHNIK!
   ======================================================== */

/* Orange Box mit schwarzem Rahmen */
.shop-lightbox-rahmen {
    background-color: #ff7700 !important;
    border-color: #000000 !important;
}

/* Beschreibungstext schwarz */
.shop-lightbox-textbereich {
    color: #000000 !important;
}


/* Untere Navigationsleiste orange */
.shop-lightbox-steuerung {
    background-color: #ff7700 !important;
}

/* Pfeile und Play-Symbol schwarz */
.shop-lightbox-pfeil,
.shop-lightbox-play {
    color: #000000 !important;
}

/* Bildnummer 1/3 schwarz */
.shop-lightbox-nummer {
    color: #000000 !important;
}

/* Schließen-Kreuz schwarz */
.shop-lightbox-schliessen {
    color: #000000 !important;
}

/* Beim Überfahren am Laptop weiß */
.shop-lightbox-pfeil:hover,
.shop-lightbox-play:hover,
.shop-lightbox-schliessen:hover {
    color: #ffffff !important;
}
/* Erweitert: Sperrt Klicks und Maus-Reaktionen für ausverkaufte Slider komplett */
.mein-produkt-wrapper.sold-out .mini-slider-wrapper {
    pointer-events: none !important; /* Blockiert jeden Klick und Hover-Effekt */
    cursor: default !important;      /* Zeigt nur den ganz normalen Mauszeiger */
}
/* ========================================================
   10. KATEGORIE-BUTTONS STARTSEITE (EPOXYRESINER BRANDING)
   ======================================================== */

.kat-button {
    display: block !important;
    padding: 12px !important;
    background-color: #000000 !important;
    color: #ff7700 !important;
    border: 2px solid #ff7700 !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    font-weight: bold !important;
    font-size: 14px !important;
    text-align: center !important;
    transition: background-color 0.25s ease, color 0.25s ease !important;
}

/* Hover-Effekt (Maus drüber) & Aktiv-Zustand (Klick) */
.kat-button:hover,
.kat-button:active,
.kat-button:focus {
    background-color: #ff7700 !important;
    color: #000000 !important;
}
/* ========================================================
   11. BANNER-PFEILE HOVER-EFFEKT (EPOXYRESINER)
   ======================================================== */
.universal-banner-container .arrow-btn {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

/* Wenn die Maus über den Banner fährt, werden die Pfeile sichtbar */
.universal-banner-container:hover .arrow-btn {
    opacity: 1;
}
/* ========================================================
   12. BANNER-TEXT OVERLAY (EPOXYRESINER BRANDING)
   ======================================================== */
.slide-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.75); /* Edles, transparentes Schwarz */
    color: #ff7700; /* Orangefarbene Schrift passend zum Logo */
    padding: 8px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    border-left: 4px solid #ff7700; /* Eleganter orangefarbener Akzentbalken links */
    z-index: 5;
    pointer-events: none; /* Maus klickt durch den Text hindurch auf die Pfeile */
    font-family: Arial, sans-serif;
    
    /* Animation: Text blendet sich sanft mit dem Bild ein */
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

/* Der Text wird nur sichtbar, wenn das dazugehörige Bild aktiv ist */
.slide.active .slide-text {
    opacity: 1;
}

/* Mobil-Optimierung: Auf Handys wird die Schrift etwas kompakter, damit es nicht stört */
@media (max-width: 768px) {
    .slide-text {
        bottom: 10px;
        left: 10px;
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* ========================================================
   EPOXYRESINER-SYMMETRIE: STARRE TEXTHÃ–HE (URZUSTAND)
   ======================================================== */
.mein-produkt-wrapper p {
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Setzt die normale Farbe für den Korb auf dein EpoxyResiner-Orange */
.nav-link.cart-btn {
    color: #ff7700 !important;
}

/* Garantiert, dass die Schrift beim Hovern perfekt schwarz wird */
.nav-link.cart-btn:hover {
    color: #000000 !important;
}




