        .basketDivClosed{
            display:none !important;
        }
        /* Layout-Basis beibehalten */
        .outerContentWrapper { width:80%; margin:0 auto; }
        .innerContentWrapper { width:70%; margin:0 auto; }
        @media (max-width: 1000px){
        .outerContentWrapper{ width:90%; }
        .innerContentWrapper{ width:92%; }
        }

        /* Basis Anpassungen */
        .rc-custom-hero {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://shop.recarved.de/src/content/pics/uhrAufMotor.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            border-radius: 8px;
            margin-bottom: 40px;
        }
        .rc-custom-hero h1 { font-size: 2rem; margin-bottom: 10px; color: #fff; }
        .rc-custom-hero p { font-size: 1.1rem; opacity: 0.9; max-width: 700px; margin: 0 auto; }

        /* Marketing Galerie (Grid) */
        .rc-showcase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 60px;
        }
        .rc-showcase-card {
            background: #1e1e1e; /* Dunkler Hintergrund passend zum Shop */
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: transform 0.2s;
        }
        .rc-showcase-card:hover { transform: translateY(-3px); }
        .rc-showcase-card img { width: 100%; height: 200px; object-fit: cover; }
        .rc-showcase-text { padding: 15px; color: #fff; }
        .rc-showcase-text h4 { margin: 0 0 5px 0; color: #B34700; }
        .rc-showcase-text p { font-size: 0.9rem; margin: 0; color: #ccc; }

        /* Konfigurator Formular Style */
        .rc-configurator {
            background: #151515;
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #333;
            color: #fff;
        }
        .rc-step-title {
            font-size: 1.2rem;
            color: #B34700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid #333;
            padding-bottom: 10px;
        }

        /* Marken Auswahl (Gamification) */
        .brand-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* Mobile: 2 Spalten */
            gap: 15px;
            margin-bottom: 30px;
        }
        @media(min-width: 768px) {
            .brand-grid { grid-template-columns: repeat(5, 1fr); } /* Desktop: 5 Spalten */
        }

        .brand-option input { display: none; }
        .brand-option label {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #252525;
            border: 2px solid #333;
            border-radius: 8px;
            padding: 15px;
            cursor: pointer;
            height: 100px;
            transition: all 0.2s;
        }
        .brand-option label img { width: 40px; height: 40px; margin-bottom: 10px; filter: grayscale(100%); opacity: 0.7; }
        .brand-option label span { font-size: 0.9rem; font-weight: bold; }
        
        /* Active State */
        .brand-option input:checked + label {
            border-color: #B34700;
            background: #2a201c;
        }
        .brand-option input:checked + label img { filter: grayscale(0%); opacity: 1; }
        .brand-option:hover label { border-color: #555; }

        /* Inputs */
        .input-row { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        @media(min-width: 768px) { .input-row { grid-template-columns: 1fr 1fr; } }
        
        .rc-input-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: #ccc; }
        .rc-input-group input, .rc-input-group textarea {
            width: 100%;
            padding: 12px;
            background: #222;
            border: 1px solid #444;
            color: #fff;
            border-radius: 4px;
            box-sizing: border-box; /* Wichtig für Padding */
        }
        .rc-input-group input:focus { outline: none; border-color: #B34700; }

        /* Upload Button Styled */
        .file-upload-box {
            border: 2px dashed #444;
            padding: 20px;
            text-align: center;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .file-upload-box:hover { border-color: #B34700; background: #1a1a1a; }
        
        .btn-submit {
            width: 100%;
            padding: 15px;
            background: #B34700;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
        }
        .btn-submit:hover { background: #d65a0b; }