/* ==========================================================================
   DESIGN SYSTEM - CARAVAN CENTER NIEDERRHEIN (www.mycamper.rent)
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* KNAUS Brand Font - Foco Server & Local System Lookups */
@font-face {
    font-family: 'Foco';
    src: url('assets/fonts/foco-regular.woff2') format('woff2'),
         url('assets/fonts/foco-regular.woff') format('woff'),
         local('Foco-Regular'), local('Foco Regular'), local('Foco');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Foco';
    src: url('assets/fonts/foco-bold.woff2') format('woff2'),
         url('assets/fonts/foco-bold.woff') format('woff'),
         local('Foco-Bold'), local('Foco Bold'), local('FocoBold');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Foco';
    src: url('assets/fonts/foco-light.woff2') format('woff2'),
         url('assets/fonts/foco-light.woff') format('woff'),
         local('Foco-Light'), local('Foco Light'), local('FocoLight');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Brand Colors (CCN Original Logo) */
    --color-primary: #4a4a4a;        /* CCN Slate Grey / Charcoal */
    --color-primary-light: #6b7280;  /* Muted Grey */
    --color-primary-dark: #374151;   /* Dark Charcoal */
    --color-accent: #2772B7;         /* Knaus Royal Blue Accent */
    --color-accent-hover: #1e5d99;   /* Slightly darker Knaus Blue Hover */
    --color-accent-light: #e8f1f8;   /* Soft Light Blue Background */
    
    /* Layout Backgrounds (Light Theme) */
    --color-bg-dark: #f8fafc;        /* Soft Light Slate Background */
    --color-bg-alt: #f1f5f9;         /* Structural Grey Background */
    --color-bg-card: #ffffff;        /* Pure White Card Base */
    --color-border: #e2e8f0;         /* Fine Border */
    
    /* Text Colors */
    --color-text-main: #1f2937;      /* Dark Slate Text */
    --color-text-muted: #4b5563;     /* Muted Grey Text */
    --color-text-white: #ffffff;     /* White Text for dark backgrounds */
    
    /* Utility */
    --color-success: #10b981;        /* Emerald Green */
    --color-success-bg: #d1fae5;
    
    /* Typography */
    --font-heading: 'Foco', 'Poppins', sans-serif;
    --font-body: 'Foco', 'Poppins', sans-serif;
    
    /* Layout & Shadows (Minimalist & Flat) */
    --container-max: 1280px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;        /* Friendly abgerundete Ecken */
    --border-radius-lg: 24px;
    
    --shadow-sm: 0 1px 3px rgba(74, 74, 74, 0.03), 0 1px 2px rgba(74, 74, 74, 0.02);
    --shadow-md: 0 10px 15px -3px rgba(74, 74, 74, 0.05), 0 4px 6px -4px rgba(74, 74, 74, 0.05);
    --shadow-premium: 0 25px 50px -12px rgba(140, 189, 21, 0.08);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & GLOBAL STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-primary-dark);
}

p {
    color: var(--color-text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

/* ==========================================================================
   UTILITY CLASSES & GRID SYSTEM
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 700;
    display: block;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 60px auto;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* Friendly rounded card utility */
.glass {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-md);
}

/* Buttons (Slanted & Pill hybrid with dynamic hover effects) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 4px;             /* Structured slanted button */
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 8px;
    position: relative;
    overflow: hidden;
    transform: skewX(-6deg);        /* Slanted button skew */
}

/* Skew correction for text and icons inside slanted buttons */
.btn > * {
    transform: skewX(6deg);
    display: inline-block;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text-white);
    box-shadow: 0 4px 14px rgba(140, 189, 21, 0.25);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px) skewX(-6deg);
    box-shadow: 0 6px 20px rgba(140, 189, 21, 0.4);
}

.btn-secondary {
    background-color: var(--color-bg-card);
    color: var(--color-primary-dark);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-bg-alt);
    transform: translateY(-2px) skewX(-6deg);
}

/* Badges (Pill shape) */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-knaus {
    background-color: var(--color-primary-dark);
    color: var(--color-text-white);
}

.badge-accent {
    background-color: var(--color-accent-light);
    color: var(--color-accent-hover);
    border: 1px solid rgba(39, 114, 183, 0.25);
}

/* ==========================================================================
   BLUE TOP INFO BAR (KNAUS BLUE)
   ========================================================================== */
.top-info-bar {
    background-color: #2772B7; /* Knaus Royal Blue */
    color: var(--color-text-white);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1001;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item i {
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: absolute;
    top: 44px; /* Sits below the static top-info-bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 20px 0;
    background: transparent;
}

.header.scrolled {
    position: fixed;
    top: 0;
    padding: 12px 0;
    background: rgba(39, 114, 183, 0.98); /* Brand Knaus-Blue with elegant backdrop blur */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 48px; /* High fidelity rendering of official logo */
    width: auto;
    display: block;
    transition: var(--transition-normal);
}

/* Dual-logo display toggles for scrolled (white background) vs top (transparent image background) header states */
.header:not(.scrolled) .logo-img-colored {
    display: none !important;
}

.header:not(.scrolled) .logo-img-white {
    display: block !important;
    height: 62px !important; /* 30% larger white logo at the top for high-impact brand visibility */
}

.header.scrolled .logo-img-colored {
    display: none !important; /* Hide colored logo in scrolled state to keep white branding */
}

.header.scrolled .logo-img-white {
    display: block !important; /* Show white logo in scrolled state */
    height: 48px !important; /* Elegant 48px height in scrolled header */
}

.logo-link:hover .logo-img {
    transform: scale(1.03);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    color: var(--color-text-white);
}

/* Transparent Header styles for high-contrast on hero image */
.header:not(.scrolled) .nav-link {
    color: var(--color-text-white);
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.header:not(.scrolled) .nav-link:hover, 
.header:not(.scrolled) .nav-link.active {
    color: var(--color-text-white);
}

.header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85); /* Semi-transparent white for non-active links */
    text-shadow: none !important;
}

.header.scrolled .nav-link:hover, 
.header.scrolled .nav-link.active {
    color: #ffffff; /* Solid white for active/hover states */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 5px;
    background: var(--color-accent);
    transition: var(--transition-fast);
}

.header:not(.scrolled) .nav-link::after {
    background: var(--color-text-white);
}

/* White underline for links on scrolled blue header */
.header.scrolled .nav-link::after {
    background: #ffffff;
}

/* White hamburger menu toggle icon on scrolled blue header */
.header.scrolled .menu-toggle {
    color: #ffffff !important;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* ==========================================================================
   DROPDOWN NAVIGATION MENU (CCN PREMIUM)
   ========================================================================== */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-icon {
    font-size: 0.65rem;
    margin-left: 6px;
    transition: transform var(--transition-fast);
}

.nav-item-dropdown:hover .nav-dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--color-bg-card);
    min-width: 180px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 3px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--color-border);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
    z-index: 1010;
    display: flex;
    flex-direction: column;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-main) !important;
    padding: 10px 20px;
    transition: background-color var(--transition-fast), color var(--transition-fast);
    text-shadow: none !important;
    text-align: left;
    white-space: nowrap;
}

.dropdown-item:hover {
    background-color: var(--color-accent-light);
    color: var(--color-accent) !important;
}

/* Sub-dropdown submenu styles */
.dropdown-submenu {
    position: relative;
    display: flex;
    flex-direction: column;
}

.dropdown-submenu .dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.dropdown-submenu .sub-chevron {
    font-size: 0.65rem;
    transition: transform var(--transition-fast);
    opacity: 0.7;
}

.dropdown-submenu .dropdown-menu-sub {
    position: absolute;
    top: 0;
    left: 100%;
    transform: translateX(10px);
    background-color: var(--color-bg-card);
    min-width: 180px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 3px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--color-border);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
    z-index: 1020;
    display: flex;
    flex-direction: column;
}

.dropdown-submenu:hover .dropdown-menu-sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu:hover .sub-chevron {
    transform: translateX(2px);
    color: var(--color-accent);
}

@media (max-width: 992px) {
    .dropdown-submenu .dropdown-item {
        pointer-events: auto;
    }
    
    .dropdown-submenu .sub-chevron {
        display: none;
    }
    
    .dropdown-submenu .dropdown-menu-sub {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--color-accent-light);
        margin-left: 15px;
        margin-top: 4px;
        padding: 4px 0 4px 15px;
        opacity: 1;
        visibility: visible;
        display: flex;
        min-width: 0;
        width: calc(100% - 15px);
        background: transparent;
        transition: none;
        gap: 8px;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Header buttons transparent styling when not scrolled */
.header:not(.scrolled) .btn-secondary {
    color: var(--color-text-white);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.15);
}

.header:not(.scrolled) .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-text-white);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary-dark);
}

.header:not(.scrolled) .menu-toggle {
    color: var(--color-text-white);
}

/* Mobile Nav Drawer Styles */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-bg-card);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 40px;
        gap: 28px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.08);
        transition: var(--transition-normal);
        border-left: 1px solid var(--color-border);
        border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .header:not(.scrolled) .nav-link {
        color: var(--color-text-main);
        text-shadow: none;
    }
    
    .header:not(.scrolled) .nav-link:hover,
    .header:not(.scrolled) .nav-link.active {
        color: var(--color-accent-hover);
    }
    
    .header:not(.scrolled) .nav-link::after {
        background: var(--color-accent-hover);
    }

    /* Keep mobile drawer links dark and legible when scrolled on small viewports */
    .header.scrolled .nav-link {
        color: var(--color-text-main) !important;
        text-shadow: none !important;
    }
    
    .header.scrolled .nav-link:hover,
    .header.scrolled .nav-link.active {
        color: var(--color-accent-hover) !important;
    }
    
    .header.scrolled .nav-link::after {
        background: var(--color-accent-hover) !important;
    }
    
    .nav-actions .btn {
        display: none;
    }

    /* Mobile Accordion Dropdown Navigation Menu */
    .nav-item-dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .nav-item-dropdown .nav-link {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-right: 10px;
    }
    
    .nav-item-dropdown .dropdown-menu {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--color-accent-light);
        margin-left: 4px;
        margin-top: 8px;
        padding: 4px 0 0 16px;
        opacity: 1;
        visibility: visible;
        display: none; /* Hidden by default on mobile, toggled open */
        min-width: 0;
        width: 100%;
        background: transparent;
        transition: none;
        gap: 16px;
    }
    
    .nav-item-dropdown.open .dropdown-menu {
        display: flex;
    }
    
    .nav-item-dropdown.open .nav-dropdown-icon {
        transform: rotate(180deg);
    }
    
    .dropdown-item {
        padding: 6px 0;
        font-size: 0.95rem;
        background: transparent !important;
        color: var(--color-text-muted) !important;
    }

    .dropdown-item:hover {
        color: var(--color-accent) !important;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    height: 38vw;
    min-height: 320px;
    max-height: 550px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* Remove dark overlay to keep Knaus keyvisual bright and vibrant */
    z-index: 3;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.hero-img.active {
    opacity: 1;
    z-index: 2;
}

/* Premium Brand Card in Hero */
.hero-brand-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--color-bg-card);
    padding: 24px 40px 24px 44px;
    border-radius: var(--border-radius-lg) 0 0 0;
    z-index: 10;
    box-shadow: -8px -8px 24px rgba(74, 74, 74, 0.04), -2px -2px 6px rgba(74, 74, 74, 0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.brand-card-subtitle {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    margin-bottom: 2px;
}

.brand-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    letter-spacing: -0.3px;
}

.brand-logos-container {
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand-logo-item {
    height: 48px;
    display: flex;
    align-items: center;
}

.brand-logo-item svg,
.brand-logo-item img,
.brand-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo-item:hover svg,
.brand-logo-item:hover img,
.brand-logo-item:hover .brand-logo-img {
    transform: scale(1.04);
}

.brand-divider {
    width: 1px;
    height: 36px;
    background-color: var(--color-border);
}

.hero-content-wrapper {
    position: relative;
    z-index: 5;
    max-width: 800px;
}

.hero-badge {
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--color-text-white);
}

.hero-title span {
    color: var(--color-accent);
}

.hero-desc {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-white);
    line-height: 1;
}

.stat-num span {
    color: var(--color-accent);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero {
        height: auto;
        min-height: 0;
        max-height: none;
        flex-direction: column;
        overflow: visible;
        padding-top: 60px;
    }
    
    .hero-bg {
        position: relative;
        height: 50vw;
        min-height: 220px;
        width: 100%;
    }
    
    .hero-brand-card {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        border-radius: 0;
        padding: 24px 20px;
        box-shadow: 0 4px 6px -1px rgba(74, 74, 74, 0.05);
        align-items: center;
        text-align: center;
        animation: none;
    }
    
    .brand-card-subtitle {
        text-align: center;
    }
    
    .brand-card-title {
        text-align: center;
        margin-bottom: 12px;
    }
    
    .brand-logos-container {
        justify-content: center;
        width: 100%;
        gap: 24px;
    }
    
    .brand-logo-item {
        height: 40px;
    }
    
    .brand-divider {
        height: 30px;
    }
}

/* ==========================================================================
   KNAUS GRAPHIC NAVIGATION ROW
   ========================================================================== */
.knaus-category-bar {
    background-color: #ffffff;
    padding: 36px 0 24px 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    z-index: 10;
    width: 100%;
}

.knaus-category-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    gap: 12px;
}

.knaus-category-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 130px;
    padding: 12px 8px;
    cursor: pointer;
    border-radius: var(--border-radius-md);
}

.knaus-category-img-wrapper {
    height: 72px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
}

.knaus-category-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
    transition: all 0.3s ease;
}

.knaus-category-label {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-main);
    transition: color 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

/* Premium Hover & Active States (Matching Knaus.com) */
.knaus-category-item:hover {
    background-color: transparent; /* Seamless transparent background matching Knaus.com */
}

.knaus-category-item:hover .knaus-category-img-wrapper {
    transform: translateY(-5px) scale(1.04); /* Smooth lift & subtle scale feedback */
}

.knaus-category-item:hover .knaus-category-img {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
}

.knaus-category-item:hover .knaus-category-label {
    color: var(--color-accent); /* CCN Green highlight */
}

/* Responsive Grid adjustments */
@media (max-width: 992px) {
    .knaus-category-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .knaus-category-item {
        flex: 0 0 calc(33.333% - 16px);
        min-width: 150px;
    }
}

@media (max-width: 600px) {
    .knaus-category-bar {
        padding: 24px 0 16px 0;
    }
    
    .knaus-category-container {
        gap: 10px;
    }
    
    .knaus-category-item {
        flex: 0 0 calc(50% - 10px);
        min-width: 130px;
        padding: 8px 4px;
    }
    
    .knaus-category-img-wrapper {
        height: 60px;
        margin-bottom: 10px;
    }
    
    .knaus-category-label {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   CARAVAN FINDER (INVENTORY)
   ========================================================================== */
.finder-controls {
    border-radius: var(--border-radius-md);
    padding: 30px;
    margin-bottom: 48px;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.7rem;
    color: var(--color-text-muted);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.filter-select {
    width: 100%;
    padding: 14px 16px;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-main);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-fast);
}

.filter-select:focus {
    border-color: var(--color-accent);
    background: var(--color-bg-card);
}

.filter-select option {
    background-color: var(--color-bg-card);
    color: var(--color-text-main);
}

.range-slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 700;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-accent);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(140, 189, 21, 0.4);
    transition: var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.filter-active-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.results-count {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.results-count span {
    color: var(--color-accent-hover);
    font-weight: 700;
}

.clear-filters {
    font-size: 0.9rem;
    color: var(--color-primary);
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.clear-filters:hover {
    color: var(--color-accent-hover);
}

/* Caravan Cards Grid */
.caravan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.caravan-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.caravan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(140, 189, 21, 0.3);
    box-shadow: var(--shadow-premium);
}

.card-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.caravan-card:hover .card-img {
    transform: scale(1.03);
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
}

.card-price-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 5;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.15rem;
    background: var(--color-accent);
    color: var(--color-text-white);
    border: 2px solid var(--color-bg-card);
    box-shadow: var(--shadow-md);
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: var(--color-text-main);
    font-weight: 700;
}

.card-subtitle {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.card-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
}

.spec-info {
    display: flex;
    flex-direction: column;
}

.spec-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
}

.spec-val {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-main);
    margin-top: 2px;
}

.spec-val i {
    color: var(--color-accent);
    margin-right: 4px;
}

.card-actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr;
}

.card-actions .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .caravan-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   WERKSTATT & SERVICE
   ========================================================================== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    border-radius: var(--border-radius-md);
    padding: 40px;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(140, 189, 21, 0.25);
    box-shadow: var(--shadow-premium);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--color-accent);
    margin-bottom: 24px;
    padding: 16px;
    background: var(--color-bg-dark);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--color-text-main);
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-accent);
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link::after {
    content: '→';
    transition: var(--transition-fast);
}

.service-card:hover .service-link::after {
    transform: translateX(4px);
}

/* ==========================================================================
   TESTIMONIALS (SLIDER)
   ========================================================================== */
.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 40px;
    text-align: center;
}

.quote-icon {
    font-size: 2.8rem;
    color: rgba(140, 189, 21, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-text-main);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary-dark);
}

.author-title {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.test-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: var(--color-bg-card);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.test-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: var(--color-bg-dark);
}

/* ==========================================================================
   KONTAKT FORMULAR
   ========================================================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
}

.contact-info-panel {
    border-radius: var(--border-radius-md);
    padding: 40px;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-info-heading {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.info-items-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.3rem;
    color: var(--color-accent);
    padding: 12px;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
}

.info-details {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    font-weight: 700;
}

.info-val {
    font-weight: 700;
    color: var(--color-text-main);
    margin-top: 4px;
}

.opening-hours-box {
    margin-top: auto;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.95rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
}

.hours-day {
    color: var(--color-text-muted);
}

.hours-time {
    font-weight: 700;
    color: var(--color-text-main);
}

.contact-form-panel {
    border-radius: var(--border-radius-md);
    padding: 48px;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-input-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    font-weight: 500;
    transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--color-accent);
    background: var(--color-bg-card);
    box-shadow: 0 0 8px rgba(140, 189, 21, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Success Animation Overlay */
.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-card);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.success-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--color-success);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    transform: scale(0.5);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-overlay.active .checkmark-circle {
    transform: scale(1);
}

.checkmark-circle::after {
    content: '✓';
    font-size: 3rem;
    color: var(--color-success);
    font-weight: 800;
}

.success-message {
    text-align: center;
    max-width: 320px;
}

.success-message h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .contact-form-panel {
        padding: 30px;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--color-primary-dark);
    border-top: 1px solid var(--color-border);
    padding: 80px 0 30px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer h1, .footer h2, .footer h3, .footer h4 {
    color: var(--color-text-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-about-desc {
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.social-btn:hover {
    color: var(--color-text-white);
    border-color: var(--color-accent);
    background: var(--color-accent);
    transform: translateY(-2px);
}

.footer-col-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-link:hover {
    color: var(--color-text-white);
    padding-left: 4px;
}

.footer .hours-time {
    color: var(--color-text-white);
}

.footer .hours-day {
    color: rgba(255, 255, 255, 0.6);
}

.map-placeholder {
    width: 100%;
    height: 150px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.map-placeholder::after {
    content: '📍 Wachtendonk (Niederrhein)';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-accent);
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .footer-link {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .footer-link:hover {
    color: var(--color-text-white);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================================================
   NEWS & NEW MODELS SECTION (KNAUS CAROUSEL SLIDER)
   ========================================================================== */
.news-carousel-wrapper {
    position: relative;
    padding: 0 45px; /* space for arrow buttons */
}

.news-carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.news-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Card stays at a fixed flex basis so that 3 fit perfectly on desktop */
.news-carousel-track .news-card {
    flex: 0 0 calc((100% - 60px) / 3); /* 3 cards visible, subtracting the gap (2 * 30px) */
    max-width: calc((100% - 60px) / 3);
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 0 0 32px 0;
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border: none;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.news-card {
    transition: box-shadow var(--transition-normal);
}

.news-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.02);
}

.news-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-card:hover .news-card-img {
    transform: scale(1.06);
}

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

.news-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.35;
    transition: color var(--transition-normal);
}

.news-card:hover .news-card-title {
    color: var(--color-accent);
}

.news-card-desc {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.news-card-link {
    align-self: flex-start;
    margin-top: auto;
    color: var(--color-accent) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast);
    text-shadow: none !important;
}

.news-card:hover .news-card-link {
    color: var(--color-accent-hover) !important;
}

.news-card-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.news-card:hover .news-card-link i {
    transform: translateX(6px);
}

.news-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.news-control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--color-border);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
    z-index: 10;
}

.news-control-btn:hover {
    background: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
    box-shadow: 0 6px 16px rgba(0, 67, 179, 0.2);
}

.news-control-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f1f5f9;
    color: #94a3b8;
    box-shadow: none;
    border-color: #cbd5e1;
}

.news-carousel-indicators {
    display: flex;
    gap: 8px;
    align-items: center;
}

.news-indicator {
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    display: inline-block;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.news-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    transition: transform var(--transition-fast);
    will-change: transform;
}

.news-indicator.active::after {
    transform: translate(-50%, -50%) scale(1);
}

.news-indicator:hover {
    transform: scale(1.15);
}

/* Responsive adjustment */
@media (max-width: 992px) {
    .news-carousel-wrapper {
        padding: 0 10px;
    }
    .news-carousel-controls {
        display: flex; /* Keep controls visible on mobile/tablet! */
        margin-top: 30px;
        gap: 16px;
    }
    .news-control-btn {
        width: 38px;
        height: 38px;
    }
    .news-carousel-track-container {
        overflow: hidden; /* Unified JS translation slider */
    }
    .news-carousel-track {
        gap: 20px;
    }
    .news-carousel-track .news-card {
        flex: 0 0 calc((100% - 20px) / 2); /* 2 cards visible on tablet */
        max-width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 600px) {
    .news-carousel-track .news-card {
        flex: 0 0 100%; /* 1 full card on mobile */
        max-width: 100%;
    }
    .news-card-img-wrapper {
        height: 190px;
    }
    .news-carousel-controls {
        gap: 12px;
        margin-top: 24px;
    }
}

/* ==========================================================================
   KNAUS DEALER SEARCH BANNER STYLE (SPLIT 50/50)
   ========================================================================== */
.partner-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    background-color: var(--color-accent);
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.partner-banner-img {
    background: url('assets/images/kta-knaus-section-haendlersuche.jpg') no-repeat 5% center / cover;
    width: 100%;
    min-height: 400px;
}

.partner-banner-content {
    background-color: var(--color-accent);
    color: var(--color-text-white);
    padding: 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-banner-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.25;
}

.partner-banner-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.partner-banner-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.partner-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.partner-btn-active {
    background-color: #ffffff;
    color: var(--color-accent);
    border: 2px solid #ffffff;
}

.partner-btn-active:hover {
    background-color: var(--color-accent-light);
    border-color: var(--color-accent-light);
}

.partner-btn-inactive {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.partner-btn-inactive:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.partner-banner-search {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    padding-bottom: 12px;
    max-width: 480px;
    position: relative;
    transition: border-color var(--transition-fast);
}

.partner-banner-search:focus-within {
    border-color: #ffffff;
}

.partner-search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 1.1rem;
    width: 60%;
    font-family: var(--font-body);
}

.partner-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.partner-search-link {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform var(--transition-fast);
    white-space: nowrap;
}

.partner-search-link i {
    font-size: 0.85rem;
    transition: transform var(--transition-fast);
}

.partner-search-link:hover i {
    transform: translateX(4px);
}

/* Responsive adjustment */
@media (max-width: 992px) {
    .partner-banner {
        grid-template-columns: 1fr;
    }
    .partner-banner-img {
        min-height: 320px;
    }
    .partner-banner-content {
        padding: 50px 30px;
    }
    .partner-banner-title {
        font-size: 1.85rem;
    }
}

/* ==========================================================================
   KNAUS SELECTION MODELS SECTION (DARK BLUE BG & 3 COLUMNS GRID)
   ========================================================================== */
.selection-section {
    background-color: #003c71; /* Ikonisches Knaus Dunkelblau */
    color: #ffffff;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.selection-title-container {
    text-align: center;
    margin-bottom: 50px;
}

.selection-section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.selection-card {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 0 0 32px 0; /* Exakter Knaus-Stil: Nur unten rechts abgerundet! */
    overflow: hidden;
    transition: box-shadow var(--transition-normal);
    border: none;
    cursor: pointer;
}

.selection-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.selection-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.selection-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.selection-card:hover .selection-card-img {
    transform: scale(1.06);
}

.selection-card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ffc800; /* Warmes Knaus Gold-Gelb */
    color: #1f2937;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.85rem;
    border-bottom-left-radius: 12px;
    letter-spacing: 0.2px;
    box-shadow: -2px 2px 8px rgba(0,0,0,0.1);
}

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

.selection-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.35;
    transition: color var(--transition-normal);
}

.selection-card:hover .selection-card-title {
    color: var(--color-accent);
}

.selection-card-desc {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.selection-card-link {
    align-self: flex-start;
    margin-top: auto;
    color: var(--color-accent) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast);
    text-shadow: none !important;
}

.selection-card:hover .selection-card-link {
    color: var(--color-accent-hover) !important;
}

.selection-card-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.selection-card:hover .selection-card-link i {
    transform: translateX(6px);
}

/* Responsive adjustment */
@media (max-width: 992px) {
    .selection-grid {
        grid-template-columns: 1fr 1fr;
    }
    .selection-section {
        padding: 60px 0;
    }
    .selection-section-title {
        font-size: 1.85rem;
    }
}

@media (max-width: 650px) {
    .selection-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .selection-section {
        padding: 50px 0;
    }
}

/* ==========================================================================
   KNAUS KONFIGURATOR BANNER
   ========================================================================== */
.configurator-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.configurator-banner-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.configurator-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 40, 0.65); /* Elegant dark semi-transparent blue overlay */
    z-index: 1;
}

.configurator-container {
    position: relative;
    z-index: 2;
    max-width: 900px !important;
    margin: 0 auto;
    padding: 0 20px;
}

.configurator-content {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.configurator-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.25;
}

.configurator-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #f3f4f6;
    margin-bottom: 35px;
    font-weight: 400;
}

.btn-configurator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-accent) !important; /* Brand Knaus Blue #2772B7 */
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 50px; /* Pill-style */
    border: none;
    box-shadow: 0 4px 15px rgba(39, 114, 183, 0.3);
    cursor: pointer;
    transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast) !important;
    text-shadow: none !important;
    text-decoration: none;
}

.btn-configurator:hover {
    background-color: var(--color-accent-hover) !important; /* #1e5d99 */
    box-shadow: 0 6px 20px rgba(30, 93, 153, 0.4);
}

.btn-configurator i {
    font-size: 0.85rem;
    transition: transform var(--transition-fast);
}

.btn-configurator:hover i {
    transform: translateX(6px); /* Chevron shifts seamlessly to the right on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .configurator-banner-bg {
        padding: 70px 0;
        min-height: 350px;
    }
    .configurator-title {
        font-size: 1.85rem;
        margin-bottom: 15px;
    }
    .configurator-desc {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .btn-configurator {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   KNAUS KONFIGURATOR BRIDGE MODAL
   ========================================================================== */
.bridge-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 15, 35, 0.75); /* Dark semi-transparent blue backdrop */
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.3s ease;
    padding: 20px;
}

.bridge-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
}

.bridge-modal-content {
    background-color: #ffffff;
    width: 100%;
    max-width: 860px;
    border-radius: 0 0 40px 0; /* Authentic Knaus asymmetrically rounded corner! */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    padding: 45px;
    z-index: 10001;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    overflow-y: auto;
    max-height: 90vh;
}

.bridge-modal.show .bridge-modal-content {
    transform: scale(1);
    opacity: 1;
}

.bridge-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: 300;
    color: #9ca3af;
    cursor: pointer;
    transition: color var(--transition-fast);
    line-height: 1;
}

.bridge-modal-close:hover {
    color: var(--color-accent);
}

.bridge-modal-header {
    margin-bottom: 35px;
}

.bridge-header-icon {
    font-size: 2.5rem;
    color: var(--color-accent); /* #2772B7 */
    margin-bottom: 12px;
}

.bridge-modal-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.bridge-modal-subtitle {
    font-size: 1rem;
    color: #6b7280;
}

.bridge-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.bridge-step-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.bridge-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: rgba(39, 114, 183, 0.3);
}

.bridge-step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    color: #ffffff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(39, 114, 183, 0.3);
}

.bridge-step-icon {
    font-size: 1.85rem;
    color: #4b5563;
    margin-bottom: 16px;
    transition: color var(--transition-fast);
}

.bridge-step-card:hover .bridge-step-icon {
    color: var(--color-accent);
}

.bridge-step-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.bridge-step-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
}

.bridge-modal-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-configurator-start {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-accent) !important; /* Knaus Blue */
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: 50px; /* Pill style */
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(39, 114, 183, 0.3);
    text-shadow: none !important;
    text-decoration: none;
    transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.btn-configurator-start:hover {
    background-color: var(--color-accent-hover) !important;
    box-shadow: 0 6px 20px rgba(30, 93, 153, 0.4);
    transform: scale(1.03);
}

.btn-bridge-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f1f5f9 !important;
    color: #334155 !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid #cbd5e1;
    cursor: pointer;
    transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast) !important;
}

.btn-bridge-secondary:hover {
    background-color: #e2e8f0 !important;
    border-color: #94a3b8;
    color: #0f172a !important;
}

.btn-bridge-secondary i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.btn-bridge-secondary:hover i {
    transform: translateX(4px);
}

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

/* Modal Responsive */
@media (max-width: 768px) {
    .bridge-modal-content {
        padding: 30px 20px;
    }
    .bridge-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    .bridge-step-card {
        padding: 20px 15px;
    }
    .bridge-modal-title {
        font-size: 1.5rem;
    }
    .bridge-modal-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .btn-configurator-start,
    .btn-bridge-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   KNAUS ICOMOON ICON FONT INTEGRATION
   ========================================================================== */
@font-face {
    font-family: 'icomoon';
    src: url('assets/fonts/icomoon.woff') format('woff'),
         url('assets/fonts/icomoon.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

[class^="icon-layout-reisemobil-"], [class*=" icon-layout-reisemobil-"] {
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mapping Knaus Icon codes */
.icon-layout-reisemobil-1::before {
    content: "\e907" !important; /* Beds icon */
    margin-right: 6px;
    font-size: 1.1rem;
}

.icon-layout-reisemobil-2::before {
    content: "\e906" !important; /* Seats icon */
    margin-right: 6px;
    font-size: 1.1rem;
}

.icon-layout-reisemobil-3::before {
    content: "\e908" !important; /* Length icon */
    margin-right: 6px;
    font-size: 1.1rem;
}

/* ==========================================================================
   PRODUCT SUBPAGE: KNAUS VAN TI SPECIFIC STYLES
   ========================================================================== */
.subpage-hero {
    height: 500px; /* Taller landscape banner height */
    width: 100%;
    min-height: auto;
    padding: 0;
    box-sizing: border-box;
    background-size: cover;
    background-position: center bottom;
    position: relative;
    display: block;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0) 100%); /* Subtle top gradient for header readability */
    z-index: 1;
}

.subpage-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.subpage-hero-content {
    max-width: 700px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.subpage-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(39, 114, 183, 0.25);
    border: 1px solid rgba(39, 114, 183, 0.4);
    color: #93c5fd;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.subpage-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.subpage-title span {
    color: var(--color-accent);
}

.subpage-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.5;
}

.subpage-hero-price-card {
    display: inline-flex;
    flex-direction: column;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-md);
    margin-bottom: 35px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.price-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
    font-weight: 600;
}

.price-val {
    font-size: 2rem;
    font-weight: 800;
    color: #93c5fd; /* Soft Blue accent */
    line-height: 1.1;
}

.price-info {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.subpage-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Subpage Grid Layouts */
.highlights-section {
    padding: 100px 0;
    background: var(--color-bg-dark);
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.highlights-content-block h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlights-content-block .lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.bullets-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bullets-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    font-size: 1rem;
    color: var(--color-text-main);
    font-weight: 500;
}

.bullets-list li i {
    color: var(--color-accent);
    font-size: 1rem;
    margin-top: 3px;
    background: var(--color-accent-light);
    padding: 6px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specifications Table Style */
.specs-table-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
}

.specs-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.specs-table {
    width: 100%;
}

.specs-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
}

.specs-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.specs-label {
    color: var(--color-text-muted);
    font-weight: 500;
}

.specs-value {
    font-weight: 700;
    color: var(--color-primary-dark);
}

/* Layout Cards styling */
.layouts-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.layouts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.layout-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.layout-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
}

.layout-card-img-wrapper {
    position: relative;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
}

.layout-card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.layout-card:hover .layout-card-img {
    transform: scale(1.03);
}

.layout-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.layout-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.layout-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary-dark);
}

.layout-card-badge {
    padding: 4px 12px;
    background: var(--color-accent-light);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
}

.layout-specs-list {
    margin-bottom: 30px;
    flex-grow: 1;
}

.layout-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--color-border);
    font-size: 0.9rem;
}

.layout-spec-row:last-child {
    border-bottom: none;
}

.layout-spec-label {
    color: var(--color-text-muted);
}

.layout-spec-value {
    font-weight: 600;
    color: var(--color-text-main);
}

.layout-card-actions {
    margin-top: auto;
}

.layout-card-actions .btn {
    width: 100%;
    justify-content: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Subpage */
@media (max-width: 992px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .layouts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .subpage-title {
        font-size: 2.5rem;
    }
    .layouts-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PRODUCT SUBMENU BAR (KNAUS STYLE DYNAMIC STICKY)
   ========================================================================== */
.product-submenu-bar {
    background-color: #2772B7; /* Brand Accent Blue */
    position: sticky;
    top: 72px; /* Sticks directly below the scrolled header */
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.submenu-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.submenu-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 14px 0;
}

.submenu-link {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 0;
    position: relative;
    transition: opacity 0.2s ease;
}

.submenu-link:hover {
    opacity: 0.85;
}

.submenu-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

.submenu-link-box {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #ffffff;
    padding: 6px 14px;
    transition: background-color 0.2s ease, color 0.2s ease;
    display: inline-block;
}

.submenu-link-box:hover {
    background-color: #ffffff;
    color: #2772B7 !important;
}

/* ==========================================================================
   SECTION 1: OVERRIDES AND LAYOUT FOR NEW HIGHLIGHTS
   ========================================================================== */
.highlights-section-new {
    padding: 80px 0;
    background: #eef2f6; /* Soft blue-grey background */
}

.highlights-title-new {
    font-size: 2.85rem;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
    line-height: 1.1;
}

.highlights-title-new span.bold-text {
    font-weight: 900;
}

.highlights-title-new span.thin-text {
    font-weight: 300;
}

.highlights-subtitle-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2772B7; /* Knaus Blue */
    margin-bottom: 24px;
}

.highlights-text-new {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

/* Redesigned 2-column benefit checkmark list */
.benefits-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    margin-bottom: 40px;
}

.benefit-item-new {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.benefit-item-new i {
    color: #2772B7;
    font-size: 1.1rem;
    font-weight: 900;
    margin-right: 10px;
}

/* Highlights Actions (Skewed buttons) */
.highlights-actions-new {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Overlapping Composition (Siegel & Freisteller) */
.visual-overlap-container {
    position: relative;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.visual-overlap-award {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    height: 130px;
    width: auto;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
}

.visual-overlap-camper {
    position: absolute;
    right: 0;
    bottom: -10px;
    z-index: 1;
    max-width: 82%;
    height: auto;
    transition: transform var(--transition-normal);
}

.visual-overlap-container:hover .visual-overlap-camper {
    transform: scale(1.03);
}

/* Price Block with Left divider */
.highlights-price-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    border-left: 2px solid rgba(74, 74, 74, 0.15);
    padding-left: 30px;
    text-align: right;
    margin-bottom: 20px;
}

.price-block-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-primary-light);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.price-block-val {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--color-primary-dark);
    line-height: 1.1;
}

/* ==========================================================================
   SECTION 2: SPECS & VIDEO MODULE (UNIFIED WHITE CARD)
   ========================================================================== */
.specs-video-card-section {
    padding: 80px 0;
    background: #eef2f6; /* Continues grey-blue background */
}

.specs-video-card {
    background: #ffffff;
    border-radius: 12px;             /* Clean moderate rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 0;
    overflow: hidden;                /* Force strict container clipping */
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    z-index: 1;
}

/* YouTube Video Component Layout */
.roomtour-video-player {
    display: flex;
    background: #000;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 12px 0 0 12px;   /* Explicitly round left side to fit outer card */
    overflow: hidden;
}

.video-main-preview {
    width: 72%;
    position: relative;
    aspect-ratio: 16/9;              /* Locked mathematically to 16:9 aspect ratio */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px 0 0 12px;   /* Explicitly round left side to match container */
    overflow: hidden;
}

/* YouTube Style Top Bar */
.video-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 18px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    border-radius: 12px 0 0 0;       /* Explicitly round top-left corner */
}

.video-knaus-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-knaus-logo img {
    width: 100%;
    height: auto;
}

.video-title-info {
    display: flex;
    flex-direction: column;
}

.video-main-title {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 380px;
}

.video-main-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    font-weight: 600;
    margin: 0;
}

/* Play Button overlay */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff0000;
    width: 58px;
    height: 40px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.2s, background-color 0.2s;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.video-play-btn::before {
    content: '';
    display: inline-block;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 2px;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #cc0000;
}

/* Link icon overlay bottom-left */
.video-link-icon-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.85rem;
    z-index: 3;
    cursor: pointer;
}

/* Stacked previews column */
.video-previews-column {
    width: 28%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-left: 2px solid #ffffff;  /* Premium clean white divider from screenshot */
}

.video-preview-thumb {
    height: 33.333%;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid #ffffff; /* Premium clean white divider from screenshot */
}

.video-preview-thumb:last-child {
    border-bottom: none;
}

.video-preview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-preview-thumb:hover img {
    transform: scale(1.08);
}

/* Youtube badge label */
.youtube-label-badge {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0,0,0,0.8);
    color: #ffffff;
    padding: 3px 6px;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 4;
    pointer-events: none;
}

.youtube-label-badge i {
    color: #ff0000;
    font-size: 0.75rem;
}

.specs-table-container {
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;         /* Perfectly centered vertically matching screenshot */
    background: #ffffff;
}

.specs-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;                  /* Exact dark charcoal text from screenshot */
    margin-top: 0;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1.5px solid #eceff1; /* Sharp clean border line under header */
    font-family: var(--font-heading), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.specs-table-rows {
    display: flex;
    flex-direction: column;
}

.specs-table-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;                 /* Airy vertical spacing matching screenshot */
    border-bottom: none !important;  /* No borders between rows matching screenshot */
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.specs-table-row:last-child {
    padding-bottom: 0;
}

.specs-table-label {
    color: #333333;                  /* Exact neutral dark grey from screenshot */
    font-weight: 400;                /* Regular weight matching screenshot */
}

.specs-table-value {
    color: #333333;                  /* Exact matching neutral dark grey */
    font-weight: 600;                /* Semi-bold text matching screenshot */
    text-align: right;
}

/* ==========================================================================
   SECTION 3: LAYOUT VARIANTS
   ========================================================================== */
.variants-section-new {
    padding: 80px 0;
    background: #eef2f6; /* Uniform grey-blue background */
    border-top: 1px solid rgba(74, 74, 74, 0.05);
}

.variants-header-new {
    text-align: center;
    margin-bottom: 40px;
}

.variants-header-new h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: #2772B7; /* Knaus Blue */
    margin: 0;
}

.variant-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;             /* Align start allows smooth height expansion of single items */
}

.variant-card-new {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.variant-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Upper gray container */
.variant-img-area {
    background: #e1e6eb; /* elegant gray base */
    padding: 12px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.variant-img-area img {
    max-width: 96% !important;
    max-height: 96% !important;
    opacity: 1 !important;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.variant-card-new:hover .variant-img-area img {
    transform: scale(1.05);
}

/* Title row with chevron */
.variant-title-row {
    background: #ffffff;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.variant-title-text {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-primary-dark);
    margin: 0;
}

.variant-chevron {
    color: var(--color-primary-dark);
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.variant-card-new:hover .variant-chevron {
    transform: translateX(4px);
    color: #2772B7;
}

/* Meta metadata row with three horizontal icons row (Permanently visible) */
.variant-icons-row {
    background: #ffffff;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.variant-icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.variant-icon-box {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.variant-icon-box svg {
    width: 18px;
    height: 18px;
}

.variant-icon-val {
    font-size: 0.85rem;
    color: #334155;
    font-weight: 500;
}

/* Hover Drawer (Slides open 1zu1 like Knaus) */
.variant-hover-drawer {
    background: #ffffff;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.35s ease;
}

/* Smooth expansion on card hover */
.variant-card-new:hover .variant-hover-drawer {
    max-height: 480px;              /* Fully expanded drawer height to fit specs, links and button */
    opacity: 1;
}

/* Specs list in the drawer */
.variant-specs-list {
    padding: 20px 24px 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.variant-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.variant-spec-label {
    font-size: 0.9rem;
    color: #0f172a;                 /* Bold dark text matching screenshot */
    font-weight: 700;
}

.variant-spec-value {
    font-size: 0.9rem;
    color: #334155;                 /* Regular aligned-right text matching screenshot */
    font-weight: 400;
    text-align: right;
}

/* Divider above links */
.variant-drawer-divider {
    height: 1px;
    background: rgba(226, 232, 240, 0.8);
    margin: 0 24px;
}

/* Blue text links list */
.variant-blue-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 24px 10px 24px;
    align-items: flex-start;
}

.variant-blue-link {
    color: #006cb7;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    cursor: pointer;
}

.variant-blue-link:hover {
    color: #005591;
    text-decoration: underline !important;
}

/* Button container and centered discovering button inside the drawer */
.variant-discover-btn-container {
    display: flex;
    justify-content: center;
    padding: 16px 24px 24px 24px;
}

.variant-discover-btn {
    background-color: #006cb7;     /* Premium Knaus Blue */
    color: #ffffff !important;
    padding: 14px 38px;
    border-radius: 50px;            /* Pill shape from screenshot */
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid #006cb7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    text-decoration: none !important;
    width: 100%;
}

.variant-discover-btn:hover {
    background-color: #005591;
    border-color: #005591;
}

/* ==========================================================================
   SECTION 4: DOUBLE GALLERY (FLUSH SIDE-BY-SIDE)
   ========================================================================== */
.double-gallery-container {
    display: flex;                  /* Flex layout allows width expansion on hover */
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #000;
}

.gallery-column-item {
    position: relative;
    flex: 1;                        /* Flex-grow evenly by default */
    aspect-ratio: 1.6 / 1;
    overflow: hidden;
    display: block;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Extremely smooth width accordion transition */
}

/* Accordion expand-shrink width hover effect */
.double-gallery-container:hover .gallery-column-item {
    flex: 0.8;                      /* Compress non-hovered item to 40% equivalent */
}

.double-gallery-container .gallery-column-item:hover {
    flex: 1.2;                      /* Expand hovered item to 60% equivalent */
}

.gallery-column-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Dark semi-transparent overlay to ensure text/button readability */
.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25); /* Subtle dark overlay by default */
    transition: background 0.45s ease;
    z-index: 1;
}

/* Centered button container */
.gallery-item-btn-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* White outlined button in the center (1zu1 Knaus style from screenshot) */
.gallery-item-btn {
    border: 2px solid #ffffff;
    border-radius: 50px;            /* Perfect pill shape */
    padding: 14px 38px;
    color: #ffffff !important;
    background: transparent;
    font-family: var(--font-heading), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-sizing: border-box;
    text-decoration: none !important;
}

.gallery-btn-chevron {
    font-size: 0.85rem;
    font-weight: 900;
    transition: transform 0.3s ease;
}

/* Hover effects */
.gallery-column-item:hover img {
    transform: scale(1.04);         /* Subtle premium zoom */
}

.gallery-column-item:hover .gallery-item-overlay {
    background: rgba(0, 0, 0, 0.45); /* Darkens the image beautiful to make white button pop, 1zu1 like screenshot */
}

.gallery-column-item:hover .gallery-item-btn {
    background-color: #ffffff;
    color: #0f172a !important;     /* Clean dark blue/slate text on hover */
    border-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.gallery-column-item:hover .gallery-btn-chevron {
    transform: translateX(4px);
}

/* ==========================================================================
   RESPONSIVE DESIGN ADDITIONS
   ========================================================================== */
@media (max-width: 992px) {
    .product-submenu-bar {
        top: 60px; /* Aligns under mobile header */
    }
    .submenu-links {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 15px;
        gap: 16px;
        -webkit-overflow-scrolling: touch;
    }
    .submenu-links::-webkit-scrollbar {
        display: none;
    }
    .submenu-link, .submenu-link-box {
        white-space: nowrap;
    }
    .specs-video-card {
        grid-template-columns: 1fr;
    }
    .specs-table-container {
        padding: 30px;
    }
    .variant-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-submenu-bar {
        top: 50px;
    }
    .highlights-title-new {
        font-size: 2.25rem;
    }
    .benefits-grid-new {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .visual-overlap-container {
        height: 200px;
    }
    .visual-overlap-award {
        height: 100px;
    }
    .roomtour-video-player {
        flex-direction: column;
    }
    .video-main-preview {
        width: 100%;
    }
    .video-previews-column {
        width: 100%;
        flex-direction: row;
        height: 70px;
        border-left: none;
        border-top: 2px solid #ffffff;  /* Premium clean white divider */
    }
    .video-preview-thumb {
        height: 100%;
        width: 33.333%;
        border-bottom: none;
        border-right: 2px solid #ffffff; /* Premium clean white divider */
    }
    .video-preview-thumb:last-child {
        border-right: none;
    }
    .variant-cards-grid {
        grid-template-columns: 1fr;
    }
    .double-gallery-container {
        flex-direction: column;
    }
    .gallery-column-item {
        flex: none !important;
        width: 100%;
    }
}

/* ==========================================================================
   KNAUS OFFICIAL FLAT BUTTONS (1zu1 Knaus Style - Pill Shape)
   ========================================================================== */
.btn-knaus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 38px;
    font-family: var(--font-heading), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;            /* Pill shape from screenshot */
    cursor: pointer;
    transition: all 0.25s ease;
    gap: 14px;                      /* Clean spacing before chevron */
    text-decoration: none !important;
    text-transform: none;
    letter-spacing: 0.1px;
    transform: none !important;     /* Force override slanted slant skew */
    box-sizing: border-box;
    border: none;
}

.btn-knaus > * {
    transform: none !important;     /* Force override nested skew correction */
}

.btn-knaus i {
    font-size: 0.85rem;
    font-weight: 900;
    transition: transform 0.25s ease;
    transform: none !important;
}

.btn-knaus-primary {
    background-color: #006cb7;     /* Vivid Knaus Blue from screenshot */
    color: #ffffff !important;
    border: 2px solid #006cb7;
}

.btn-knaus-primary:hover {
    background-color: #005591;     /* Darker Knaus blue on hover */
    border-color: #005591;
    color: #ffffff !important;
}

.btn-knaus-primary:hover i {
    transform: translateX(3px) !important;
}

.btn-knaus-secondary {
    background-color: transparent;
    color: #006cb7 !important;
    border: 2px solid #006cb7;     /* Pill border from screenshot */
}

.btn-knaus-secondary:hover {
    background-color: rgba(0, 108, 183, 0.06); /* Soft vivid blue overlay */
    color: #005591 !important;
    border-color: #005591;
}

.btn-knaus-secondary:hover i {
    transform: translateX(3px) !important;
}

/* Ensure mobile layout displays buttons beautifully stacked if viewport gets narrow */
@media (max-width: 480px) {
    .highlights-actions-new {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .btn-knaus {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}

/* ==========================================================================
   KNAUS WOHNMOBILE OVERVIEW PAGE STYLES (1zu1 Knaus.com)
   ========================================================================== */

/* Hero Banner Sektion */
.overview-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.overview-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6); /* Soft luxurious dark overlay */
}

.overview-hero-container {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.overview-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-family: var(--font-heading), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.overview-hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
}

/* Filter-Sektion & Grundriss-Berater */
.overview-filter-section {
    padding: 60px 0 20px 0;
    background: #f8fafc;
}

.finder-widget-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    padding: 35px;
    margin-top: -120px; /* Pulls widget up into the Hero banner like premium builders */
    position: relative;
    z-index: 10;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.finder-widget-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.finder-icon {
    font-size: 2.2rem;
    color: #006cb7;
    margin-top: 4px;
}

.finder-title {
    font-size: 1.6rem;
    font-weight: 850;
    color: var(--color-primary-dark);
    margin: 0 0 6px 0;
}

.finder-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

.finder-select-group {
    display: flex;
    gap: 24px;
    width: 100%;
    align-items: flex-end;
}

.finder-select-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.finder-select-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.finder-select-wrapper {
    position: relative;
    width: 100%;
}

.finder-select-wrapper::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #64748b;
    pointer-events: none;
}

.finder-select-element {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    border: 1px solid #cbd5e1;
    font-size: 0.95rem;
    color: #1e293b;
    background: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.finder-select-element:focus {
    border-color: #006cb7;
    box-shadow: 0 0 0 3px rgba(0, 108, 183, 0.15);
    outline: none;
}

/* KNAUS Layout Filter (Kapsel-Tabs) */
.module-layout-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 40px 0 10px 0;
    padding: 0;
    list-style: none;
}

.module-layout-filter li {
    display: inline-block;
    position: relative;
    margin-right: -1px;
    cursor: pointer;
    border-left: 1px solid #0062a2;
    border-right: 1px solid #0062a2;
    transition: transform 0.25s cubic-bezier(.165,.84,.44,1), box-shadow 0.25s cubic-bezier(.165,.84,.44,1);
    z-index: 5;
}

.module-layout-filter li:first-child {
    border-left: 0 none;
}

.module-layout-filter li:last-child {
    margin: 0;
    border-right: 0 none;
}

.module-layout-filter li.active,
.module-layout-filter li.-active {
    transform: scale(1.1);
    z-index: 10;
}

.module-layout-filter li a {
    display: block;
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 28px;
    background-color: #0072bb;
    box-shadow: 0 0 10px -4px transparent;
    transition: background 0.25s cubic-bezier(.165,.84,.44,1), box-shadow 0.25s cubic-bezier(.165,.84,.44,1);
}

.module-layout-filter li:hover a {
    background-color: #0078c5;
}

.module-layout-filter li:first-child a {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

.module-layout-filter li:last-child a {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}

.module-layout-filter li.active a,
.module-layout-filter li.-active a {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background-color: #0062a2;
}

.active-filters-info {
    text-align: center;
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 24px;
}

/* Baureihen Grid Sektion */
.overview-models-section {
    padding: 20px 0 80px 0;
    background: #f8fafc;
}

.overview-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.overview-card {
    background: #ffffff;
    border-radius: 2px 2px 20px 2px;
    box-shadow: 0 25px 25px -25px rgba(0,0,0,0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s cubic-bezier(.165,.84,.44,1), border-radius 0.25s cubic-bezier(.165,.84,.44,1);
}

.overview-card:hover {
    box-shadow: 0 25px 35px -10px rgba(0,0,0,0.2);
}

.module-layout-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
    color: inherit;
}

.layout-box__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 690/410;
    background: linear-gradient(to bottom, #c8cfd6 0%, #dde1e2 100%);
}

.layout-box__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.layout-box__image .image__hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    transition: opacity 0.25s cubic-bezier(.165,.84,.44,1) 0.1s, transform 0.45s cubic-bezier(.165,.84,.44,1);
    z-index: 10;
}

.overview-card:hover .image__hover,
.module-layout-box:hover .image__hover {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.25s cubic-bezier(.165,.84,.44,1), transform 0.45s cubic-bezier(.165,.84,.44,1);
}

.image__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #0072bb; /* Knaus Blue */
    color: #fff;
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
    border-radius: 2px;
}

.image__badge strong {
    font-weight: 900;
}

.layout-box__content {
    padding: 24px 24px 12px 24px;
}

.content__headline {
    font-size: 1.35rem;
    font-weight: 900;
    color: #002e60; /* Dark blue */
    font-family: var(--font-heading), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    align-items: center;
}

.icon-chevron-right-after {
    display: flex;
    align-items: center;
    width: 100%;
}

.icon-chevron-right-after::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.9rem;
    color: #0072bb;
    margin-left: auto;
    transition: transform 0.25s ease;
}

.module-layout-box:hover .icon-chevron-right-after::after {
    transform: translateX(4px);
}

.icon-chevron-right-after span {
    font-size: 0.92rem;
    font-weight: 500;
    color: #707070;
    margin-left: 12px;
}

.layout-box__highlights-content {
    display: flex;
    padding: 0 24px 24px 24px;
    gap: 20px;
    margin-top: auto;
}

.highlights-content {
    font-size: 0.85rem;
    color: #707070;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlights-content::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-model-reisemobil-1::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23707070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 4v16M2 20h20M22 20V11a2 2 0 0 0-2-2H10a2 2 0 0 0-2 2v9M6 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2z'/%3E%3C/svg%3E");
}

.icon-model-reisemobil-2::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23707070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='9' y='9' width='6' height='6' rx='1'/%3E%3Cpath d='M12 2v7M12 15v7M10 12h4'/%3E%3C/svg%3E");
}

.icon-model-reisemobil-3::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23707070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='9' y1='3' x2='9' y2='21'/%3E%3Cline x1='15' y1='3' x2='15' y2='21'/%3E%3Cline x1='3' y1='9' x2='21' y2='9'/%3E%3Cline x1='3' y1='15' x2='21' y2='15'/%3E%3C/svg%3E");
}

/* Info und Download-Sektion */
.overview-info-section {
    padding: 60px 0;
    background: #f1f5f9;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.overview-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-teaser-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.3s;
}

.info-teaser-card:hover {
    transform: translateY(-4px);
}

.info-teaser-icon {
    font-size: 2.5rem;
    color: #006cb7;
    margin-bottom: 20px;
    display: block;
}

.info-teaser-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin: 0 0 12px 0;
}

.info-teaser-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .overview-hero-title {
        font-size: 2.75rem;
    }
    .finder-select-group {
        flex-direction: column;
        gap: 16px;
    }
    .finder-select-col {
        width: 100%;
    }
    .overview-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .overview-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .overview-hero {
        height: 320px;
    }
    .overview-hero-title {
        font-size: 2.25rem;
    }
    .finder-widget-card {
        margin-top: -60px;
        padding: 20px;
    }
    .finder-widget-header {
        flex-direction: column;
        gap: 10px;
    }
    .finder-icon {
        font-size: 1.8rem;
    }
    .overview-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   B2B LOGIN & REGISTRATION SYSTEM STYLES
   ========================================================================== */

/* Schloss-Icon im Hauptmenü */
.nav-lock-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    height: auto !important;
    margin-left: -4px; /* Visuell direkt an das Pfeilchen geschoben */
    background: transparent !important;
    color: #ffffff !important; /* Immer weißes Schloss */
    font-size: 0.6rem; /* Extrem klein und unauffällig */
    transition: transform 0.2s ease, opacity 0.2s ease;
    /* Dezenter Schatten für Sichtbarkeit auf weißem Grund */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 0, 0, 0.6);
}

.nav-lock-btn:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Login-Hintergrund & Layout */
.login-body {
    background: radial-gradient(circle at center, #003a78 0%, #001c3d 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body), sans-serif;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.login-container {
    width: 100%;
    max-width: 450px;
}

.login-logo {
    text-align: center;
    margin-bottom: 25px;
}

.login-logo img {
    height: 62px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.login-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.login-title {
    font-family: var(--font-heading), sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.login-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    padding: 4px;
    margin-bottom: 30px;
}

.login-tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 15px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.25s ease;
}

.login-tab-btn.active {
    background: var(--color-accent, #8cbd15);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(140, 189, 21, 0.4);
}

.login-form-group {
    margin-bottom: 20px;
    position: relative;
}

.login-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 1rem;
    color: #ffffff;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

.login-input:focus {
    outline: none;
    border-color: var(--color-accent, #8cbd15);
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 10px rgba(140, 189, 21, 0.25);
}

.password-toggle-icon {
    position: absolute;
    right: 15px;
    top: 38px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.password-toggle-icon:hover {
    color: #ffffff;
}

.login-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.login-checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--color-accent, #8cbd15);
    cursor: pointer;
}

.login-checkbox-group label {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
}

.login-checkbox-group a {
    color: var(--color-accent, #8cbd15);
    text-decoration: none;
}

.login-checkbox-group a:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--color-accent, #8cbd15) 0%, #759e10 100%);
    border: none;
    border-radius: 6px;
    color: #ffffff;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease;
    margin-top: 10px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140, 189, 21, 0.4);
}

.login-btn:active {
    transform: translateY(0);
}

.login-error-message {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
    color: #fca5a5;
    padding: 12px 16px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    display: none;
    animation: shake 0.4s ease-in-out;
}

.login-success-message {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 6px;
    color: #a7f3d0;
    padding: 12px 16px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    display: none;
    text-align: center;
}

.login-back-link {
    display: block;
    text-align: center;
    margin-top: 25px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.login-back-link:hover {
    color: #ffffff;
}

/* AGB Overlay in intern.html (Falls noch nicht bestätigt) */
.agb-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 28, 61, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.agb-modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    padding: 40px;
    box-sizing: border-box;
    color: var(--color-text-dark);
}

.agb-modal-title {
    font-family: var(--font-heading), sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #002e60;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f4f8;
    padding-bottom: 15px;
}

.agb-text-box {
    height: 200px;
    overflow-y: scroll;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    line-height: 1.6;
    background: #f7fafc;
}

.agb-confirm-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.agb-confirm-group input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #8cbd15;
    transform: scale(1.2);
    cursor: pointer;
}

.agb-confirm-group label {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
}

.agb-submit-btn {
    background: #8cbd15;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(140, 189, 21, 0.3);
    transition: all 0.25s ease;
    width: 100%;
}

.agb-submit-btn:disabled {
    background: #cbd5e0;
    box-shadow: none;
    cursor: not-allowed;
}

.agb-submit-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(140, 189, 21, 0.4);
}

/* Shake Animation bei Fehlern */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

/* Responsive Anpassungen für Mobile Navigation */
@media (max-width: 768px) {
    .nav-lock-btn {
        margin-left: 0;
        width: auto !important;
        height: auto !important;
        background-color: transparent !important;
        color: var(--color-accent, #8cbd15) !important;
        border-radius: 0;
        box-shadow: none !important;
        padding: 15px 20px !important;
        justify-content: flex-start !important;
        font-size: 1.1rem !important;
    }
}

/* ==========================================================================
   KNAUS 1-TO-1 OFFICIAL TABLE & LIST STYLING
   ========================================================================== */

/* 1. ce-table (Serienausstattung / Preise Black Selection) */
.ce-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
    color: var(--color-text-main, #333333);
}

.ce-table th, .ce-table td {
    padding: 12px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    vertical-align: middle;
}

.ce-table th {
    font-weight: 700;
    color: var(--color-primary-dark, #0a2240);
    background-color: rgba(0, 0, 0, 0.02);
}

.ce-table td:last-child, .ce-table th:last-child {
    text-align: right;
}

.ce-table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.01);
}

.ce-table tfoot tr {
    font-weight: 700;
    border-top: 2px solid var(--color-primary-dark, #0a2240);
    background-color: rgba(140, 189, 21, 0.05);
}

.ce-table tfoot td {
    border-bottom: none;
    color: var(--color-primary-dark, #0a2240);
}

/* 2. techdatas & techdata--table */
.techdatas--techdata {
    margin-bottom: 30px;
}

.techdata--headline {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary-dark, #0a2240);
    margin-bottom: 12px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 6px;
}

.techdata--table {
    width: 100%;
    border-collapse: collapse;
}

.techdata--table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.techdata--table tr:last-child {
    border-bottom: none;
}

.techdata--table td {
    padding: 10px 14px;
    font-size: 0.9rem;
    color: var(--color-text-main, #333333);
}

.techdata--table td.col-0 {
    font-weight: 500;
    width: 75%;
}

.techdata--table td.col-1 {
    font-weight: 700;
    text-align: right;
    width: 25%;
}

/* 3. equipments & equipment--table */
.equipments--equipment {
    margin-bottom: 35px;
}

.equipment--headline {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary-dark, #0a2240);
    margin-bottom: 12px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 6px;
}

.equipment--table {
    width: 100%;
    border-collapse: collapse;
}

.equipment--table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.equipment--table tr:last-child {
    border-bottom: none;
}

.equipment--table td {
    padding: 10px 14px;
    font-size: 0.9rem;
    color: var(--color-text-main, #333333);
}

/* 4. packages & package--table */
.packages--package {
    margin-bottom: 40px;
    background: #ffffff;
    border: 1px solid var(--color-border, #e2e8f0);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.package--headline {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary-dark, #0a2240);
    background-color: #f8f9fa;
    padding: 16px 24px;
    margin: 0;
    border-bottom: 1px solid var(--color-border, #e2e8f0);
}

.package--table {
    width: 100%;
    border-collapse: collapse;
}

.package--table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package--table td {
    padding: 14px 24px;
    font-size: 0.9rem;
    color: var(--color-text-main, #333333);
}

.package--table td.col-1 {
    text-align: right;
    font-weight: 600;
    width: 120px;
}

.package--table tr.total-price-single-options {
    border-top: 2px solid var(--color-border, #e2e8f0);
    background-color: rgba(0, 0, 0, 0.01);
}

.package--table tr.total-price-single-options td {
    font-weight: 700;
    color: var(--color-primary-dark, #0a2240);
}

.package--table tr.package-price {
    background-color: rgba(140, 189, 21, 0.05);
    border-top: 1px solid rgba(140, 189, 21, 0.1);
}

.package--table tr.package-price td:first-child {
    font-weight: 800;
    color: var(--color-primary-dark, #0a2240);
}

.package--table tr.package-price td:last-child {
    font-weight: 800;
    color: var(--color-accent, #8cbd15);
}

.package--table tr.package-savings {
    background-color: rgba(39, 114, 183, 0.05);
    border-top: 1px solid rgba(39, 114, 183, 0.1);
}

.package--table tr.package-savings td:first-child {
    font-weight: 800;
    color: var(--color-primary-dark, #0a2240);
}

.package--table tr.package-savings td:last-child {
    font-weight: 800;
    color: #2772b7;
}

/* 5. extra-equipment (Sonderausstattung) */
.extra-equipment {
    margin-bottom: 40px;
    background: #ffffff;
    border: 1px solid var(--color-border, #e2e8f0);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.extra-equipment table {
    width: 100%;
    border-collapse: collapse;
}

.extra-equipment tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.extra-equipment th.main-heading {
    background-color: #f8f9fa;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--color-primary-dark, #0a2240);
    padding: 14px 20px;
    border-bottom: 2px solid var(--color-border, #e2e8f0);
    text-align: left;
}

.extra-equipment th.main-heading.price {
    text-align: right;
    width: 150px;
}

.extra-equipment th.main-heading.weight {
    text-align: center;
    width: 70px;
}

.extra-equipment th.main-heading.highlight {
    text-align: center;
    background-color: rgba(39, 114, 183, 0.08);
    color: #2772b7;
    width: 100px;
}

.extra-equipment th.main-heading.highlight a {
    color: #2772b7;
    text-decoration: underline;
}

.extra-equipment th.subheading-one {
    background-color: #f1f5f9;
    color: var(--color-primary-dark, #0a2240);
    font-weight: 800;
    text-align: left;
    padding: 12px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--color-border, #e2e8f0);
}

.extra-equipment td {
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--color-text-main, #333333);
    vertical-align: middle;
}

.extra-equipment td.col-0 {
    font-weight: 500;
}

.extra-equipment td.col-1 {
    text-align: center;
    font-weight: 600;
    color: var(--color-text-muted, #666666);
}

.extra-equipment td.col-2 {
    text-align: right;
    font-weight: 700;
    color: var(--color-text-main, #333333);
}

.extra-equipment td.col-3.highlight {
    text-align: center;
    background-color: rgba(39, 114, 183, 0.02);
}

/* Optional/Checked icons on Sonderausstattung */
.icon-table-optional-before::before {
    content: "•";
    font-size: 1.8rem;
    color: var(--color-accent, #8cbd15);
    display: inline-block;
    line-height: 0.5;
    vertical-align: middle;
}

.icon-table-checked-before::before {
    content: "✓";
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--color-accent, #8cbd15);
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

/* 6. -styled-list (Bullet lists) */
.-styled-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.-styled-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--color-text-main, #333333);
}

.-styled-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #2772b7; /* Knaus Blue */
    font-size: 0.85rem;
    top: 3px;
}

/* 7. techdata__table & slide-content__row (Highlights layouts card details) */
.techdata__table {
    display: flex;
    flex-direction: column;
    margin: 15px 0;
    width: 100%;
}

.slide-content__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.92rem;
}

.slide-content__row.last {
    border-bottom: none;
}

.slide-content__row .row__label {
    color: var(--color-text-muted, #666666);
    font-weight: 500;
}

.slide-content__row .row__value {
    color: var(--color-primary-dark, #0a2240);
    font-weight: 700;
    text-align: right;
}

/* ==========================================================================
   GLOBAL ACCORDION STYLES
   ========================================================================== */
.ccn-accordion[open] .accordion-icon {
    transform: rotate(180deg);
}
.ccn-accordion-summary::-webkit-details-marker {
    display: none;
}
.ccn-accordion-summary:focus {
    outline: none;
}

/* ==========================================================================
   MOTORHOME & CARAVAN SUBPAGES STYLES
   ========================================================================== */
/* Anchor Bar styles */
.anchor-bar-new {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 15px 0;
    position: sticky;
    top: 135px;
    z-index: 99;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.anchor-bar-container-new {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}
.anchor-bar-link-new {
    color: var(--color-text-muted);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
.anchor-bar-link-new:hover, .anchor-bar-link-new.active {
    color: var(--color-accent);
}

/* Flex row for card lists (Swiper replacement) */
.specs-cards-scroll-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 10px 0 25px;
    margin-top: 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) rgba(0,0,0,0.05);
}
.specs-cards-scroll-row::-webkit-scrollbar {
    height: 6px;
}
.specs-cards-scroll-row::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 3px;
}
.specs-cards-scroll-row::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 3px;
}

.spec-slide-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.spec-slide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.spec-card-image-box {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.spec-card-image-box img, .spec-card-image-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.spec-slide-card:hover .spec-card-image-box img {
    transform: scale(1.05);
}
.spec-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(39, 114, 183, 0.9);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
    z-index: 2;
}
.spec-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.spec-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}
.spec-card-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Cozy Home section */
.cozy-home-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    color: #fff;
}
.cozy-home-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.cozy-home-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* 2 Column Layout blocks */
.yaseo-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}
.yaseo-row-2col.inverted {
    direction: rtl;
}
.yaseo-row-2col.inverted .yaseo-text-col {
    direction: ltr;
}
.yaseo-text-col h3 {
    font-size: 1.8rem;
    color: var(--color-primary-dark);
    font-weight: 800;
    margin-bottom: 15px;
}
.yaseo-text-col p {
    color: var(--color-text-main);
    line-height: 1.7;
    font-size: 1.05rem;
}
.yaseo-media-col {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #000;
    aspect-ratio: 16/10;
}
.yaseo-media-col img, .yaseo-media-col video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.yaseo-caption {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
}
@media (max-width: 768px) {
    .yaseo-row-2col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .yaseo-row-2col.inverted {
        direction: ltr;
    }
}





