/* ==========================================================================
<D-R>  1. RADIKALER SCHRIFT-RESET (ALLES MUSS LESBAR SEIN)
   ========================================================================== */

/* Wir zwingen JEDES Textelement auf eine lesbare Größe */
html, body, 
p, span, div, li, td, th, a, 
label, input, select, textarea, button, 
.product-description, .detail-content, .text-small {
    font-size: 16px !important;    /* Mindestgröße für alles */
    line-height: 1.6 !important;   /* Sauberer Zeilenabstand */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important; /* System-Schrift = Beste Lesbarkeit */
    color: #222 !important;        /* Hoher Kontrast */
}

/* Ausnahmen: Überschriften müssen größer sein */
h1 { font-size: 28px !important; line-height: 1.4 !important; margin-bottom: 20px; }
h2 { font-size: 24px !important; line-height: 1.5 !important; border-bottom: 3px solid #ff8300; display: inline-block; padding-bottom: 5px; }
h3 { font-size: 20px !important; font-weight: bold !important; margin-top: 20px; }
h4, h5, h6 { font-size: 18px !important; font-weight: bold !important; }


/* ==========================================================================
   2. LAYOUT & BREITE (FINAL FIX: VOLLFLÄCHIG & OBEN OHNE LÜCKE)
   ========================================================================== */

/* Desktop: Standard (1600px) */
.container, .container-fluid, .wrapper, .content-wrapper, #main {
    max-width: 1600px !important;
    width: 96% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box;
}

/* Mobile Optimierung: ALLES RANDLOS & GANZ OBEN */
@media only screen and (max-width: 768px) {
    
    /* 1. Reset für HTML/BODY (Entfernt den weißen Balken ganz oben) */
    html, body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }

    /* 2. Den Abstand (mt-50) aus dem HTML neutralisieren */
    .mt-50, .mt-40, .mt-30 {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* 3. Container vollflächig machen (Kein Padding) */
    .container, .container-fluid, .wrapper, .content-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* 4. Grid-System anpassen: Rows & Cols randlos machen */
    /* Damit gehen die weißen Boxen bis an den Bildschirmrand */
    .row, .row-eq-height {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* 5. Bild-Container & Header-Bilder vollflächig */
    .image-container, .image-container img {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block;
    }

    /* Boxen-Styling mobil (Randlos) */
    /* Da wir das Padding in den Boxen selbst definiert haben, klebt der Text NICHT am Rand */
    .sidebar .widget, .panel, .box-content, .product-card, .detail-panel-wrapper {
        width: 100% !important;
        border-radius: 0 !important;    /* Ecken eckig, da randlos */
        border-left: none !important;   
        border-right: none !important;
        border-top: 1px solid #eee !important;
        border-bottom: 1px solid #eee !important;
        box-shadow: none !important;    /* Flacher Look mobil */
        margin-bottom: 0 !important;    /* Boxen stapeln sich nahtlos */
    }
}


/* ==========================================================================
   3. ELEMENTE MODERNISIEREN (BUTTONS & FELDER)
   ========================================================================== */

/* Eingabefelder: Groß und Sauber */
input[type="text"], input[type="email"], input[type="password"], textarea, select, .form-control {
    background: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    height: auto !important;
    min-height: 50px !important;    /* Touch-freundliche Höhe */
    padding: 10px 15px !important;
    width: 100% !important;         /* Immer volle Breite */
    box-shadow: none !important;
    box-sizing: border-box !important;
    margin-bottom: 15px !important;
}

input:focus, select:focus, textarea:focus {
    border-color: #ff8300 !important;
    outline: none !important;
}

/* Buttons: EvoDruck Orange */
button, input[type="submit"], .btn, .btn-primary, .action-button {
    background: #ff8300 !important;
    color: #fff !important;
    border: none !important;
    padding: 15px 20px !important;  /* Große Klickfläche */
    font-weight: bold !important;
    text-transform: uppercase;
    border-radius: 4px !important;
    width: 100%;                    /* Auf Handy: Volle Breite Button */
    max-width: 100%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (min-width: 769px) {
    /* Auf Desktop Buttons nicht riesig breit machen */
    button, input[type="submit"], .btn {
        width: auto !important;
        min-width: 200px;
    }
}

/* Dropdowns hübsch machen (SVG Farbe auf Orange angepasst) */
select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff8300' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px !important;
}



/* ==========================================================================
   4. TABELLEN & LISTEN (ENTZERREN)
   ========================================================================== */

table {
    width: 100% !important;
    background: #fff;
    margin-bottom: 20px;
    border-collapse: collapse;
}

th {
    background: #ff8300 !important;
    color: #fff !important;
    padding: 12px !important;
    text-align: left;
}

td {
    padding: 12px !important; /* Luft schaffen */
    border-bottom: 1px solid #eee;
}

/* Auf Handy Tabellen scrollbar machen statt quetschen */
@media (max-width: 768px) {
    .table-responsive, table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
}


/* ==========================================================================
   5. DEIN LOGO-PLATZHALTER (FIX)
   ========================================================================== */
img[src*="A_default.png"], img[src*="default.png"], img[src=""] {
    content: url('https://evodruck.de/reseller_files/350/1328/template/images/platzhalter.png') !important;
    display: block !important;
    margin: 0 auto 20px auto !important;
    width: 100% !important;
    height: 300px !important; /* Desktop Höhe */
    object-fit: contain !important;
    object-position: center center !important;
    padding: 30px !important;
    background: #fcfcfc !important;
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    img[src*="A_default.png"], img[src*="default.png"], img[src=""] {
        height: 200px !important; /* Auf Handy nicht so hoch */
        padding: 15px !important;
    }
}

/* ==========================================================================
   6. PRODUKT RASTER (MOBILE 1 SPALTE, DESKTOP GRID)
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr !important; /* Streng untereinander auf Handy */
        gap: 15px;
    }
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.product-img {
    background: #f9f9f9;
    height: 250px;
    display: flex; 
    align-items: center; 
    justify-content: center;
}
.product-img img { object-fit: cover; height: 100%; width: 100%; }

.product-details { padding: 20px; text-align: center; }


/* ==========================================================================
   7. FIXES FÜR ABGESCHNITTENE INHALTE
   ========================================================================== */
.detail-content, .box-content, form, fieldset, .product-details { 
    overflow: visible !important; 
}

/* Farbe anpassen (Klassennamen bleiben, Farbe ändert sich) */
.bg-magenta, .text-magneta { color: #ff8300 !important; background-color: transparent !important; }
.bg-magenta { background-color: #ff8300 !important; color: #fff !important; }


/* --- FARBEN & GRUNDEINSTELLUNGEN --- */
:root {
    --brand-color: #ff8300;       /* Dein neues Orange */
    --brand-hover: #cc6900;       /* Dunkleres Orange für Hover */
    --text-dark: #333333;
    --bg-white: #ffffff;
    --bg-light: #f9f9f9;
}

/* Wrapper für den Inhalt, damit er mittig bleibt */
.content-wrapper {
    width: 100%;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Buttons */
.btn-orange {
    display: inline-block;
    background-color: var(--brand-color);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-orange:hover {
    background-color: var(--brand-hover);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    border: 2px solid var(--brand-color);
    color: var(--brand-color);
    padding: 8px 15px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%; /* Volle Breite im Produkt */
    text-align: center;
}

.btn-outline:hover {
    background-color: var(--brand-color);
    color: #fff;
}

/* --- HERO SECTION (MODERN + LESBAR) --- */
.hero-section{
  position: relative;
  isolation: isolate;
  min-height: clamp(460px, 62vh, 820px);
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 80px) 18px;
  text-align: center;
  overflow: hidden;
  color: #fff !important;

  background-image:
    radial-gradient(1000px 500px at 20% 15%, rgba(255,255,255,.12), transparent 60%),
    radial-gradient(900px 450px at 80% 20%, rgba(0,170,255,.14), transparent 55%),
    linear-gradient(120deg, rgba(0,0,0,.62), rgba(0,0,0,.28)),
    url('https://evodruck.de/reseller_files/350/1328/template/images/slider.png');
  background-size: cover;
  background-position: center;
}

/* Overlay immer hinter dem Content */
.hero-section::after{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  z-index: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.48), transparent 58%),
    linear-gradient(to right, rgba(0,0,0,.22), transparent 35%, rgba(0,0,0,.22));
}

/* Falls du im HTML noch ein .hero-overlay hast */
.hero-section .hero-overlay{
  position:absolute;
  inset:0;
  z-index: 0 !important;
  background: transparent;
}

/* Content Box (Glass) */
.hero-content{
  position: relative;
  z-index: 2 !important;
  opacity: 1 !important;
  width: min(980px, 92vw);
  padding: clamp(18px, 3vw, 34px);
  border-radius: 22px;
  background: rgba(10, 10, 12, 0.52);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 60px rgba(0,0,0,.40);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* H1 größer */
.hero-content h1{
  margin: 0 0 14px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: none;

  /* war: clamp(2.1rem, 5vw, 3.7rem) */
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);

  color: #fff !important;
  opacity: 1 !important;
  text-shadow: 0 10px 28px rgba(0,0,0,.70);
}

/* Subline optional minimal kleiner, damit H1 dominiert */
.hero-content p{
  margin: 0 auto;
  max-width: 60ch;

  font-size: clamp(1.0rem, 1.55vw, 1.18rem);
  line-height: 1.6;

  color: rgba(255,255,255,.96) !important;
  opacity: 1 !important;
  text-shadow: 0 6px 18px rgba(0,0,0,.60);
}

/* Button komplett ausblenden (falls noch im HTML vorhanden) */
.btn-hero{
  display: none !important;
}

/* Desktop: leicht größer, aber gedeckelt */
@media (min-width: 1100px){
  .hero-section{
    min-height: clamp(540px, 68vh, 860px);
  }
}
/* --- USP BAR (VORTEILE) --- */
.usp-bar {
    background-color: var(--bg-white);
    padding: 25px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
}

.usp-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.usp-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 10px;
    border-right: 1px solid #eee;
}

.usp-item:last-child {
    border-right: none;
}

.usp-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: block;
}

.usp-title {
    color: var(--brand-color);
    font-weight: bold;
    display: block;
    margin-bottom: 3px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.usp-desc {
    font-size: 0.9rem;
    color: #666;
}

/* --- PRODUKT RASTER --- */
.products-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.section-headline {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.section-headline span {
    border-bottom: 3px solid var(--brand-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--brand-color);
}

.product-img {
    height: 180px;
    background-color: #eee;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-details {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.product-desc {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
    height: auto; /* Einheitliche Höhe für Text */
    overflow: hidden;
}

.product-price {
    display: block;
    color: var(--brand-color);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* --- SEO TEXT BLOCK --- */
.info-section {
    background-color: #fff;
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.info-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-content p {
    margin-bottom: 15px;
    color: #555;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .usp-item { border-right: none; border-bottom: 1px solid #eee; }
    .hero-content h1 { font-size: 2rem; }
}


/* ==========================================================================
   SIDEBAR & KATEGORIE-LINKS (Der "Coole" Teil)
   ========================================================================== */

/* 1. Der Kasten selbst (Weiß, Schatten, Runde Ecken) */
.sidebar .widget {
    background: #fff !important;
    border: none !important;
    border-radius: 12px !important; /* var(--card-radius) */
    box-shadow: 0 8px 20px rgba(0,0,0,0.06) !important; /* var(--card-shadow) */
    padding: 30px !important;
    margin-bottom: 30px !important;
}

/* 2. Die Überschrift (Orange Strich links) */
.sidebar .widget h3, 
.sidebar .widget-title {
    border-left: 5px solid #ff8300; /* var(--brand-color) */
    padding-left: 15px;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

/* 3. Die Links (Grundzustand) */
#cat-treeview ul li a {
    display: block;
    padding: 8px 12px;
    transition: all 0.2s ease;
    border-radius: 4px;
    color: #555;
    text-decoration: none;
}

/* 4. Der Hover-Effekt (Hintergrund + Ruck nach rechts) */
#cat-treeview ul li a:hover, 
#cat-treeview ul li.active > a {
    background: #fff5e6; /* Ganz helles Orange (statt Pink) */
    color: #ff8300 !important; /* var(--brand-color) */
    padding-left: 18px; /* Das ist der "Ruck" nach rechts */
    font-weight: 700;


}

/* ==========================================================================
   HEADER TOP BAR (Login / Registrieren Buttons)
   ========================================================================== */

/* 1. Die dunkle Leiste ganz oben */
.header-top-bar {
    background: #111 !important;      /* Dunkler Hintergrund */
    color: #fff !important;           /* Weiße Schrift */
    border-bottom: 3px solid #ff8300; /* Orange Strich unten */
    padding: 8px 0;                   /* Etwas Platz oben/unten */
}

/* 2. Damit die Buttons rechts stehen */
.header-top-bar .user {
    float: right;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

/* 3. Die runden Buttons (Style-Fix) */
.header-top-bar .user > li > a.btn {
    border-radius: 50px !important;       /* Macht sie rund (Pillen-Form) */
    border: 1px solid rgba(255,255,255,0.3) !important; /* Feiner Rahmen */
    background: rgba(255,255,255,0.1) !important;       /* Leicht durchsichtig */
    color: #fff !important;               /* Weiße Schrift */
    padding: 5px 20px !important;         /* Klein und kompakt */
    font-size: 13px !important;           /* Nicht zu groß */
    text-transform: uppercase;            /* GROSSBUCHSTABEN */
    font-weight: 600 !important;
    
    /* WICHTIG: Überschreibt die globalen Button-Regeln */
    width: auto !important;               
    min-width: auto !important;           
    margin-left: 10px;                    /* Abstand zwischen den Buttons */
    box-shadow: none !important;
}

/* 4. Hover-Effekt (Orange beim Drüberfahren) */
.header-top-bar .user > li > a.btn:hover {
    background: #ff8300 !important;       /* Wird Orange */
    border-color: #ff8300 !important;
    color: #fff !important;
}

/* 5. Mobile Anpassung: Buttons zentrieren */
@media (max-width: 768px) {
    .header-top-bar .user {
        float: none;
        justify-content: center;
        width: 100%;
        margin-top: 5px;
    }
}


/* ==========================================================================
   MODERNE KATEGORIE-BESCHREIBUNG (Intro-Text: Strich Oben & Volle Breite)
   ========================================================================== */

.product-description.mb-20 {
    background: #ffffff !important;        /* Weißer Hintergrund */
    padding: 30px !important;              /* Schön viel Platz innen */
    
    /* FIX 1: Strich OBEN statt links */
    border-top: 5px solid #ff8300 !important; 
    border-left: none !important;          /* Alten Strich entfernen */
    border-right: none !important;
    border-bottom: none !important;

    /* Design: Oben eckig (am Strich), unten leicht abgerundet */
    border-radius: 0 0 8px 8px !important; 
    
    /* FIX 2: Volle Breite erzwingen */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;     /* Damit Padding nicht die Breite sprengt */
    
    /* Schatten & Optik */
    box-shadow: 0 5px 20px rgba(0,0,0,0.08) !important;
    margin-bottom: 40px !important;        /* Abstand nach unten */
    
    /* Text-Style */
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: #444 !important;
    font-weight: 500 !important;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .product-description.mb-20 {
        padding: 20px !important;
        font-size: 15px !important;
    }
}



/* }}} Sicherheits-Klammern, falls oben was offen war */

/* ==========================================================================
   DETAILSEITE NOTFALL-FIX (MUSS FUNKTIONIEREN)
   ========================================================================== */

/* 1. Bild ausblenden (Egal wo es steckt) */
body .detail-content .product-item-2,
body .detail-content .center-img-2,
body .detail-content .row-eq-height > .col-md-6:first-child {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* 2. Text auf volle Breite zwingen */
body .detail-content .row-eq-height > .col-md-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    float: none !important;
    padding: 0 !important;
}

body .detail-content .row-eq-height > .col-md-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    float: none !important;
    padding: 8px !important;
box-shadow: 0 4px 10px rgba(0,0,0,0.10),
            0 1px 3px  rgba(0,0,0,0.04) !important;


}

/* 3. Den weißen Kasten stylen */
/* 3. Den weißen Kasten stylen (PREMIUM SHADOW BOX LOOK) */
body .detail-content {
    padding: 5px !important;          /* Viel Platz für edlen Look */
    
    /* Der "Shadow Box" Effekt - Mehr Tiefe */
   /* box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 5px 15px rgba(0,0,0,0.05) !important; */
    
    /* Feine Umrandung + Runde Ecken überall */
    border: 1px solid rgba(0,0,0,0.02) !important;
    
    
    margin-bottom: 40px !important;
    display: block !important;
    position: relative !important;
}

/* Optional: Die Überschrift innen noch etwas schicker machen */
body .detail-content h1 {
    font-size: 32px !important;       /* Größer */
    font-weight: 800 !important;      /* Fetter */
    color: #222 !important;
    margin-top: 0 !important;
    border-bottom: 2px solid #f0f0f0 !important;
    padding-bottom: 25px !important;
    margin-bottom: 30px !important;
    letter-spacing: -0.5px !important;
}

/* 4. Überschrift Styling */
body .detail-content h1 {
    margin-top: 0 !important;
    border-bottom: 1px solid #eee !important;
    padding-bottom: 20px !important;
    margin-bottom: 25px !important;
}


/* ==========================================================================
   PREIS-BOX (Dark Mode Style)
   ========================================================================== */

.detail-panel-wrapper.detail-panel-wrapper-5 {
    background: #2c3e50 !important;       /* Dunkles Blau-Grau als Hintergrund */
    color: #fff !important;               /* Weiße Schrift */
    border: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important; /* Etwas stärkerer Schatten */
}

/* Die Überschrift in der Box */
.detail-panel-wrapper.detail-panel-wrapper-5 h3 {
    color: #fff !important;
    border-left-color: #fff !important;    /* Weißer Akzent-Strich links */
}

/* Texte und Listenpunkte heller machen */
.detail-panel-wrapper.detail-panel-wrapper-5 li, 
.detail-panel-wrapper.detail-panel-wrapper-5 p,
.detail-panel-wrapper.detail-panel-wrapper-5 span {
    color: #e0e0e0 !important;             /* Helles Grau für gute Lesbarkeit */
}

/* Der Gesamtpreis (Das Highlight) */
#gesamtpreis_brutto {
    color: #ff8300 !important;             /* Dein Marken-Orange */
    font-size: 24px !important;            /* Schön groß */
    font-weight: 800 !important;
    text-shadow: 0 0 20px rgba(255, 131, 0, 0.4); /* Leichter Leucht-Effekt (angepasstes RGB) */
    margin-top: 5px;
}

/* Trennlinien in der Box */
.detail-panel-wrapper.detail-panel-wrapper-5 hr {
    border-top: 1px solid rgba(255,255,255,0.1) !important;
}


.pt-80 {
    padding-top: 0;
}




/* FIX: Produkt-Titel darf NICHT aus der Box laufen */
.product-card .product-title,
.product-card .product-title a,
.product-card h3,
.product-card h4,
.product-item .product-title,
.product-item .product-title a,
.product-item h3,
.product-item h4,
.product-item-2 .product-title,
.product-item-2 .product-title a,
.product-item-2 h3,
.product-item-2 h4 {
  display: block;
  max-width: 100%;
  white-space: normal !important;     /* wichtig: überschreibt nowrap */
  overflow-wrap: anywhere;            /* bricht notfalls auch harte Stellen */
  word-break: break-word;
  hyphens: auto;
}

/* falls der Titel in flex/grid “nicht schrumpfen” darf */
.product-card,
.product-card .product-details,
.product-item,
.product-item-2 {
  min-width: 0;
}
/* Button (weißer Kasten) kleiner + 5px Abstand rechts */
.navbar-toggler{
  width: 28px;
  height: 28px;
  right: 5px;        /* statt 0 */
  top: 30px;

  margin: 0;
  padding: 0;
  border: none;
  background: transparent !important;
  position: absolute;

  float: none;       /* float raus, stört bei absolute */
  box-sizing: border-box;
}

/* Die Striche: nicht am Rand kleben + sauber zentriert */
.navbar-toggler .menu-global{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;               /* weniger als 100% = Abstand zum Kastenrand */
  border-top: 3px solid #ff8300; /* Angepasst auf neue Farbe (Orange) */
  transition: 0.55s;
}
.navbar-toggler .menu-top    { top: 7px; }
.navbar-toggler .menu-middle { top: 13px; }
.navbar-toggler .menu-bottom { top: 19px; }
@media (max-width: 991px){

  /* Wichtig: irgendein Header-Wrapper muss "position:relative" sein,
      damit absolute rechts/oben korrekt funktioniert.
      (die Selektoren decken meist alles ab) */
  header, .header, .header-area, .header-main, .header-wrapper, .content-wrapper{
    position: relative;
  }

  /* Header/Search-Paddings weg, sonst verschiebt es alles */
  .header-search,
  .search-wrapper .header-search{
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Search-Block rechts positionieren (links neben Menü) */
  .header-search{
    position: absolute !important;
    top: 30px !important;
    right: calc(5px + 28px + 10px) !important; /* 5px rechts + Menübox + 10px Abstand */
    z-index: 9999;
  }

  /* Inner darf nix mehr zentrieren */
  .header-search-inner{
    position: static !important;
    display: block !important;
  }

  /* Search-Button: gleiche Box wie Toggler */
  .header-search-inner button.search-toggle{
    width: 28px !important;
    height: 28px !important;
    padding: 0 !important;

    display: grid !important;
    place-items: center !important;

    background: #fff !important;       /* orange kill */
    border: 0 !important;
    border-radius: 6px !important;
    box-shadow: 0 6px 16px rgba(0,0,0,.12) !important;

    color: #ff8300 !important;         /* Icon-Farbe passend */
    line-height: 1 !important;
  }

  /* Icon (falls FontAwesome o.ä.) */
  .header-search-inner button.search-toggle i,
  .header-search-inner button.search-toggle svg{
    font-size: 16px !important;
    line-height: 1 !important;
    display: block !important;
  }

  /* Menü-Toggler (falls noch nicht) */
  .navbar-toggler{
    width: 28px !important;
    height: 28px !important;
    right: 5px !important;
    top: 30px !important;

    background: #fff !important;
    border-radius: 6px !important;
    box-shadow: 0 6px 16px rgba(0,0,0,.12) !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
    .logo img {
        width: 100px;
    }
}
@media (max-width: 767px) {
    .logo img {
        width: 200px;
    }
}
.img-responsive {
    display: block;
    max-width: 80%;
    height: auto;
}




/* =============================
<D-R>  1. STARTSEITE
   ================================ */
/* --- GLOBAL RESET & VARIABLES --- */
html {
    scroll-behavior: smooth !important; /* Sorgt für das sanfte Gleiten zu den Ankern */
}

:root {
    /* Neue Helle Farbpalette mit Corporate Orange #ff8300 */
    --bg-main: #f9fafb; /* Helles Grau/Weiß statt Schwarz */
    --bg-card: #ffffff;
    --text-main: #1f2937; /* Dunkles Grau für Text */
    --text-muted: #6b7280;
    --accent: #ff8300; /* DEIN ORANGE */
    --accent-glow: rgba(255, 131, 0, 0.25); /* Glow angepasst auf Orange RGB */
    --border: rgba(0, 0, 0, 0.08); /* Zarte Ränder für hellen Hintergrund */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* SUPER-SPEZIFISCHER WRAPPER */
/* "html body" davor erzwingt Vorrang vor deinem globalen Reset */
html body .v25-wrapper {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    font-size: 16px; /* Basisgröße zurücksetzen */
}

/* === DER SCHUTZSCHILD: Neutralisiert den globalen Reset === */
/* Zwingt ALLE Elemente im Wrapper auf meine Schriftart & entfernt globalen Zwang */
html body .v25-wrapper *,
html body .v25-wrapper *::before,
html body .v25-wrapper *::after {
    box-sizing: border-box;
    font-family: var(--font-body) !important; /* Überschreibt System-Font Zwang */
    line-height: 1.5 !important;              /* Überschreibt 1.6 Zwang */
    /* HIER WICHTIG: Keine feste font-size setzen, sonst verlieren h1/h2 ihre Größe.
       Wir setzen font-size nur da, wo wir sie brauchen (siehe unten). */
}

.v25-wrapper a { text-decoration: none; color: inherit; }

html body .v25-container {
    max-width: 1600px !important; /* !important um Container-Reset zu überschreiben */
    width: 100% !important;       
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* --- HERO SECTION --- */
html body .v25-hero {
    position: relative;
    padding: 120px 0 100px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fff; /* Hero explizit weiß für Clean Look */
}

/* Subtiler Glow im Hintergrund in Orange */
html body .v25-bg-glow {
    position: absolute;
    top: -30%; right: -10%;
    width: 80%; height: 90%;
    background: radial-gradient(circle, rgba(255, 131, 0, 0.25) 0%, transparent 65%);
    filter: blur(80px);
    z-index: 0;
}

html body .v25-hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
    gap: 80px;
}

html body .v25-hero-content { 
    max-width: 900px; /* VERGRÖSSERT: Mehr Platz für den Text */
    width: 100% !important; /* Sicherstellen, dass er nicht überläuft */
}

/* NEUES MARKEN-BADGE (EVODRUCK) */
/* Integriert statt Button-Look */
html body .v25-wrapper .v25-status-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 15px !important;
    background: transparent !important; /* Kein Hintergrund mehr */
    border: none !important;            /* Kein Rahmen mehr */
    padding: 0 !important;
    margin-bottom: 20px !important;
    
    font-size: 20px !important;         /* Größer und deutlicher */
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: var(--text-main) !important; /* Dunkelgrau für den Namen */
}

/* Der Punkt wird zum Akzent-Strich */
html body .v25-wrapper .v25-dot { 
    width: 40px !important; 
    height: 4px !important; 
    background: var(--accent) !important; 
    border-radius: 2px !important; 
    box-shadow: none !important;
}

/* HERO TITEL - HÄRTERES OVERRIDE */
html body .v25-wrapper .v25-glitch-title {
    font-family: var(--font-head) !important;
    /* Anpassung für Mobile: Kleinerer Minimalwert (34px) damit 'Druckqualität' passt */
    font-size: clamp(34px, 7vw, 112px) !important; 
    line-height: 1.1 !important;
    font-weight: 700 !important;
    margin: 0 0 24px !important;
    letter-spacing: -1px !important; /* Weniger Spacing auf Mobile */
    color: #111 !important;
    /* WICHTIG: Zwingt lange Wörter zum Umbruch, falls sie immer noch zu breit sind */
    overflow-wrap: break-word !important; 
    word-break: break-word !important;
    hyphens: auto !important;
}

/* FIX FÜR SPAN: Muss explizit erben, sonst greift der globale span-Reset */
html body .v25-wrapper .v25-gradient-text {
    /* Gradient angepasst auf Orange -> helleres Gelb-Orange */
    background: linear-gradient(90deg, var(--accent), #ffad33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: inherit !important; /* Zwingt den Span, die H1-Größe zu nutzen */
    font-weight: inherit !important;
    line-height: inherit !important;
    /* white-space: nowrap !important; ENTFERNT, da es auf Mobile Probleme macht */
    display: inline-block !important; /* Damit Gradient funktioniert, aber Umbruch möglich ist */
}

/* HERO TEXT - HÄRTERES OVERRIDE */
html body .v25-wrapper .v25-lead {
    font-size: 22px !important; 
    color: var(--text-muted) !important;
    margin-bottom: 40px !important;
    line-height: 1.6 !important;
    max-width: 600px !important;
}

.v25-cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

/* BUTTON "Produkte entdecken" - Garantiert weiße Schrift */
html body .v25-wrapper .v25-btn-main {
    background: var(--accent) !important;
    color: #ffffff !important; /* Explizit Weiß */
    padding: 16px 32px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 25px -5px rgba(255, 131, 0, 0.4); /* Schatten angepasst */
    font-size: 18px !important;
    width: auto !important;
    border: none !important;
    text-decoration: none !important; /* Kein Unterstrich bei Links */
}

/* Hover-Effekt für den Button */
.v25-btn-main:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 30px -5px rgba(255, 131, 0, 0.5); 
    color: #ffffff !important; /* Bleibt beim Hover weiß */
}

html body .v25-wrapper .v25-rating { font-size: 16px !important; color: var(--text-muted) !important; font-weight: 500; }
.v25-stars { color: #fbbf24; display: inline-block; margin-right: 5px; }

/* Hero Visual Animation */
.v25-hero-visual { flex: 1; display: flex; justify-content: center; }

.v25-card-stack { position: relative; width: 400px; height: 500px; }

.v25-card-layer {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.l1 { background: #e5e7eb; transform: rotate(-10deg) translate(-20px, 10px); z-index: 1; }
.l2 { background: #d1d5db; transform: rotate(-5deg) translate(-10px, 5px); z-index: 2; }
.l3 { 
    background: #fff; 
    transform: rotate(0); 
    z-index: 3; 
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
}

.l3 img { width: 100%; height: 100%; object-fit: cover; }

.v25-glass-overlay {
    position: absolute;
    bottom: 20px; left: 20px; right: 20px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    color: #111;
}

/* --- USP BAR --- */
.v25-usp-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #fff;
    padding: 30px 0;
}

.v25-usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.v25-usp-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

html body .v25-icon-circle {
    width: 50px; height: 50px;
    background: rgba(255, 131, 0, 0.1); /* Hellorange Hintergrund */
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px !important; 
}

html body .v25-usp-item strong { display: block; font-size: 16px !important; color: #111; margin: 0 !important; }
html body .v25-usp-item span { font-size: 14px !important; color: var(--text-muted); }

/* --- BENTO GRID --- */
html body .v25-section { padding: 100px 0; }
.v25-section-head { margin-bottom: 60px; }

html body .v25-wrapper .v25-section-head h2 { 
    font-family: var(--font-head) !important; 
    font-size: 48px !important; 
    margin: 0 0 10px !important; 
    color: #111 !important;
    border: none !important;
    padding: 0 !important;
}
html body .v25-section-head p { color: var(--text-muted); font-size: 19px !important; }

.v25-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px; 
}

.v25-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: 0.4s ease;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

.v25-card:hover { 
    border-color: var(--accent); 
    transform: translateY(-5px); 
    box-shadow: 0 20px 40px rgba(255, 131, 0, 0.15); 
}

.v25-card-image { height: 250px; overflow: hidden; background: #f3f4f6; } 
.v25-card-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.v25-card:hover .v25-card-image img { transform: scale(1.05); }

.v25-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.v25-cat-tag {
    background: var(--accent);
    color: #fff;
    font-size: 11px !important;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 10px;
}

html body .v25-wrapper .v25-card h3 { 
    font-family: var(--font-head) !important; 
    font-size: 22px !important; 
    margin: 0 0 8px !important; 
    color: #111 !important; 
} 
html body .v25-wrapper .v25-card p { font-size: 14px !important; color: var(--text-muted) !important; margin: 0 0 20px !important; }

.v25-card-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.v25-price-tag { font-family: var(--font-head) !important; font-weight: 700; font-size: 18px !important; color: var(--accent); }

.v25-arrow-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex; align-items: center; justify-content: center;
    color: #111;
    transition: 0.3s;
}

/* === CLICKABLE CARD FIX === */
/* Erzeugt eine unsichtbare Fläche über der gesamten Karte */
.v25-arrow-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.v25-card:hover .v25-arrow-btn { background: var(--accent); color: #fff; }

/* --- INFO STATEMENT --- */
html body .v25-info-block {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid var(--border);
}

.v25-info-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

html body .v25-wrapper .v25-headline-lg {
    font-family: var(--font-head) !important;
    font-size: 64px !important;
    line-height: 1;
    margin: 0;
    color: #111;
    border: none !important;
}

html body .v25-info-text { display: flex; flex-direction: column; gap: 20px; font-size: 18px !important; }
.v25-text-muted { color: var(--text-muted); }
.v25-link-underline {
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 4px;
    font-weight: 600;
    color: #111;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .v25-bento-grid { grid-template-columns: repeat(2, 1fr); }
    
    .v25-hero-flex { flex-direction: column; text-align: center; gap: 40px; }
    .v25-hero-content { margin-bottom: 50px; }
    .v25-cta-wrapper { justify-content: center; }
    .v25-info-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    /* WICHTIG: Mehr Padding auf Mobile, damit Text nicht am Rand klebt */
    html body .v25-container {
        padding: 0 30px !important; /* Erhöht von 20px auf 30px */
    }

    .v25-bento-grid { grid-template-columns: 1fr; }
    
    /* Schriftgrößen angepasst, damit sie auf schmalen Screens nicht "platzen" */
    html body .v25-wrapper .v25-glitch-title { 
        font-size: 42px !important; /* Etwas kleiner für Mobile */
    }
    
    html body .v25-wrapper .v25-headline-lg { font-size: 36px !important; }
}


