body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

/* Obere Reihe: Service-Navigation */
.top-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 0;
}
.top-bar .nav-link {
    color: #6c757d !important;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Untere Reihe: Produkt-Navigation */
.product-bar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.navbar-brand { 
    font-size: 1.5rem;
    color: #BE1E04 !important; 
}

/* Reiter-Optik (Modern Interpretation) */
.product-nav .nav-link {
    color: #333 !important;
    font-weight: 600;
    padding: 15px 20px !important;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}
.product-nav .nav-link:hover, 
.product-nav .nav-link.active {
    color: #BE1E04 !important;
    background-color: #f0f7ff;
    border-bottom: 3px solid #BE1E04;
}

/* Eigene Button-Farbe definieren */
.btn-primary {
    background-color: #BE1E04 !important;
    border-color: #BE1E04 !important;
}

.btn-primary:hover {
    background-color: #333 !important;
    border-color: #000 !important;
    color: #fff !important;
    transition: all 0.2s;
}

.btn-outline-primary {
    color: #BE1E04 !important;
    border-color: #BE1E04 !important;
}

.btn-outline-primary:hover {
    background-color: #BE1E04 !important;
    color: #fff !important;
}

/* Mobile Anpassung */
@media (max-width: 991px) {
    .product-nav .nav-link {
        border-bottom: none;
        padding: 10px 15px !important;
    }
    .top-bar { display: none; } /* Optional: Oben ausblenden auf Handy */
}

/* Produktdetails Styling */
.product-image-placeholder {
    min-height: 350px;
    border-radius: 10px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

/* Farbkacheln */
.color-card {
    border: none;
    background-color: #f8f9fa;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.color-swatch-box {
    padding: 10px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.2s;
}

.color-swatch-box:hover {
    transform: translateY(-3px);
}

.color-preview {
    height: 15px;
    width: 100%;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 8px;
}

/* Tabellen-Optik */
.specs-table thead {
    background-color: #f1f4f8;
}

/* Styling für die Startseiten-Kacheln */
.category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.category-card .btn {
    border-radius: 20px;
    font-weight: 600;
}

/* Zweizeiliges Text-Logo */
.logo-container {
    display: flex;
    flex-direction: column;
    line-height: 1;
    padding: 5px 0;
    text-decoration: none !important;
}

.logo-main {
    font-size: 1.7rem;
    font-weight: 400;
    color: #BE1E04; /* Das Rot aus deinem Logo */
    text-transform: nonne;
    letter-spacing: 0px;
    text-shadow: #aaa 1px 1px 2px;
}

.logo-sub {
    font-size: 1.0rem;
    font-weight: 400;
    color: #6c757d;
    letter-spacing: 1.5px;
    margin-top: 6px;
}

/* Hover-Effekt für das Logo */
.logo-container:hover .logo-main {
    color: #0056b3;
}