
/* 1. TYPOGRAFIE & EFFEKTE */
.gold-manufaktur {
    background: linear-gradient(to right, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* 2. LAYOUT & GRID (Basis) */
.row.no-gutters {
    display: flex;
    flex-wrap: wrap;
}

.manufaktur-intro-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* 3. KOMPONENTEN (Boxen & Cards) */
.process-box {
    border: 1px solid #eee;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    background: #fff;
}

.process-box:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.material-card {
    padding: 20px;
    transition: transform 0.3s ease;
}

.material-card:hover {
    transform: translateY(-10px);
}

/* 4. VISUELLE HILFEN (Schatten & Icons) */
.render-shadow {
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}

.manufaktur-cube {
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2));
    transition: transform 0.8s ease-in-out;
}

.manufaktur-cube:hover {
    transform: rotate(15deg);
}

/* 5. HELPER CLASSES */
.d-md-flex { display: flex !important; }
.justify-content-center { justify-content: center !important; }
.align-items-center { align-items: center !important; }
.text-center { text-align: center !important; }

.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.p-4 { padding: 1.5rem !important; }
.manufaktur-text-side { padding: 1rem !important; }

/* 6. RESPONSIVE DESIGN (Media Queries) */

/* Desktop ab 992px */
@media (min-width: 992px) {
    .d-md-block { display: block !important; }
}

/* Tablet & Handy bis 991px */
@media (max-width: 991px) {
    .d-none.d-md-block {
        display: none !important; /* Entfernt Würfel-Platzhalter */
    }
    .manufaktur-text-side {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 1.5rem !important;
        text-align: center;
    }
}

/* Speziell Handy bis 767px */
@media (max-width: 767px) {
    .d-none { display: none !important; }
    
    .material-labels {
        padding: 8px 5px !important;
        font-size: 0.6rem !important;
        letter-spacing: 1px !important;
    }
	.material-text-block {
        border-bottom: 1px solid #eee;
        padding-bottom: 1.5rem !important;
        margin-bottom: 1rem;
    }
    /* Die Linie beim letzten Element entfernen */
    .material-text-block:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
	
	
}
    .custom-input, .custom-select-3d { border-radius: 0 !important; border: 1px solid #ddd !important; padding: 12px !important; font-size: 0.9rem !important; height: auto !important; }
    .upload-slot { border: 2px dashed #d4af37; background: #fffaf0; height: 140px; display: flex; align-items: center; justify-content: center; cursor: pointer; text-align: center; transition: all 0.3s; position: relative; overflow: hidden; }
    .upload-slot:hover { background: #fdf2d0; border-style: solid; }
    .preview-area { color: #d4af37; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
    .preview-area img { width: 100%; height: 100%; object-fit: cover; position: absolute; top:0; left:0; z-index: 5; }
    .btn-manufaktur-send { width: 100%; background: #0f3f6c; color: #fff; border: none; padding: 18px; text-transform: uppercase; font-weight: 800; letter-spacing: 2px; cursor: pointer; }
    .btn-manufaktur-send:hover { background: #d4af37; color: #fff; }
    
    /* CSS Kamera Icon */
    .icon-camera-css { width: 30px; height: 20px; background: #d4af37; border-radius: 3px; position: relative; margin: 0 auto 10px; display: block; }
    .icon-camera-css::after { content: ''; position: absolute; top: -5px; left: 7px; width: 10px; height: 5px; background: #d4af37; border-radius: 2px 2px 0 0; }
    .icon-camera-css::before { content: ''; position: absolute; top: 3px; left: 8px; width: 10px; height: 10px; border: 2px solid #fffaf0; border-radius: 50%; }

    /* Spinner */
    .spinner-css { width: 18px; height: 18px; border: 3px solid rgba(255,255,255,.3); border-radius: 50%; border-top-color: #fff; animation: spin 1s linear infinite; display: inline-block; vertical-align: middle; margin-right: 10px; }
    @keyframes spin { to { transform: rotate(360deg); } }
 :root {
            --relfie: #0f3f6c;
            --relfie-light: #0f3f6ca8;
            --relfie-middle: #375b7e;
            --relfie-lighten: #cfd6dd;
            --gold: #b38728;
            --gold-light: #fcf6ba;
            --white: #ffffff;
            --dark-bg: #0a0e14;
            --shadow: rgba(0, 0, 0, 0.1);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Arial, sans-serif; line-height: 1.6; color: #333; background: #fff; scroll-behavior: smooth; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
        
        h1, h2, h3 { color: var(--relfie); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
        .gold-text { background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 900; }

        /* NAVIGATION */
        nav { background: var(--white); padding: 15px 0; border-bottom: 1px solid var(--relfie-lighten); position: sticky; top: 0; z-index: 1000; }
        .nav-content { display: flex; justify-content: space-between; align-items: center; }
        .logo-box { text-decoration: none; display: flex; align-items: center; }

        /* HERO - FIX FÜR BILD-SICHTBARKEIT */
        .hero { padding: 60px 0; background: linear-gradient(135deg, #fff 0%, var(--relfie-lighten) 100%); min-height: 500px; display: flex; align-items: center; }
        .hero-flex { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; width: 100%; }
        .hero-text { flex: 1; min-width: 320px; }
        .hero-img-container { flex: 1; min-width: 320px; display: flex; justify-content: center; align-items: center; }
        .hero-img-container img { 
            max-width: 100%; 
            height: auto; 
            display: block; 
            border: 12px solid #fff; 
            box-shadow: 0 15px 35px var(--shadow); 
            object-fit: contain; /* Stellt sicher, dass das Bild nicht beschnitten wird */
        }

        /* GALLERY & SECTIONS */
        .section-padding { padding: 80px 0; }
        .bg-light { background: #f9f9f9; }
        
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }
        .gallery-item { height: 280px; background: #eee; overflow: hidden; border: 1px solid #eee; }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .gallery-item:hover img { transform: scale(1.05); }

        .host-link { display: inline-flex; align-items: center; padding: 8px 18px; background: var(--relfie-lighten); color: var(--relfie); border-radius: 50px; text-decoration: none; font-size: 0.75rem; font-weight: 700; }

        /* MÜNZ-BLOCK */
        .coin-box { background: var(--dark-bg); color: #fff; padding: 80px 0; clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 98%); }
        .coin-flex { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }

        /* CTA */
        .cta-container { text-align: center; border: 2px solid var(--gold); padding: 60px 20px; background: #fffaf0; margin-top: 50px; }
        .btn-call { background: var(--relfie); color: #fff; padding: 18px 40px; text-decoration: none; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; display: inline-block; transition: 0.3s; }
        .btn-call:hover { background: var(--relfie-middle); transform: translateY(-3px); }

        /* FOOTER & RECHT */
        footer { background: #fff; padding: 60px 0 30px 0; border-top: 1px solid var(--relfie-lighten); }
        .legal-links { margin-top: 30px; display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; }
        .legal-links a { color: #666; text-decoration: none; font-size: 0.8rem; font-weight: 600; }
        .legal-links a:hover { color: var(--relfie); }

        #cookie-banner { position: fixed; bottom: 0; width: 100%; background: var(--relfie); color: #fff; padding: 15px; text-align: center; z-index: 2000; font-size: 0.85rem; }
        .btn-ok { background: var(--gold); border: none; color: #fff; padding: 5px 20px; margin-left: 15px; cursor: pointer; font-weight: bold; }

        @media (max-width: 768px) { 
            .hero-flex { flex-direction: column; text-align: center; } 
            .hero-img-container { order: -1; margin-bottom: 30px; }
        }
		
		/* Custom Grid für die Materialien */
.edition-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
}

.material-item {
    flex: 1;
    min-width: 250px; /* Erzeugt den Umbruch auf dem Handy */
    padding: 30px 20px;
    border-right: 1px solid #eee;
}

.material-item:last-child {
    border-right: none;
}

.material-item h4 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.material-item p {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* Responsiv: Auf dem Handy Rahmen unten statt rechts */
@media (max-width: 768px) {
    .material-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        flex: 0 0 100%;
    }
}
/* CONTAINER UND SCHIENE (BILD BLEIBT EXAKT IN SEINER ORIGINALGRÖSSE) */
.manufaktur-slider-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    font-family: Arial, sans-serif;
}

.manufaktur-schiene {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth; /* Absolut flüssiges Gleiten */
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.manufaktur-slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
}
.manufaktur-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* 📊 INDIKATOREN: Felsenfest flache Striche mit Abstand untendrunter */
.slider-balken-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.slider-balken-nav span {
    width: 35px !important;   /* Erzwingt die Breite eines Strichs */
    height: 5px !important;    /* Flache Höhe */
    background-color: #94a3b8 !important; /* Perfekt sichtbares Mittelgrau */
    border-radius: 2px !important;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.slider-balken-nav span.balken-active {
    background-color: #0f3f6c !important; /* Manufaktur-Blau */
}

/* 🏹 PFEILE: Schweben perfekt auf dem Bild */
.slider-pfeil {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    line-height: 38px;
    background: rgba(15, 63, 108, 0.6);
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.manufaktur-slider-wrap:hover .slider-pfeil { opacity: 0.8; }
.slider-pfeil:hover { background: rgba(15, 63, 108, 0.9) !important; opacity: 1 !important; }
.pfeil-links { left: 15px; }
.pfeil-rechts { right: 15px; }
/* =========================================================================
   🔥 EDLES BRANDING FÜR DEINE KATEGORIE-TABS (BÜSTE, TIER, TORSO)
   ========================================================================= */

/* Grund-Design für alle drei inaktiven Schalter */
.type-tab {
    background-color: #ffffff !important;
    color: #475569 !important; /* Angenehmes, dunkles Text-Grau */
    border: 1px solid #cbd5e1 !important;
    transition: all 0.25s ease-in-out !important;
}

/* Dezenter Hover-Effekt beim Drüberfahren mit der Maus */
.type-tab:hover {
    background-color: #f8fafc !important;
    color: #0f3f6c !important;
    border-color: #0f3f6c !important;
}

/* 💥 DER VOLLETREFFER: So leuchtet der aktive Tab im edlen Manufaktur-Blau! */
.type-tab.active {
    background-color: #0f3f6c !important; /* Tiefes Firmen-Blau */
    color: #ffffff !important;           /* Zwingt die Schrift felsenfest auf Weiß */
    border-color: #0f3f6c !important;
    box-shadow: 0 3px 8px rgba(15, 63, 108, 0.2) !important;
}

/* Die Google-Material-Icons im aktiven Zustand ebenfalls weiß färben */
.type-tab.active .material-icons {
    color: #ffffff !important;
}
