/*
Theme Name:	Divi Child
Theme URI:	http://www.elegantthemes.com/gallery/divi/
Description: Divi Child Theme - SYROX Clean Code
Author: Diar Khidr
Template: Divi
Version: 2.0.0
*/

/* ============================================================================ */
/* 1. ALLGEMEINE BASIS-STYLES */
/* ============================================================================ */

/* CSS Reset & Global Styles */
html {
    -webkit-text-size-adjust: 100% !important;
    -ms-text-size-adjust: 100% !important;
    font-size: 16px !important;
}

body {
    min-width: 320px !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

* {
    box-sizing: border-box !important;
}

/* Container System */
.syrox-container,
.footer-container,
.katalog-hero-container,
.katalog-cta-container,
.katalog-info-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
}

.impressum-typo

p {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

/* Colors */
:root {
    --primary-red: #E30018;
    --primary-red-dark: #C00015;
    --dark-gray: #1A1A1A;
    --medium-gray: #666;
    --light-gray: #E8E8E8;
    --off-white: #F8F8F8;
    --white: #ffffff;
}

/* ============================================================================ */
/* 2. HEADER & NAVIGATION CSS */
/* ============================================================================ */

/* 2.1 Desktop Header/Navigation */
.syrox-header {
    background-color: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100% !important;
}

.syrox-header.scrolled {
    background-color: rgba(26, 26, 26, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
}

.syrox-header-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1rem 0 !important;
    position: relative !important;
    width: 100% !important;
}

/* Logo */
.syrox-logo {
    display: flex !important;
    align-items: center !important;
    z-index: 10001 !important;
    flex-shrink: 0 !important;
}

.syrox-logo a {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    transition: transform 0.3s ease !important;
}

.syrox-logo a:hover {
    transform: scale(1.02) !important;
}

.syrox-logo-img {
    height: 50px !important;
    width: auto !important;
    transition: all 0.3s ease !important;
    max-width: none !important;
}

/* Desktop Navigation */
.syrox-nav {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

.syrox-menu {
    display: flex !important;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 2.5rem !important;
    align-items: center !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

.syrox-menu-item {
    position: relative !important;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.syrox-menu-item::before,
.syrox-menu-item::after {
    display: none !important;
    content: none !important;
}

.syrox-menu-link {
    color: #ffffff !important;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    padding: 0.5rem 0 !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
}

.syrox-menu-link::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background-color: var(--primary-red) !important;
    transition: width 0.3s ease !important;
}

.syrox-menu-link:hover::after,
.syrox-active .syrox-menu-link::after {
    width: 100% !important;
}

.syrox-menu-link:hover,
.syrox-active .syrox-menu-link {
    color: #ffffff !important;
}

/* CTA Button - Last Menu Item */
.syrox-menu-item:last-child .syrox-menu-link {
    background-color: var(--primary-red) !important;
    color: #ffffff !important;
    padding: 0.75rem 2rem !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(227, 0, 24, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.syrox-menu-item:last-child .syrox-menu-link::after {
    display: none !important;
}

.syrox-menu-item:last-child .syrox-menu-link:hover {
    background-color: var(--primary-red-dark) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(227, 0, 24, 0.4) !important;
}

/* 2.2 Mobile Header/Navigation */
.syrox-mobile-toggle {
    display: none !important;
    flex-direction: column !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0.5rem !important;
    gap: 4px !important;
    z-index: 10001 !important;
}

.syrox-hamburger {
    width: 25px !important;
    height: 3px !important;
    background-color: #ffffff !important;
    transition: all 0.3s ease !important;
    border-radius: 2px !important;
}

.syrox-toggle-active .syrox-hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
}

.syrox-toggle-active .syrox-hamburger:nth-child(2) {
    opacity: 0 !important;
}

.syrox-toggle-active .syrox-hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
}

/* Mobile Menu Overlay */
@media (max-width: 768px) {
    .syrox-mobile-toggle {
        display: flex !important;
    }
    
    .syrox-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(44, 44, 44, 0.98) 100%) !important;
        backdrop-filter: blur(15px) !important;
        transform: translateX(-100%) !important;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        padding: 0 !important;
        overflow-y: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .syrox-nav.syrox-mobile-open {
        transform: translateX(0) !important;
    }
    
    .syrox-menu {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 300px !important;
    }
    
    .syrox-menu-item {
        width: 100% !important;
        text-align: center !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        margin: 0 !important;
        display: block !important;
    }
    
    .syrox-menu-item:last-child {
        border-bottom: none !important;
        margin-top: 2rem !important;
    }
    
    .syrox-menu-link {
        padding: 1.5rem 2rem !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }
    
    .syrox-menu-link::after {
        display: none !important;
    }
    
    .syrox-menu-item:last-child .syrox-menu-link {
        background-color: var(--primary-red) !important;
        border-radius: 8px !important;
        margin: 0 auto !important;
        width: 200px !important;
        text-align: center !important;
        box-shadow: 0 6px 20px rgba(227, 0, 24, 0.4) !important;
    }
}

/* Body scroll lock */
.syrox-menu-open {
    overflow: hidden !important;
}

/* ============================================================================ */
/* 3. FOOTER CSS */
/* ============================================================================ */

.syrox-footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-right: 40px;
    margin-bottom: 30px;
}

.footer-col-main {
    flex: 2;
    min-width: 350px;
}

.footer-col:last-child {
    margin-right: 0;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-col p {
    color: #999999;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-btn {
    display: inline-block;
    background-color: #2C2C2C;
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    text-decoration: none !important;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.footer-btn:hover {
    background-color: #3a3a3a;
    transform: translateY(-1px);
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.footer-col h4 a {
    color: var(--white) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-col h4 a:hover {
    color: var(--primary-red) !important;
}

.footer-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-list li {
    margin-bottom: 12px;
    list-style: none !important;
    color: #999999;
    font-size: 0.95rem;
}

.footer-list li::before {
    display: none !important;
}

.footer-list a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    color: #666666;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #FF1A2E;
}

/* ============================================================================ */
/* 4. KATALOG-SEITE CSS - MINIMALISTISCHER FILTER */
/* ============================================================================ */

/* 4.1 Desktop Filter CSS - Minimal & Clean */
.syrox-products-container {
    padding: 60px 0;
    background-color: var(--off-white);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.products-layout {
    display: flex;
    gap: 2rem;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.filter-sidebar {
    width: 250px;
    flex-shrink: 0;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    box-sizing: border-box;
    border: 1px solid #e8e8e8;
}

.filter-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8e8e8;
}

.filter-header h3 {
    margin: 0;
    color: var(--dark-gray);
    font-size: 1.2rem;
    font-weight: 600;
}

.filter-section {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1rem;
}

.filter-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

.filter-title:hover {
    color: var(--primary-red);
}

.collapse-toggle {
    background: transparent;
    color: var(--medium-gray);
    width: 24px;
    height: 24px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.collapse-toggle:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.filter-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.filter-content.open {
    max-height: 300px;
}

.filter-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.6rem 0;
    color: var(--medium-gray);
    transition: color 0.2s ease;
    font-size: 0.9rem;
    min-height: 40px;
}

.filter-item:hover {
    color: var(--dark-gray);
}

.filter-item input {
    margin-right: 0.75rem;
    width: 16px;
    height: 16px;
    accent-color: var(--primary-red);
    cursor: pointer;
}

.filter-item span {
    font-weight: 400;
    line-height: 1.3;
}

/* Price Filter - Minimal */
.price-filter {
    padding: 0.5rem 0;
}

.price-slider {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #e8e8e8;
    outline: none;
    -webkit-appearance: none;
    margin: 1rem 0;
    cursor: pointer;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-red);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.price-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.price-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-red);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.price-value {
    background: var(--primary-red);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
}

.filter-reset {
    width: 100%;
    padding: 0.8rem;
    background: white;
    color: var(--dark-gray);
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-reset:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* ============================================================================ */
/* 4.2 Mobile Filter CSS - SCROLLBAR REPARATUR */
/* ============================================================================ */

.mobile-filter-toggle {
    display: none;
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
    min-height: 48px;
}

.mobile-filter-toggle:hover {
    background: var(--primary-red-dark);
}

.filter-icon {
    font-size: 1.1rem;
}

.mobile-filter-close {
    display: none;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2147483649;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-filter-close:hover {
    background: var(--primary-red);
    transform: scale(1.05);
}

.mobile-filter-close:active {
    transform: scale(0.95);
}

/* DESKTOP Filter Content - AUCH SCROLLBAR */
.filter-content.open {
    max-height: 250px; /* Feste Höhe */
    overflow-y: auto;  /* Scrollbar für Desktop */
    overflow-x: hidden;
    padding-right: 4px;
    
    /* Custom Scrollbar Desktop */
    scrollbar-width: thin;
    scrollbar-color: rgba(227, 0, 24, 0.6) #f0f0f0;
}

.filter-content.open::-webkit-scrollbar {
    width: 6px;
}

.filter-content.open::-webkit-scrollbar-track {
    background: #f8f8f8;
    border-radius: 3px;
}

.filter-content.open::-webkit-scrollbar-thumb {
    background: rgba(227, 0, 24, 0.6);
    border-radius: 3px;
}

.filter-content.open::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

@media (max-width: 768px) {
    .mobile-filter-toggle {
        display: flex;
    }
    
    .filter-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh; /* Dynamic Viewport Height für moderne Browser */
        z-index: 2147483647;
        background: white;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        max-height: none;
        overflow: hidden; /* Parent container kein Scroll */
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        border: none;
    }
    
    .filter-sidebar.mobile-open {
        transform: translateX(0);
    }
    
    .mobile-filter-close {
        display: flex;
    }
    
    /* Mobile Filter Header - FIXED */
    .filter-sidebar.mobile-open .filter-header {
        background: linear-gradient(135deg, var(--dark-gray) 0%, #2C2C2C 100%);
        color: white;
        padding: 1.5rem 4rem 1.5rem 2rem; /* Platz für Close Button */
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0; /* Header nimmt nur nötigen Platz */
        position: relative;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .filter-sidebar.mobile-open .filter-header h3 {
        font-size: 1.4rem;
        margin: 0;
        text-align: center;
        color: white;
        font-weight: 700;
    }
    
    /* SCROLLBARER CONTENT - HAUPTFIX */
    .filter-sidebar.mobile-open .filter-content-wrapper {
        flex: 1; /* Nimmt verbleibenden Platz */
        overflow-y: auto; /* Vertikaler Scroll */
        overflow-x: hidden; /* Kein horizontaler Scroll */
        -webkit-overflow-scrolling: touch; /* Smooth Scrolling iOS */
        padding: 1.5rem;
        background: #fafafa;
        min-height: 0; /* Wichtig für Flex-Scrolling */
        
        /* Bessere Scrollbar Styles */
        scrollbar-width: thin;
        scrollbar-color: var(--primary-red) #e0e0e0;
    }
    
    /* Webkit Scrollbar Styling */
    .filter-sidebar.mobile-open .filter-content-wrapper::-webkit-scrollbar {
        width: 8px;
    }
    
    .filter-sidebar.mobile-open .filter-content-wrapper::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 4px;
    }
    
    .filter-sidebar.mobile-open .filter-content-wrapper::-webkit-scrollbar-thumb {
        background: var(--primary-red);
        border-radius: 4px;
        border: 1px solid #f0f0f0;
    }
    
    .filter-sidebar.mobile-open .filter-content-wrapper::-webkit-scrollbar-thumb:hover {
        background: var(--primary-red-dark);
    }
    
    /* Mobile Filter Sections - OPTIMIERT */
    .filter-sidebar.mobile-open .filter-section {
        background: white;
        margin-bottom: 1rem;
        padding: 1.25rem;
        border-radius: 12px;
        border: 1px solid #e8e8e8;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        border-bottom: none; /* Override der normalen border-bottom */
    }
    
    .filter-sidebar.mobile-open .filter-section:last-of-type {
        margin-bottom: 2rem; /* Extra Platz am Ende für Reset Button */
    }
    
    .filter-sidebar.mobile-open .filter-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: var(--dark-gray);
        font-weight: 700;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 2px solid #f0f0f0;
        cursor: pointer;
        transition: color 0.2s ease;
    }
    
    .filter-sidebar.mobile-open .filter-title:hover {
        color: var(--primary-red);
    }
    
    .filter-sidebar.mobile-open .collapse-toggle {
        width: 32px;
        height: 32px;
        border: 2px solid #e8e8e8;
        border-radius: 6px;
        background: white;
        color: var(--medium-gray);
        font-size: 1.1rem;
        font-weight: bold;
        transition: all 0.2s ease;
    }
    
    .filter-sidebar.mobile-open .collapse-toggle:hover {
        border-color: var(--primary-red);
        color: var(--primary-red);
        background: rgba(227, 0, 24, 0.05);
    }
    
    /* Filter Content - SCROLLBARE KATEGORIEN */
    .filter-sidebar.mobile-open .filter-content {
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }
    
    .filter-sidebar.mobile-open .filter-content.open {
        max-height: 300px; /* Feste Höhe für Container */
        overflow-y: auto;  /* SCROLLBAR FÜR KATEGORIEN */
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding-right: 4px; /* Platz für Scrollbar */
        
        /* Custom Scrollbar für Kategorien */
        scrollbar-width: thin;
        scrollbar-color: rgba(227, 0, 24, 0.6) #f0f0f0;
    }
    
    /* Webkit Scrollbar für Kategorien */
    .filter-sidebar.mobile-open .filter-content.open::-webkit-scrollbar {
        width: 6px;
    }
    
    .filter-sidebar.mobile-open .filter-content.open::-webkit-scrollbar-track {
        background: #f8f8f8;
        border-radius: 3px;
    }
    
    .filter-sidebar.mobile-open .filter-content.open::-webkit-scrollbar-thumb {
        background: rgba(227, 0, 24, 0.6);
        border-radius: 3px;
        border: 1px solid #f8f8f8;
    }
    
    .filter-sidebar.mobile-open .filter-content.open::-webkit-scrollbar-thumb:hover {
        background: var(--primary-red);
    }
    
    .filter-sidebar.mobile-open .filter-item {
        padding: 1rem 0;
        font-size: 1.05rem;
        min-height: 48px; /* Touch-optimiert */
        border-bottom: 1px solid #f8f8f8;
        display: flex;
        align-items: center;
        cursor: pointer;
        transition: all 0.2s ease;
        margin: 0;
    }
    
    .filter-sidebar.mobile-open .filter-item:last-child {
        border-bottom: none;
    }
    
    .filter-sidebar.mobile-open .filter-item:hover {
        background-color: rgba(227, 0, 24, 0.03);
        padding-left: 0.5rem;
        border-radius: 6px;
    }
    
    .filter-sidebar.mobile-open .filter-item input {
        width: 20px;
        height: 20px;
        margin-right: 1rem;
        accent-color: var(--primary-red);
        flex-shrink: 0;
    }
    
    .filter-sidebar.mobile-open .filter-item span {
        flex: 1;
        line-height: 1.4;
        color: var(--dark-gray);
        font-weight: 500;
    }
    
    /* Mobile Price Filter - VERBESSERT */
    .filter-sidebar.mobile-open .price-filter {
        padding: 1.25rem 0;
    }
    
    .filter-sidebar.mobile-open .price-slider {
        height: 8px;
        margin: 1.5rem 0;
        border-radius: 4px;
        background: #e8e8e8;
    }
    
    .filter-sidebar.mobile-open .price-slider::-webkit-slider-thumb {
        width: 28px;
        height: 28px;
        border: 3px solid white;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }
    
    .filter-sidebar.mobile-open .price-display {
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    
    .filter-sidebar.mobile-open .price-value {
        padding: 0.6rem 1rem;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(227, 0, 24, 0.2);
    }
    
    /* Mobile Reset Button - STICKY */
    .filter-sidebar.mobile-open .filter-reset {
        position: sticky;
        bottom: 0;
        margin: 1.5rem 0 0;
        padding: 1.25rem;
        font-size: 1.1rem;
        min-height: 56px;
        background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
        color: white;
        border: none;
        border-radius: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 12px rgba(227, 0, 24, 0.3);
        transition: all 0.2s ease;
        cursor: pointer;
    }
    
    .filter-sidebar.mobile-open .filter-reset:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(227, 0, 24, 0.4);
    }
    
    .filter-sidebar.mobile-open .filter-reset:active {
        transform: translateY(0);
    }
    
    /* Body scroll lock - VERBESSERT */
    body.filter-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
        touch-action: none !important;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Smooth Transitions */
    .filter-sidebar * {
        -webkit-tap-highlight-color: transparent;
    }
}

/* Mobile Small - bis 480px */
@media (max-width: 480px) {
    .mobile-filter-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .filter-sidebar.mobile-open .filter-header {
        padding: 1.25rem 3.5rem 1.25rem 1.5rem;
    }
    
    .filter-sidebar.mobile-open .filter-header h3 {
        font-size: 1.3rem;
    }
    
    .filter-sidebar.mobile-open .filter-content-wrapper {
        padding: 1.25rem;
    }
    
    .filter-sidebar.mobile-open .filter-section {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .filter-sidebar.mobile-open .filter-item {
        padding: 0.875rem 0;
        min-height: 44px;
    }
    
    .filter-sidebar.mobile-open .filter-reset {
        padding: 1rem;
        min-height: 52px;
        font-size: 1rem;
    }
}

/* Landscape Mobile Fix */
@media (max-width: 768px) and (orientation: landscape) {
    .filter-sidebar.mobile-open .filter-header {
        padding: 1rem 4rem 1rem 1.5rem;
    }
    
    .filter-sidebar.mobile-open .filter-header h3 {
        font-size: 1.2rem;
    }
    
    .filter-sidebar.mobile-open .filter-content-wrapper {
        padding: 1.25rem;
    }
}

/* 4.3 Produktausgabe CSS - GRID VIEW ONLY */
.products-main {
    flex: 1;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.products-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e8e8;
}

.products-count {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.products-controls-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.sort-select {
    padding: 0.6rem 1rem;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    background-color: white;
    color: var(--medium-gray);
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-red);
}

/* Grid View */
.products-grid-view {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.products-grid-view .product-card {
    width: calc(33.333% - 1.43rem);
    flex-shrink: 0;
    box-sizing: border-box;
}

/* Product Cards */
.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-red);
}

.product-image {
    position: relative;
    height: 250px;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: auto !important;
    height: auto !important;
    max-width: 80%;
    max-height: 65%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

/* Platzhalter verstecken wenn Bild vorhanden */
.product-image .image-placeholder {
    display: none;
}

.product-image:has(img) .image-placeholder {
    display: none;
}

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

.image-placeholder {
    font-size: 4rem;
    opacity: 0.15;
    color: var(--medium-gray);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-red);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge-sale {
    background: #f59e0b;
    left: auto;
    right: 10px;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    background-color: white;
    color: var(--dark-gray);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-view:hover {
    background-color: var(--primary-red);
    color: white;
    text-decoration: none;
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.product-category {
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    line-height: 1.3;
}

.product-info h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-info h3 a:hover {
    color: var(--primary-red);
}

.product-sku {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.btn-view {
    background-color: var(--primary-red);
    color: white;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    min-height: 44px;
    line-height: 1.2;
}

.btn-view:hover {
    background-color: var(--primary-red-dark);
    text-decoration: none;
    color: white;
}

.btn-request {
    background-color: white;
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    min-height: 44px;
    line-height: 1.2;
}

.btn-request:hover {
    background-color: var(--primary-red);
    color: white;
    text-decoration: none;
}

/* No Products Message */
.no-products {
    width: 100%;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--medium-gray);
}

.no-products h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.no-products p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.page-link {
    padding: 0.75rem 1rem;
    border: 1px solid #e8e8e8;
    background-color: white;
    color: var(--medium-gray);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.page-link:hover {
    background-color: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    text-decoration: none;
}

.page-link.active {
    background-color: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-link.disabled:hover {
    background-color: white;
    color: var(--medium-gray);
    border-color: #e8e8e8;
}

.page-dots {
    padding: 0.75rem 0.5rem;
    color: var(--medium-gray);
}

/* ============================================================================ */
/* 5. RESPONSIVE DESIGN */
/* ============================================================================ */

/* Large Desktop - 1200px+ */
@media (min-width: 1200px) {
    .products-grid-view .product-card {
        width: calc(33.333% - 1.43rem);
    }
}

/* Desktop - 1024px bis 1199px */
@media (max-width: 1199px) and (min-width: 1025px) {
    .syrox-container,
    .footer-container {
        padding: 0 15px;
    }
    
    .products-layout {
        padding: 0 15px;
    }
    
    .filter-sidebar {
        width: 230px;
    }
    
    .products-grid-view .product-card {
        width: calc(33.333% - 1.43rem);
    }
}

/* Tablet Landscape - 769px bis 1024px */
@media (max-width: 1024px) and (min-width: 769px) {
    .syrox-products-container {
        padding: 50px 0;
    }
    
    .products-layout {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .filter-sidebar {
        width: 100%;
        position: static;
        top: auto;
        max-height: none;
    }
    
    .products-grid-view .product-card {
        width: calc(50% - 1rem);
    }
    
    .products-grid-view {
        gap: 1.5rem;
    }
    
    .mobile-filter-toggle {
        display: flex;
    }
}

/* Mobile - bis 768px */
@media (max-width: 768px) {
    .syrox-products-container {
        padding: 30px 0;
    }
    
    .products-layout {
        flex-direction: column;
        gap: 0;
        padding: 0 15px;
    }
    
    .mobile-filter-toggle {
        display: flex;
    }
    
    .products-controls {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .products-controls-right {
        width: 100%;
    }
    
    .sort-select {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    /* Grid - 2 Spalten */
    .products-grid-view {
        gap: 1rem;
    }
    
    .products-grid-view .product-card {
        width: calc(50% - 0.5rem);
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .btn-view,
    .btn-request {
        padding: 0.75rem;
        min-height: 48px;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1.5rem 0;
    }
    
    .page-link {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Mobile Small - bis 480px */
@media (max-width: 480px) {
    .syrox-products-container {
        padding: 20px 0;
    }
    
    .products-layout {
        padding: 0 10px;
    }
    
    /* Single Column Grid */
    .products-grid-view .product-card {
        width: 100%;
    }
    
    .products-controls {
        padding: 0.75rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .mobile-filter-toggle {
        padding: 0.875rem 1.25rem;
    }
}

/* ============================================================================ */
/* 6. ACCESSIBILITY & TOUCH OPTIMIZATIONS */
/* ============================================================================ */

/* Touch Device Optimizations */
@media (pointer: coarse) {
    .mobile-filter-toggle,
    .filter-item,
    .mobile-filter-close,
    .filter-reset,
    .collapse-toggle,
    .filter-title {
        touch-action: manipulation;
    }
    
    .filter-item {
        min-height: 44px;
    }
    
    .mobile-filter-toggle {
        min-height: 48px;
    }
    
    .filter-reset {
        min-height: 48px;
    }
}

/* Focus States */
.filter-item input:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

.price-slider:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

.mobile-filter-close:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .filter-sidebar,
    .filter-content,
    .collapse-toggle,
    .mobile-filter-toggle,
    .mobile-filter-close,
    .filter-item,
    .product-card,
    .quick-view {
        transition: none;
    }
}

/* ============================================================================ */
/* 7. UTILITY CLASSES & LOADING STATES */
/* ============================================================================ */

/* Loading Animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.products-container.loading .product-card {
    animation: pulse 1.5s ease-in-out infinite;
}

.products-container.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
}

.products-container.loading::after {
    content: 'Laden...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    font-weight: 600;
    color: var(--primary-red);
}

/* Entrance Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.syrox-header {
    animation: fadeInDown 0.6s ease-out;
}

/* List Reset */
.syrox-menu,
.syrox-menu li,
.syrox-menu-item,
.footer-list,
.footer-list li {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
}

.syrox-menu li::before,
.syrox-menu-item::before,
.syrox-menu li::after,
.syrox-menu-item::after,
.footer-list li::before {
    content: none !important;
    display: none !important;
}

/* WordPress/WooCommerce Overrides */
.woocommerce .syrox-header,
.single-product .syrox-header,
.shop .syrox-header,
.product-category .syrox-header {
    position: fixed !important;
    top: 0 !important;
    z-index: 9999 !important;
}

.admin-bar .syrox-header {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    .admin-bar .syrox-header {
        top: 46px !important;
    }
}

/* Divi Overrides */
#main-content .container {
    padding: 0 !important;
    max-width: none !important;
}

#main-content {
    padding-top: 0 !important;
}

body.page-template-page_katalog {
    margin-top: 0 !important;
}

/* Mobile Viewport Force */
body.mobile-forced {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.mobile-forced * {
    box-sizing: border-box !important;
}

/* ============================================================================ */
/* 8. SORTIMENT SHORTCODE CSS - MINIMAL VERSION */
/* ============================================================================ */

/* 8.1 Basis Grid Layout */
.syrox-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* 8.2 Category Card Styling - Kompakt */
.syrox-category-card {
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.syrox-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-red);
    text-decoration: none;
    color: inherit;
}

/* 8.3 Category Content - Ohne Icons/Bilder */
.syrox-category-content h3 {
    color: var(--dark-gray);
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.syrox-category-card:hover .syrox-category-content h3 {
    color: var(--primary-red);
}

.syrox-category-content p {
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
}

.syrox-category-count {
    display: inline-block;
    background-color: var(--off-white);
    color: var(--primary-red);
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.syrox-category-card:hover .syrox-category-count {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* 8.4 Responsive Design - Minimalistisch */

/* Tablet Landscape - 769px bis 1024px */
@media (max-width: 1024px) and (min-width: 769px) {
    .syrox-category-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
    }
    
    .syrox-category-card {
        padding: 1.75rem 1.25rem;
    }
    
    .syrox-category-content h3 {
        font-size: 1.05rem;
    }
}

/* Mobile - bis 768px */
@media (max-width: 768px) {
    .syrox-category-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1rem;
    }
    
    .syrox-category-card {
        padding: 1.5rem 1rem;
    }
    
    .syrox-category-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .syrox-category-content p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .syrox-category-count {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
}

/* Mobile Small - bis 480px */
@media (max-width: 480px) {
    .syrox-category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .syrox-category-card {
        padding: 1.5rem;
    }
}

/* 8.5 Accessibility & Touch */
.syrox-category-card:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

@media (pointer: coarse) {
    .syrox-category-card {
        touch-action: manipulation;
        min-height: 140px;
    }
    
    .syrox-category-card:hover {
        transform: translateY(-2px);
    }
}

/* ============================================================================ */
/* 9. KATALOG TEMPLATE CSS - HERO & CTA SECTIONS */
/* ============================================================================ */

/* Katalog Template Styles - Minimal */
body.page-template-page_katalog {
    margin-top: 0 !important;
}

/* Hero Section */
.katalog-hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: white;
    margin-top: 49px;
    position: relative;
    overflow: hidden;
}

.katalog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 35px,
            rgba(255,255,255,.02) 35px,
            rgba(255,255,255,.02) 70px
        );
}

.katalog-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.katalog-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.katalog-hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.hero-cta-button {
    display: inline-block;
    background-color: white;
    color: #1A1A1A;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: #1A1A1A;
}

/* CTA Section */
.katalog-cta {
    background-color: #1A1A1A;
    padding: 60px 0;
}

.katalog-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: white;
    gap: 1.5rem;
}

.cta-icon {
    font-size: clamp(2rem, 4vw, 3rem);
    opacity: 0.3;
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
    min-width: 0;
}

.cta-text h3 {
    margin-bottom: 0.5rem;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.cta-content .cta-button {
    background-color: #E30018;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(227, 0, 24, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
}

.cta-content .cta-button:hover {
    background-color: #C00015;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 0, 24, 0.4);
    text-decoration: none;
    color: white;
}

/* Info Section */
.katalog-info {
    padding: 60px 0;
    background-color: white;
}

.katalog-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 1.5rem;
}

.info-icon {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #E30018, #C00015);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-item h3 {
    color: #1A1A1A;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.info-item p {
    color: #666;
    margin: 0;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* Loading States */
.products-main.loading {
    position: relative;
    min-height: 400px;
}

.products-main.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
    border-radius: 8px;
}

.products-main.loading::after {
    content: 'Filter werden angewendet...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    font-weight: 600;
    color: #E30018;
    background: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #E30018;
}

/* Mobile Responsive - Katalog Template */
@media (max-width: 768px) {
    .katalog-hero {
        padding: 80px 0 40px;
        margin-top: 60px;
    }
    
    .katalog-cta {
        padding: 40px 0;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .cta-icon {
        margin-bottom: 1rem;
    }
    
    .katalog-info {
        padding: 40px 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .katalog-hero-container,
    .katalog-cta-container,
    .katalog-info-container {
        padding: 0 15px;
    }
    
    .katalog-hero {
        margin-top: 50px;
        padding: 60px 0 30px;
    }
    
    .cta-content {
        padding: 1rem;
    }
    
    .hero-cta-button,
    .cta-content .cta-button {
        padding: 0.75rem 1.5rem;
    }
}

/* ============================================================================ */
/* 10. PRODUCTS GRID SPALTEN CSS - FÜR SHORTCODES */
/* ============================================================================ */

/* Spalten CSS für Shortcodes */
.products-grid-1-cols .product-card { 
    width: 100%; 
}

.products-grid-2-cols .product-card { 
    width: calc(50% - 1rem); 
}

.products-grid-3-cols .product-card { 
    width: calc(33.333% - 1.43rem); 
}

.products-grid-4-cols .product-card { 
    width: calc(25% - 1.5rem); 
}

@media (max-width: 1024px) {
    .products-grid-3-cols .product-card,
    .products-grid-4-cols .product-card { 
        width: calc(50% - 1rem); 
    }
}

@media (max-width: 768px) {
    .products-grid-2-cols .product-card,
    .products-grid-3-cols .product-card,
    .products-grid-4-cols .product-card { 
        width: calc(50% - 0.5rem); 
    }
}

@media (max-width: 480px) {
    .products-grid-1-cols .product-card,
    .products-grid-2-cols .product-card,
    .products-grid-3-cols .product-card,
    .products-grid-4-cols .product-card { 
        width: 100%; 
    }
}

/* ============================================================================ */
/* 11. MOBILE VIEWPORT CSS - AUS FUNCTIONS.PHP */
/* ============================================================================ */

/* Mobile Viewport Fix */
html { 
    -webkit-text-size-adjust: 100% !important;
    -ms-text-size-adjust: 100% !important;
}

body { 
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Admin Bar Fix */
.admin-bar .syrox-header { 
    top: 32px !important; 
}

@media screen and (max-width: 782px) {
    .admin-bar .syrox-header { 
        top: 46px !important; 
    }
}

/* ============================================================================ */
/* KONTAKT-SEITE CSS - KOMPLETT NEU MIT FONTAWESOME */
/* ============================================================================ */

/* 12. KONTAKT-SEITE & FORMULAR CSS */
/* ============================================================================ */

/* 12.1 Kontakt Layout */
.syrox-contact-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.contact-layout {
    display: flex;
    gap: 3rem;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: flex-start;
}

.contact-form-wrapper {
    flex: 1.2;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
}

.contact-info-wrapper {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-header {
    margin-bottom: 2.5rem;
    text-align: left;
}

.contact-form-header h2 {
    color: var(--dark-gray);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-form-header p {
    color: var(--medium-gray);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* 12.2 Große Formular-Styles */
.syrox-form {
    width: 100%;
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-group {
    width: 100%;
}

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1rem;
}

.form-input-large,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f5f5;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-height: 56px;
}

.form-input-large:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-red);
    background-color: white;
    box-shadow: 0 0 0 2px rgba(227, 0, 24, 0.1);
}

.form-input-large.valid {
    border-color: #10B981;
    background-color: rgba(16, 185, 129, 0.05);
}

.form-input-large.invalid {
    border-color: #EF4444;
    background-color: rgba(239, 68, 68, 0.05);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    max-height: 300px;
    line-height: 1.6;
    font-family: inherit;
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23E30018' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

/* 12.3 Checkbox Styling */
.form-checkbox-group {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-checkbox {
    width: 20px !important;
    height: 20px;
    margin: 0 1rem 0 0 !important;
    accent-color: var(--primary-red);
    cursor: pointer;
    flex-shrink: 0;
    min-height: 20px;
}

.checkbox-text {
    color: var(--medium-gray);
}

.checkbox-text a {
    color: var(--primary-red);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.checkbox-text a:hover {
    color: var(--primary-red-dark);
}

/* 12.4 Submit Button Styling */
.form-actions {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.contact-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-red);
    color: white;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    text-decoration: none;
    min-height: 60px;
    position: relative;
    overflow: hidden;
}

.contact-submit-btn:hover:not(:disabled) {
    background: var(--primary-red-dark);
    transform: translateY(-1px);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    color: rgba(255, 255, 255, 0.8);
}

/* 12.5 Nachrichtenstatus */
.form-message {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    font-size: 1rem;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* 12.6 Kontaktinformationen */
.contact-info-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e8;
}

.contact-info-section h3 {
    color: var(--dark-gray);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-details h4 {
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.contact-title-icon {
    font-size: 14px !important;
    color: var(--primary-red) !important;
    margin-right: 0.5rem;
}

.contact-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--primary-red-dark);
}

/* 12.7 Geschäftszeiten */
.business-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    align-items: center;
    padding: 0;
}

.hours-icon {
    margin-right: 1rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.hours-icon .fas {
    font-size: 16px;
    color: var(--primary-red);
}

.hours-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hours-day {
    font-weight: 600;
    color: var(--dark-gray);
}

.hours-time {
    color: var(--medium-gray);
    font-weight: 500;
}

/* 12.8 Service Liste */
.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--medium-gray);
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li .fas {
    font-size: 14px;
    color: var(--primary-red);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* 12.9 CTA Section Icon Fix */
.cta-icon .fas {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
}

/* 12.10 Responsive Design - Tablet */
@media (max-width: 1024px) {
    .syrox-contact-section {
        padding: 60px 0;
    }
    
    .contact-layout {
        flex-direction: column;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem;
        width: 100%;
    }
    
    .contact-info-wrapper {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

/* 12.11 Responsive Design - Mobile */
@media (max-width: 768px) {
    .syrox-contact-section {
        padding: 40px 0;
    }
    
    .contact-layout {
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-row {
        margin-bottom: 1.25rem;
    }
    
    .form-input-large,
    .form-textarea,
    .form-select {
        padding: 1rem 1.25rem;
        font-size: 16px; /* Verhindert Zoom auf iOS */
        min-height: 52px;
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .contact-submit-btn {
        padding: 1rem;
        font-size: 1rem;
        min-height: 56px;
    }
    
    .contact-info-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-section {
        padding: 1.5rem;
    }
    
    .hours-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* 12.12 Mobile Small */
@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 8px;
    }
    
    .contact-form-header {
        margin-bottom: 2rem;
    }
    
    .contact-form-header h2 {
        font-size: 1.3rem;
    }
    
    .contact-info-section {
        padding: 1.25rem;
    }
    
    .contact-info-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .form-checkbox-label {
        font-size: 0.9rem;
    }
    
    .contact-submit-btn {
        padding: 1rem;
        font-size: 0.95rem;
        min-height: 52px;
    }
}

/* 12.13 Touch Devices */
@media (pointer: coarse) {
    .form-input-large,
    .form-textarea,
    .form-select {
        min-height: 48px;
    }
    
    .form-checkbox {
        min-width: 24px;
        min-height: 24px;
    }
    
    .contact-submit-btn {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    .contact-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* 12.14 High Contrast Mode */
@media (prefers-contrast: high) {
    .form-input-large,
    .form-textarea,
    .form-select {
        border-width: 2px;
    }
    
    .form-message.success {
        background-color: #e6fffa;
        border-color: #065f46;
    }
    
    .form-message.error {
        background-color: #fef2f2;
        border-color: #991b1b;
    }
}

/* 12.15 Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .form-input-large,
    .form-textarea,
    .form-select,
    .contact-submit-btn,
    .contact-link {
        transition: none;
    }
    
    .contact-submit-btn:hover:not(:disabled) {
        transform: none;
    }
}
/* ============================================================================ */
/* 13. ANFRAGE-SEITE CSS - WIEDERVERWENDUNG KONTAKT KLASSEN */
/* ============================================================================ */

/* 13.1 Formular Sections mit Icons */
.form-section {
    margin-bottom: 3rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 2rem;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-red);
    font-family: 'Montserrat', sans-serif;
}

.form-section-title i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* 13.2 Dynamische Produktfelder */
#product-fields-container {
    margin-bottom: 1.5rem;
}

.product-field-row {
    display: flex;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.product-field-row:hover {
    border-color: var(--primary-red);
    box-shadow: 0 2px 8px rgba(227, 0, 24, 0.1);
}

.product-input-group {
    flex: 2;
    min-width: 200px;
}

.quantity-input-group {
    flex: 1;
    min-width: 120px;
}

.remove-button-group {
    flex: 0 0 50px;
    display: flex;
    justify-content: center;
}

.remove-product-btn {
    background: #dc3545;
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 14px;
}

.remove-product-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.add-product-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary-red);
    border: 2px dashed var(--primary-red);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 56px;
    font-size: 1rem;
}

.add-product-button:hover {
    background: var(--primary-red);
    color: white;
    border-style: solid;
    transform: translateY(-1px);
}

.add-product-button i {
    font-size: 1.1rem;
}

/* 13.3 Zwei-Spalten Layout für Kundendaten */
.form-row-half {
    display: flex;
    gap: 1.5rem;
}

.form-row-half .form-group {
    flex: 1;
}

/* 13.4 Service Features Section */
.anfrage-features {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    text-align: center;
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(227, 0, 24, 0.3);
}

.feature-icon i {
    color: white;
    font-size: 2rem;
}

.feature-item h3 {
    color: var(--dark-gray);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.feature-item p {
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* 13.5 Onlineshop Ankündigung */
.onlineshop-announcement {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2c2c2c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.onlineshop-announcement::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 35px,
            rgba(255,255,255,.02) 35px,
            rgba(255,255,255,.02) 70px
        );
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.announcement-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-red), #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(227, 0, 24, 0.4);
}

.announcement-icon i {
    color: white;
    font-size: 3rem;
}

.announcement-text {
    flex: 1;
    min-width: 0;
}

.announcement-text h2 {
    color: white;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.announcement-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.announcement-btn {
    display: inline-block;
    background: white;
    color: var(--dark-gray);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.announcement-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: var(--dark-gray);
}

/* 13.6 Success Container & Neue Anfrage */
.success-container {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 2px solid #28a745;
    box-shadow: 0 8px 32px rgba(40, 167, 69, 0.15);
    animation: slideInUp 0.5s ease-out;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.3);
    animation: bounceIn 0.6s ease-out 0.2s both;
}

.success-icon i {
    color: white;
    font-size: 3rem;
}

.success-container h2 {
    color: var(--dark-gray);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.success-container p {
    color: var(--medium-gray);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.new-request-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--primary-red);
    color: white;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(227, 0, 24, 0.3);
    min-height: 60px;
    text-decoration: none;
}

.new-request-button:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(227, 0, 24, 0.4);
}

.new-request-button i {
    font-size: 1.2rem;
}

.catalog-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: white;
    color: var(--medium-gray);
    padding: 1rem 2rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 52px;
}

.catalog-button:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    text-decoration: none;
    transform: translateY(-1px);
}

.catalog-button i {
    font-size: 1rem;
}

/* Slide-in Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bounce Animation für Icon */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 13.7 Responsive Design - Tablet */
@media (max-width: 1024px) {
    .product-field-row {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .product-input-group,
    .quantity-input-group {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 150px;
    }
    
    .remove-button-group {
        flex: 1 1 100%;
        justify-content: flex-end;
        margin-top: 0.5rem;
    }
    
    .form-row-half {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .announcement-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .announcement-icon {
        width: 100px;
        height: 100px;
    }
    
    .announcement-icon i {
        font-size: 2.5rem;
    }
}

/* 13.8 Responsive Design - Mobile */
@media (max-width: 768px) {
    .form-section {
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
    }
    
    .form-section-title {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .product-field-row {
        flex-direction: column;
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .product-input-group,
    .quantity-input-group {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .remove-button-group {
        flex: 1 1 100%;
        justify-content: center;
    }
    
    .add-product-button {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .anfrage-features {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .feature-item {
        padding: 2rem 1.25rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .feature-icon i {
        font-size: 1.75rem;
    }
    
    .onlineshop-announcement {
        padding: 60px 0;
    }
    
    .success-container {
        padding: 2.5rem 1.5rem;
        border-radius: 8px;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .success-icon i {
        font-size: 2.5rem;
    }
    
    .success-container p {
        margin-bottom: 2rem;
    }
    
    .success-actions {
        gap: 1rem;
    }
    
    .new-request-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 56px;
        width: 100%;
        max-width: 300px;
    }
    
    .catalog-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        min-height: 48px;
        width: 100%;
        max-width: 280px;
    }
}

/* 13.9 Mobile Small */
@media (max-width: 480px) {
    .product-field-row {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .form-section-title {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .add-product-button {
        padding: 0.875rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .announcement-content {
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .announcement-icon {
        width: 80px;
        height: 80px;
    }
    
    .announcement-icon i {
        font-size: 2rem;
    }
    
    .announcement-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .success-container {
        padding: 2rem 1rem;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .success-icon i {
        font-size: 2rem;
    }
    
    .success-actions {
        gap: 1rem;
    }
    
    .new-request-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        gap: 0.5rem;
    }
    
    .catalog-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
}

/* 13.10 Touch Devices */
@media (pointer: coarse) {
    .add-product-button {
        min-height: 56px;
        touch-action: manipulation;
    }
    
    .remove-product-btn {
        min-width: 48px;
        min-height: 48px;
        touch-action: manipulation;
    }
    
    .announcement-btn {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    .new-request-button {
        min-height: 56px;
        touch-action: manipulation;
    }
    
    .catalog-button {
        min-height: 52px;
        touch-action: manipulation;
    }
}

/* 13.11 Focus States & Accessibility */
.add-product-button:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

.remove-product-btn:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.announcement-btn:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.new-request-button:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.catalog-button:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* 13.12 Animation für dynamische Felder */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-field-row {
    animation: fadeInUp 0.3s ease-out;
}

/* 13.13 Loading States */
.syrox-form.loading .add-product-button {
    opacity: 0.7;
    pointer-events: none;
}

.syrox-form.loading .remove-product-btn {
    opacity: 0.7;
    pointer-events: none;
}

/* 13.14 Error States für Produktfelder */
.product-field-row.error {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

.product-field-row.error .form-input-large {
    border-color: #dc3545;
}

/* 13.15 Success States */
.product-field-row.success {
    border-color: #28a745;
    background-color: rgba(40, 167, 69, 0.05);
}

.product-field-row.success .form-input-large {
    border-color: #28a745;
}

/* 13.16 Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .product-field-row,
    .feature-item,
    .add-product-button,
    .remove-product-btn,
    .announcement-btn,
    .success-container,
    .success-icon,
    .new-request-button,
    .catalog-button {
        animation: none;
        transition: none;
    }
    
    .feature-item:hover,
    .add-product-button:hover,
    .remove-product-btn:hover,
    .announcement-btn:hover,
    .new-request-button:hover,
    .catalog-button:hover {
        transform: none;
    }
}


/* ============================================================================ */
/* 14. Single Produktseite */
/* ============================================================================ */
/* Mobile Small */
@media (max-width: 480px) {
    .syrox-product-page {
        padding: 0.75rem;
    }
    
    .syrox-custom-gallery {
        padding: 0.75rem;
    }
    
    .syrox-thumbnails-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.375rem;
    }
    
    .syrox-product-brand-badge {
        padding: 0.4rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .syrox-product-title {
        font-size: 1.3rem;
    }
    
    .syrox-product-sku {
        font-size: 0.9rem;
    }
    
    .syrox-product-info {
        padding: 1.25rem;
    }
    
    .syrox-desc-row {
        padding: 0.75rem 0;
    }
    
    .syrox-desc-label {
        font-size: 0.8rem;
    }
    
    .syrox-desc-value {
        font-size: 0.85rem;
    }
    
    .syrox-product-price-box {
        padding: 1rem 1.25rem;
    }
    
    .syrox-product-price-box .price {
        font-size: 1.4rem;
    }
    
    .syrox-product-specifications {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .syrox-product-specifications h2 {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .syrox-specs-content table {
        font-size: 0.8rem;
    }
    
    .syrox-request-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        gap: 0.5rem;
    }
    
    .syrox-back-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .syrox-lightbox-prev,
    .syrox-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .syrox-lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

/* 14.11 Touch Devices */
@media (pointer: coarse) {
    .syrox-request-button {
        min-height: 56px;
        touch-action: manipulation;
    }
    
    .syrox-back-button {
        min-height: 52px;
        touch-action: manipulation;
    }
    
    .syrox-thumb-item {
        min-height: 60px;
        touch-action: manipulation;
    }
    
    .syrox-zoom-trigger {
        min-width: 44px;
        min-height: 44px;
    }
}

/* 14.12 Focus States */
.syrox-request-button:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.syrox-back-button:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

.syrox-thumb-item:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

.syrox-zoom-trigger:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* 14.13 Print Styles */
@media print {
    .syrox-product-actions,
    .syrox-back-button,
    .syrox-zoom-trigger {
        display: none;
    }
    
    .syrox-product-page {
        max-width: 100%;
    }
    
    .syrox-product-main-section {
        grid-template-columns: 1fr;
    }
    
    .syrox-thumbnails-container {
        display: none;
    }
    
    .syrox-product-info,
    .syrox-product-specifications {
        box-shadow: none;
        border: 1px solid #e8e8e8;
        page-break-inside: avoid;
    }
}

/* 14.14 Zusätzliche Tabellen-Styles für mobile */
@media (max-width: 640px) {
    .syrox-specs-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .syrox-specs-content table thead,
    .syrox-specs-content table tbody,
    .syrox-specs-content table tr {
        display: table;
        width: 100%;
    }
}

/* 14.15 Animation für Bildwechsel */
@keyframes fadeInImage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.syrox-main-image-display {
    animation: fadeInImage 0.3s ease-in-out;
}

/* 14.16 Scrollbar Styling für Tabellen */
.syrox-specs-content table::-webkit-scrollbar {
    height: 8px;
}

.syrox-specs-content table::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.syrox-specs-content table::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

.syrox-specs-content table::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red-dark);
}/* ============================================================================ */
/* 14. PRODUKTSEITE (SINGLE PRODUCT) CSS */
/* ============================================================================ */

/* 14.1 Produktseiten Layout - WooCommerce Galerie Fix */
.single-product .woocommerce-product-gallery {
    opacity: 1 !important;
}

/* 14.2 Produktkopf - Nur Titel */
.syrox-product-page {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem;
}

.syrox-product-header-title {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--primary-red);
}

.syrox-product-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(227, 0, 24, 0.3);
}

.syrox-product-brand-badge i {
    font-size: 1rem;
}

.syrox-product-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.syrox-product-sku {
    color: var(--medium-gray);
    font-size: 1rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.syrox-product-sku i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* 14.3 Zweispaltige Hauptsektion */
.syrox-product-main-section {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* 14.4 Linke Spalte - Custom Galerie KOMPLETT NEU */
.syrox-product-images {
    position: sticky;
    top: 120px;
}

.syrox-custom-gallery {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
}

/* Hauptbild Container */
.syrox-main-image-container {
    position: relative;
    max-height: 500px;
    height: 500px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.syrox-main-image-container:hover {
    background: #f0f0f0;
}

.syrox-main-image-display {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 1rem;
}

/* Zoom Button */
.syrox-zoom-trigger {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.syrox-zoom-trigger:hover {
    background: var(--primary-red);
    transform: scale(1.05);
}

.syrox-zoom-trigger i {
    font-size: 16px;
}

/* Thumbnails Container */
.syrox-thumbnails-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.syrox-thumb-item {
    aspect-ratio: 1 / 1;
    background: #f8f9fa;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.syrox-thumb-item:hover {
    border-color: var(--primary-red);
    background: white;
}

.syrox-thumb-item.active {
    border-color: var(--primary-red);
    background: white;
    box-shadow: 0 0 0 2px rgba(227, 0, 24, 0.15);
}

.syrox-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Kein Bild Placeholder */
.syrox-no-image {
    aspect-ratio: 1 / 1;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--medium-gray);
}

.syrox-no-image i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.syrox-no-image p {
    margin: 0;
    font-size: 0.9rem;
}

/* Lightbox */
.syrox-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.syrox-lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.syrox-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.syrox-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    font-size: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.syrox-lightbox-close:hover {
    background: var(--primary-red);
    transform: rotate(90deg);
}

.syrox-lightbox-prev,
.syrox-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    font-size: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.syrox-lightbox-prev:hover,
.syrox-lightbox-next:hover {
    background: var(--primary-red);
}

.syrox-lightbox-prev {
    left: 20px;
}

.syrox-lightbox-next {
    right: 20px;
}

.syrox-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* 14.5 Rechte Spalte - Produktinfo */
.syrox-product-info {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
}

/* 14.6 Produktbeschreibung als strukturierte Liste */
.syrox-product-description-list {
    margin-bottom: 2rem;
}

.syrox-description-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.syrox-desc-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e8e8e8;
    align-items: start;
}

.syrox-desc-row:last-child {
    border-bottom: none;
}

.syrox-desc-label {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.syrox-desc-value {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.syrox-desc-row.syrox-desc-full {
    grid-template-columns: 1fr;
}

.syrox-desc-row.syrox-desc-full .syrox-desc-value {
    font-weight: 600;
    color: var(--dark-gray);
}

/* 14.7 Preis Box */
.syrox-product-price-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--primary-red);
    text-align: center;
}

.syrox-product-price-box .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
}

.syrox-product-price-box del {
    color: var(--medium-gray);
    font-size: 1.4rem;
    margin-right: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.syrox-product-price-box ins {
    text-decoration: none;
}

/* 14.8 Produktspezifikationen & Tabellen */
.syrox-product-specifications {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    margin-bottom: 2rem;
}

.syrox-product-specifications h2 {
    color: var(--dark-gray);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Montserrat', sans-serif;
}

.syrox-product-specifications h2 i {
    color: var(--primary-red);
    font-size: 1.3rem;
}

.syrox-specs-content {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Tabellen Styling für Specs */
.syrox-specs-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    table-layout: auto;
}

.syrox-specs-content table thead {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2c2c2c 100%);
    color: white;
}

.syrox-specs-content table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid var(--primary-red);
    white-space: nowrap;
}

.syrox-specs-content table td {
    padding: 1rem;
    border-bottom: 1px solid #e8e8e8;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.syrox-specs-content table tbody tr:hover {
    background: #f8f9fa;
}

.syrox-specs-content table tbody tr:last-child td {
    border-bottom: none;
}

/* Erste Spalte (meist Label) fett und nur so breit wie nötig */
.syrox-specs-content table td:first-child {
    font-weight: 600;
    color: var(--dark-gray);
    width: 1%;
    white-space: nowrap;
}

/* Listen in Specs */
.syrox-specs-content ul,
.syrox-specs-content ol {
    margin: 1rem 0 1rem 2rem;
}

.syrox-specs-content li {
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
}

/* 14.9 Produkt Aktionen */
.syrox-product-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    align-items: center;
}

.syrox-request-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #f0f7ff;
    border-left: 4px solid #0066cc;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
}

.syrox-request-note i {
    color: #0066cc;
    font-size: 1.25rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.syrox-request-note p {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
}

.syrox-request-note strong {
    color: #0066cc;
    font-weight: 600;
}

.syrox-product-actions .syrox-request-button,
.syrox-product-actions .syrox-back-button {
    flex-shrink: 0;
}

.syrox-request-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(227, 0, 24, 0.3);
    border: none;
    cursor: pointer;
}

.syrox-request-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(227, 0, 24, 0.4);
    text-decoration: none;
    color: white;
}

.syrox-request-button i {
    font-size: 1.2rem;
}

.syrox-back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: white;
    color: var(--medium-gray);
    padding: 1.25rem 2rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.syrox-back-button:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    text-decoration: none;
    transform: translateY(-1px);
}

.syrox-back-button i {
    font-size: 1rem;
}

/* 14.10 Responsive Design - Produktseite */

/* Tablet */
@media (max-width: 1024px) {
    .syrox-product-page {
        padding: 1.5rem;
    }
    
    .syrox-product-main-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .syrox-product-images,
    .syrox-custom-gallery {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .syrox-product-info {
        padding: 2rem;
    }
    
    .syrox-desc-row {
        grid-template-columns: 180px 1fr;
        gap: 1rem;
    }
    
    .syrox-product-specifications {
        padding: 2rem;
    }
    
    .syrox-specs-content table th,
    .syrox-specs-content table td {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .syrox-product-page {
        padding: 1rem;
    }
    
    .syrox-product-main-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .syrox-product-images,
    .syrox-custom-gallery {
        max-width: 100%;
    }
    
    .syrox-custom-gallery {
        padding: 1rem;
    }
    
    .syrox-main-image-container {
        margin-bottom: 1rem;
        height: 400px;
        max-height: 400px;
    }
    
    .syrox-thumbnails-container {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .syrox-product-header-title {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .syrox-product-title {
        font-size: 1.5rem;
    }
    
    .syrox-product-info {
        padding: 1.5rem;
    }
    
    .syrox-desc-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
        padding: 0.875rem 0;
    }
    
    .syrox-desc-label {
        font-size: 0.85rem;
        color: var(--primary-red);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .syrox-desc-value {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--dark-gray);
    }
    
    .syrox-product-price-box {
        padding: 1.25rem 1.5rem;
        margin-top: 1.5rem;
    }
    
    .syrox-product-price-box .price {
        font-size: 1.6rem;
    }
    
    .syrox-product-specifications {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .syrox-product-specifications h2 {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }
    
    .syrox-specs-content table {
        font-size: 0.85rem;
    }
    
    .syrox-specs-content table th,
    .syrox-specs-content table td {
        padding: 0.75rem 0.5rem;
    }
    
    .syrox-product-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .syrox-request-note {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .syrox-request-note i {
        font-size: 1.1rem;
    }
    
    .syrox-request-note p {
        font-size: 0.875rem;
    }
    
    .syrox-request-button {
        width: 100%;
        padding: 1.125rem 2rem;
        font-size: 1rem;
    }
    
    .syrox-back-button {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .syrox-lightbox-prev {
        left: 10px;
    }
    
    .syrox-lightbox-next {
        right: 10px;
    }
    
    .syrox-lightbox-close {
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .syrox-product-page {
        padding: 0.75rem;
    }
    
    .woocommerce-product-gallery__image {
        padding: 1rem;
    }
    
    .flex-control-thumbs {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.375rem;
    }
    
    .syrox-product-brand-badge {
        padding: 0.4rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .syrox-product-title {
        font-size: 1.3rem;
    }
    
    .syrox-product-sku {
        font-size: 0.9rem;
    }
    
    .syrox-product-info {
        padding: 1.25rem;
    }
    
    .syrox-desc-row {
        padding: 0.75rem 0;
    }
    
    .syrox-desc-label {
        font-size: 0.8rem;
    }
    
    .syrox-desc-value {
        font-size: 0.85rem;
    }
    
    .syrox-product-price-box {
        padding: 1rem 1.25rem;
    }
    
    .syrox-product-price-box .price {
        font-size: 1.4rem;
    }
    
    .syrox-product-specifications {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .syrox-product-specifications h2 {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .syrox-specs-content table {
        font-size: 0.8rem;
    }
    
    .syrox-request-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        gap: 0.5rem;
    }
    
    .syrox-back-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
}

/* 14.11 Touch Devices */
@media (pointer: coarse) {
    .syrox-request-button {
        min-height: 56px;
        touch-action: manipulation;
    }
    
    .syrox-back-button {
        min-height: 52px;
        touch-action: manipulation;
    }
    
    .flex-control-thumbs li img {
        min-height: 60px;
        touch-action: manipulation;
    }
}

/* 14.12 Focus States */
.syrox-request-button:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.syrox-back-button:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

.flex-control-thumbs li img:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* 14.13 Print Styles */
@media print {
    .syrox-product-actions,
    .syrox-back-button,
    .woocommerce-product-gallery__trigger {
        display: none;
    }
    
    .syrox-product-page {
        max-width: 100%;
    }
    
    .syrox-product-main-section {
        grid-template-columns: 1fr;
    }
    
    .flex-control-thumbs {
        display: none;
    }
    
    .syrox-product-info,
    .syrox-product-specifications {
        box-shadow: none;
        border: 1px solid #e8e8e8;
        page-break-inside: avoid;
    }
}

/* 14.14 Zusätzliche Tabellen-Styles für mobile */
@media (max-width: 640px) {
    .syrox-specs-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .syrox-specs-content table thead,
    .syrox-specs-content table tbody,
    .syrox-specs-content table tr {
        display: table;
        width: 100%;
    }
}

/* 14.15 Animation für Bildwechsel */
@keyframes fadeInImage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.woocommerce-product-gallery__image img {
    animation: fadeInImage 0.3s ease-in-out;
}

/* 14.16 Scrollbar Styling für Tabellen */
.syrox-specs-content table::-webkit-scrollbar {
    height: 8px;
}

.syrox-specs-content table::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.syrox-specs-content table::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

.syrox-specs-content table::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red-dark);
}