/* ======================================================================
   OG Veranda - Modern Enterprise Design System
   ====================================================================== */

/* ======================================================================
   CSS VARIABLES - Modern Design System
   ====================================================================== */
:root {
    /* Primary Brand Colors */
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;
    --primary-950: #172554;
    
    /* Neutral Colors */
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    --neutral-950: #020617;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: 1.25rem;
}

/* ======================================================================
   Reset and Base Styles
   ====================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--neutral-900);
    background-color: var(--neutral-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ======================================================================
   MODERN HEADER & NAVIGATION - PROFESSIONAL DESIGN
   ====================================================================== */

/* Header Styles - Modern & Professional */
.header {
    background: transparent;
    position: relative;
    z-index: 1000;
}

/* Navigation Bar - Sticky */
.header__nav-wrapper {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15),
                0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.header__nav-wrapper.scrolled {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25),
                0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Navigation - Modern Layout */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 40px;
}

/* Logo - Large & Prominent */
.nav__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 10;
}

.nav__logo .logo {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) 
            brightness(1.05) 
            contrast(1.1);
}

.nav__logo .logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4)) 
            brightness(1.1) 
            contrast(1.15);
}

.header__nav-wrapper.scrolled .nav__logo .logo {
    height: 60px;
    max-width: 240px;
}

/* Navigation Menu - Modern Design */
.nav__menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav__item {
    position: relative;
}

.nav__item.has-submenu:hover .nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Navigation Links - Modern Styling */
.nav__link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 20px;
    border-radius: 12px;
    display: block;
    background: transparent;
    border: 2px solid transparent;
    position: relative;
    white-space: nowrap;
    font-size: 15px;
    letter-spacing: -0.01em;
}

.nav__link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link:hover::before,
.nav__link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.nav__link.has-arrow::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.75em;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.nav__item.has-submenu:hover .nav__link.has-arrow::after {
    transform: rotate(180deg);
}

/* Submenu - Modern Dropdown */
.nav__submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #ffffff;
    min-width: 240px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav__submenu-item {
    margin: 0;
}

.nav__submenu-link {
    display: block;
    padding: 14px 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    border: none;
    background: transparent;
    position: relative;
}

.nav__submenu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 0 2px 2px 0;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__submenu-link:hover {
    background: linear-gradient(90deg, #eff6ff 0%, #f0f7ff 100%);
    color: #3b82f6;
    transform: translateX(6px);
    padding-left: 24px;
}

.nav__submenu-link:hover::before {
    transform: translateY(-50%) scaleY(1);
}

.nav__submenu-link.active {
    background: linear-gradient(90deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    font-weight: 600;
    padding-left: 24px;
}

.nav__submenu-link.active::before {
    transform: translateY(-50%) scaleY(1);
}

/* Navigation Link Hover & Active States */
.nav__link:hover {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.15);
}

.nav__link.active {
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.2);
    font-weight: 700;
}

.nav__close {
    display: none;
}

/* Navigation Actions - Cart & Toggle */
.nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav__cart {
    position: relative;
    color: #ffffff;
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.nav__cart:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    border-color: rgba(59, 130, 246, 0.5);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.7rem;
    padding: 4px 7px;
    border-radius: 12px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    border: 2px solid #ffffff;
}

.nav__toggle {
    display: none !important; /* Hidden on desktop, shown only on mobile */
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    background: rgba(59, 130, 246, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.3);
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.nav__toggle:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    border-color: rgba(59, 130, 246, 0.5);
}

.nav__toggle:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Header Features - Modern Design (Scrolls with page) */
.header-features {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    padding: 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.header-features__content {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 16px 0;
    position: relative;
}

.header-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #93c5fd 20%, 
        #ffffff 50%, 
        #93c5fd 80%, 
        transparent 100%);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.header-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-feature:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.header-feature i {
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.header-feature:hover i {
    color: #fbbf24;
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(251, 191, 36, 0.4));
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 20px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #3b82f6;
}

.breadcrumb i {
    color: #999;
    font-size: 0.7rem;
}

.breadcrumb span {
    color: #333;
    font-weight: 500;
}

/* Hero Section */
/* ======================================================================
   MODERN HERO SECTION - Enterprise Level Design
   ====================================================================== */
.hero {
    position: relative;
    background-image: url('../images/hero_img.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 100px 20px;
    overflow: hidden;
}

/* Removed gradientShift animation - using static background image */

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    animation: gridMove 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 50px;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out;
}

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

.hero h1,
.hero p {
    color: #ffffff !important;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p {
    font-size: 1.3rem !important;
    margin-bottom: 2.5rem !important;
    opacity: 0.95;
    line-height: 1.7 !important;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1e40af 100%);
    color: white;
    border-color: #3b82f6;
    box-shadow: 
        0 4px 12px rgba(59, 130, 246, 0.3),
        0 2px 6px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary > * {
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(59, 130, 246, 0.4),
        0 6px 15px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.98);
    color: #0f172a;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: white;
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(255, 255, 255, 0.4),
        0 6px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Product Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.category-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    border-color: #3b82f6;
}

.category-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(30, 64, 175, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.category-content {
    padding: 30px;
    text-align: center;
}

.category-content h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
}

.category-content p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ======================================================================
   MODERN FEATURES SECTION - Enterprise Level Design
   ====================================================================== */
.features {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.2) 50%, 
        transparent 100%);
}

.features .container h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
}

.features .container h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

.features .container h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

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

.feature-card {
    background: #ffffff;
    padding: 48px 36px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1e40af 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 
        0 8px 20px rgba(59, 130, 246, 0.25),
        0 4px 10px rgba(59, 130, 246, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-icon i {
    font-size: 2.25rem;
    color: white;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 30px rgba(59, 130, 246, 0.35),
        0 6px 15px rgba(59, 130, 246, 0.25);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #3b82f6;
}

.feature-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
}

/* Instagram Grid */
.instagram-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.instagram-post {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.instagram-post:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.instagram-post:hover img {
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__logo .logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #3b82f6;
}

.footer__description {
    opacity: 0.9;
    line-height: 1.6;
}

.footer__links {
    list-style: none;
    padding: 0;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__link {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer__link:hover {
    opacity: 1;
    color: #3b82f6;
    transform: translateX(5px);
}

.footer__social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer__social-link {
    color: white;
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: #3b82f6;
    transform: translateY(-3px);
}

.footer__copy {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.footer__credit {
    text-align: center;
    margin-top: 8px;
    font-size: 0.8125rem;
    opacity: 0.75;
}

.footer__credit a,
.footer__credit-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer__credit a:hover,
.footer__credit-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom .footer-credit,
.footer-bottom-content .footer-credit {
    font-size: 0.8125rem;
    opacity: 0.85;
    margin-top: 6px;
}

.footer-bottom .footer-credit a,
.footer-bottom-content .footer-credit a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom .footer-credit a:hover,
.footer-bottom-content .footer-credit a:hover {
    text-decoration: underline;
}

/* Shop Page */
.shop-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.shop-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
}

.shop-filters {
    background: white;
    padding: 35px;
    border-radius: 24px;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.filter-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.filter-section h3 i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.filter-group {
    margin-bottom: 32px;
}

.filter-group h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 16px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.filter-option:hover {
    background: #f8f9fa;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.filter-option span {
    color: #334155;
    font-size: 0.95rem;
    font-weight: 500;
}

.filter-option span i {
    color: #3b82f6;
    margin-right: 6px;
}

.shop-content {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15),
                0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.product-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-card-content {
    padding: 24px;
}

.product-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-card-price {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

/* Cart Page */
/* ======================================================================
   MODERN CART PAGE STYLES - Enterprise Level Design
   ====================================================================== */

/* Page Header Modern */
.page-header-modern {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header-modern .container {
    position: relative;
    z-index: 2;
}

.page-header-modern h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-header-modern p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.page-header-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        transparent 50%,
        rgba(30, 64, 175, 0.05) 100%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.breadcrumb-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #60a5fa;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.page-title-modern {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.page-subtitle-modern {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Cart Section Modern */
.cart-section-modern {
    padding: 56px 0 100px;
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 50%, #f8fafc 100%);
    min-height: 60vh;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
}

/* Cart Main */
.cart-main {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cart-header-modern {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.cart-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    letter-spacing: -0.02em;
}

.cart-title i {
    color: #2563eb;
    font-size: 1.25rem;
    opacity: 0.95;
}

.cart-items-badge {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.btn-clear-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-clear-cart:hover {
    border-color: #f87171;
    color: #dc2626;
    background: #fef2f2;
}

.btn-clear-cart i {
    font-size: 0.9rem;
}

/* Cart Items Wrapper */
.cart-items-wrapper {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    overflow: visible;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Modern Cart Item - Card style */
.cart-item-modern {
    display: grid;
    grid-template-columns: 180px 1fr 150px 170px;
    gap: 28px;
    padding: 28px 32px;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
    align-items: center;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cart-item-modern:hover {
    border-color: #cbd5e1;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.cart-item-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #059669 0%, #047857 50%, #065f46 100%);
    border-radius: 24px 0 0 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-item-modern:hover::before {
    opacity: 1;
}

/* Cart Item Image */
.cart-item-image {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.cart-item-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-item-modern:hover .cart-item-image::after {
    opacity: 1;
}

.cart-item-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cart-item-modern:hover .cart-item-image img {
    transform: scale(1.08);
}

/* Cart Item Details */
.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    flex: 1;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.cart-item-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s ease;
    flex: 1;
    letter-spacing: -0.02em;
}

.cart-item-name:hover {
    color: #059669;
}

.cart-item-remove {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    min-width: auto;
    width: auto;
    height: auto;
    border-radius: 12px;
    border: 1.5px solid #fecaca;
    background: #fff;
    color: #b91c1c;
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 700;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    border-color: #dc2626;
    color: #fff;
    background: #dc2626;
    transform: none;
}

.cart-item-remove i {
    font-size: 0.9rem;
}

.cart-item-options {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    padding: 14px 18px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.cart-item-options i {
    color: #059669;
    font-size: 0.875rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.cart-item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    flex-wrap: wrap;
}

.cart-item-sku,
.cart-item-category {
    font-size: 0.6875rem;
    color: #64748b;
    background: #fff;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid #e2e8f0;
}

.cart-item-price-mobile {
    display: none;
}

/* Cart Item Quantity */
.cart-item-quantity {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    min-width: 150px;
}

.quantity-label {
    font-size: 0.6875rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 6px;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: #fff;
    color: #059669;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.qty-btn:hover:not(:disabled) {
    background: #059669;
    color: #fff;
    transform: scale(1.06);
}

.qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.qty-input {
    width: 56px;
    height: 44px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Cart Item Pricing */
.cart-item-pricing {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    min-width: 170px;
    text-align: right;
}

.price-per-item,
.price-total {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 0.6875rem;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.price-value {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
}

.price-value-total {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    padding: 10px 18px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}

/* Empty Cart Modern */
.cart-empty-modern {
    padding: 80px 32px 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty-cart-illustration {
    position: relative;
    width: 220px;
    height: 220px;
    margin-bottom: 36px;
}

.empty-cart-icon-wrapper {
    width: 130px;
    height: 130px;
    background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.empty-cart-icon-wrapper i {
    font-size: 3.75rem;
    color: #94a3b8;
}

.empty-cart-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(29, 78, 216, 0.08) 100%);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 64px;
    height: 64px;
    top: 16px;
    left: 24px;
    animation-delay: 0s;
}

.shape-2 {
    width: 44px;
    height: 44px;
    top: 140px;
    right: 24px;
    animation-delay: 2s;
}

.shape-3 {
    width: 52px;
    height: 52px;
    bottom: 24px;
    left: 48px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-16px) scale(1.08);
        opacity: 0.9;
    }
}

.empty-cart-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.empty-cart-description {
    font-size: 1.0625rem;
    color: #64748b;
    margin-bottom: 36px;
    max-width: 420px;
    line-height: 1.6;
}

.btn-empty-cart {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.btn-empty-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* Continue Shopping */
.cart-continue-shopping {
    padding: 24px 0;
}

.link-continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.25s ease;
}

.link-continue-shopping:hover {
    color: #1d4ed8;
    gap: 14px;
}

/* Cart Summary Modern */
.cart-summary-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.cart-summary-modern .summary-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
}

.cart-summary-modern .summary-header {
    padding: 26px 28px;
    border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

.cart-summary-modern .summary-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    letter-spacing: -0.02em;
}

.cart-summary-modern .summary-title i {
    color: #2563eb;
    font-size: 1.125rem;
}

.cart-summary-modern .summary-content {
    padding: 24px 28px;
}

.cart-summary-modern .summary-row-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.cart-summary-modern .summary-label {
    font-size: 0.9375rem;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-summary-modern .summary-label i {
    color: #2563eb;
    font-size: 0.875rem;
}

.cart-summary-modern .summary-value {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.cart-summary-modern .summary-shipping {
    padding: 16px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin: 8px 0;
}

.cart-summary-modern .summary-shipping-free {
    color: #059669;
    font-weight: 800;
}

.cart-summary-modern .summary-divider-modern {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 25%, #e2e8f0 75%, transparent 100%);
    margin: 20px 0;
}

.cart-summary-modern .summary-total-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0;
    margin-top: 8px;
}

.cart-summary-modern .total-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
}

.cart-summary-modern .total-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.cart-summary-modern .summary-actions {
    padding: 0 28px 28px;
}

.cart-summary-modern .btn-checkout-modern {
    width: 100%;
    padding: 20px 28px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
    position: relative;
    overflow: hidden;
}

.cart-summary-modern .btn-checkout-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.cart-summary-modern .btn-checkout-modern:hover::before {
    left: 100%;
}

.cart-summary-modern .btn-checkout-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.cart-summary-modern .btn-checkout-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.cart-summary-modern .btn-checkout-arrow {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cart-summary-modern .btn-checkout-modern:hover .btn-checkout-arrow {
    transform: translateX(5px);
}

.cart-summary-modern .summary-trust-badges {
    padding: 24px 28px;
    border-top: 1px solid #f1f5f9;
    background: #fafbfc;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-summary-modern .trust-badge-modern {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-summary-modern .trust-badge-modern i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0625rem;
    flex-shrink: 0;
}

.cart-summary-modern .trust-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-summary-modern .trust-badge-text strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
}

.cart-summary-modern .trust-badge-text span {
    font-size: 0.8125rem;
    color: #64748b;
}

/* Help Card */
.cart-summary-modern .summary-help-card {
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.cart-summary-modern .summary-help-card .help-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #fff;
    font-size: 1.5rem;
}

.cart-summary-modern .summary-help-card .help-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.cart-summary-modern .summary-help-card .help-text {
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 22px;
}

.cart-summary-modern .summary-help-card .btn-help {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.25s ease;
}

.cart-summary-modern .summary-help-card .btn-help:hover {
    border-color: #2563eb;
    background: #eff6ff;
    transform: translateY(-1px);
}

/* ===== Order Summary Box - Redesigned (Bestellingsoverzicht) ===== */
.cart-summary-modern .order-summary-box {
    border-radius: 24px;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cart-summary-modern .order-summary-box .summary-actions {
    padding: 0;
}

.cart-summary-modern .order-summary-header {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 28px 24px;
    text-align: center;
    position: relative;
}

.cart-summary-modern .order-summary-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.cart-summary-modern .order-summary-icon {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid rgba(16, 185, 129, 0.5);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #34d399;
    font-size: 1.5rem;
}

.cart-summary-modern .order-summary-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
    letter-spacing: -0.03em;
}

.cart-summary-modern .order-summary-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.cart-summary-modern .order-summary-body {
    padding: 24px 24px 20px;
    background: #fff;
}

.cart-summary-modern .order-summary-body .summary-row-modern {
    padding: 12px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.cart-summary-modern .order-summary-body .summary-row-modern:last-of-type {
    border-bottom: none;
}

.cart-summary-modern .summary-row-icon .summary-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cart-summary-modern .summary-row-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.cart-summary-modern .summary-row-icon--cart {
    background: #dbeafe;
    color: #1d4ed8;
}

.cart-summary-modern .summary-row-icon--tax {
    background: #fef3c7;
    color: #b45309;
}

.cart-summary-modern .summary-row-icon--ship {
    background: #d1fae5;
    color: #059669;
}

.cart-summary-modern .order-summary-body .summary-shipping {
    padding: 14px 0;
    border-top: none;
    border-bottom: none;
}

.cart-summary-modern .order-summary-total-block {
    margin: 0 24px 24px;
    padding: 24px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 16px;
    border: 1px solid #a7f3d0;
}

.cart-summary-modern .order-summary-total-block .summary-total-modern {
    padding: 0;
    margin: 0;
}

.cart-summary-modern .order-summary-total-block .total-label {
    color: #065f46;
    font-size: 1rem;
}

.cart-summary-modern .order-summary-total-block .total-amount {
    color: #047857;
    font-size: 1.875rem;
}

.cart-summary-modern .btn-checkout-primary {
    margin: 0 24px 24px;
    padding: 20px 28px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.4);
    border-radius: 14px;
}

.cart-summary-modern .btn-checkout-primary:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    box-shadow: 0 6px 28px rgba(5, 150, 105, 0.45);
}

.cart-summary-modern .order-summary-trust {
    padding: 20px 24px 28px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-summary-modern .order-summary-trust .trust-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.cart-summary-modern .order-summary-trust .trust-pill i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0284c7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.cart-summary-modern .order-summary-trust .trust-pill:nth-child(2) i {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.cart-summary-modern .order-summary-trust .trust-pill:nth-child(3) i {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #b45309;
}

/* Help card minimal */
.cart-summary-modern .help-card-minimal {
    border-radius: 20px;
    padding: 24px;
    background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
}

.cart-summary-modern .help-card-minimal .help-card-icon {
    width: 48px;
    height: 48px;
    background: #0284c7;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.cart-summary-modern .help-card-minimal .help-title {
    font-size: 1.0625rem;
    color: #0c4a6e;
}

.cart-summary-modern .help-card-minimal .help-text {
    color: #0369a1;
    font-size: 0.875rem;
    margin-bottom: 18px;
}

.cart-summary-modern .help-card-minimal .btn-help {
    background: #fff;
    border-color: #0ea5e9;
    color: #0284c7;
}

.cart-summary-modern .help-card-minimal .btn-help:hover {
    background: #0ea5e9;
    color: #fff;
    border-color: #0ea5e9;
}

/* Responsive Cart – logical order on mobile: Winkelwagen first, then Bestellingsoverzicht, then Hulp nodig? */
@media (max-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        display: grid;
    }
    
    .cart-main {
        order: 1;
    }
    
    .cart-summary-modern {
        position: static;
        order: 2;
    }
    
    .cart-summary-modern .summary-card {
        margin-bottom: 0;
    }
    
    .cart-item-modern {
        grid-template-columns: 140px 1fr 120px 140px;
        gap: 20px;
        padding: 24px 24px;
    }
    
    .cart-item-image {
        width: 140px;
        height: 140px;
    }
    
    .cart-summary-modern .order-summary-header {
        padding: 24px 20px;
    }
    
    .cart-summary-modern .order-summary-total-block {
        margin: 0 20px 20px;
        padding: 20px;
    }
    
    .cart-summary-modern .btn-checkout-primary {
        margin: 0 20px 20px;
    }
    
    .cart-summary-modern .order-summary-trust {
        padding: 16px 20px 24px;
    }
}

@media (max-width: 768px) {
    .page-header-modern {
        padding: 50px 0 40px !important;
    }
    
    .page-header-modern h1 {
        font-size: 2rem !important;
        margin-bottom: 16px !important;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6) !important;
    }
    
    .page-header-modern p {
        font-size: 1rem !important;
        color: rgba(255, 255, 255, 0.95) !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
        padding: 0 15px !important;
    }
    
    .page-title-modern {
        font-size: 2rem;
    }
    
    .page-subtitle-modern {
        font-size: 1rem;
    }
    
    .cart-section-modern {
        padding: 24px 0 60px;
    }
    
    .cart-main {
        gap: 20px;
    }
    
    .cart-header-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
        border-radius: 16px;
    }
    
    .btn-clear-cart {
        width: 100%;
        justify-content: center;
    }
    
    .cart-items-wrapper {
        border-radius: 16px;
    }
    
    .cart-items-list {
        gap: 16px;
    }
    
    .cart-item-modern {
        grid-template-columns: 100px 1fr;
        gap: 16px;
        padding: 20px 16px;
        align-items: flex-start;
        border-radius: 20px;
    }
    
    .cart-item-modern::before {
        border-radius: 20px 0 0 20px;
    }
    
    .cart-item-image {
        width: 100px;
        height: 100px;
        border-radius: 14px;
    }
    
    .cart-item-name {
        font-size: 1.0625rem;
    }
    
    .cart-item-remove .cart-item-remove-text {
        display: none;
    }
    
    .cart-item-remove {
        padding: 10px;
        width: 40px;
        height: 40px;
        justify-content: center;
    }
    
    .cart-item-options {
        padding: 10px 14px;
        font-size: 0.8125rem;
    }
    
    .cart-item-meta {
        gap: 8px;
    }
    
    .cart-item-sku,
    .cart-item-category {
        font-size: 0.625rem;
        padding: 4px 10px;
    }
    
    .price-value-total {
        font-size: 1.25rem;
        padding: 8px 14px;
    }
    
    .cart-item-quantity,
    .cart-item-pricing {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 8px;
        padding-top: 16px;
        border-top: 1px solid #f1f5f9;
        min-width: 0;
    }
    
    .cart-item-quantity {
        justify-content: flex-start;
    }
    
    .cart-item-pricing {
        justify-content: flex-end;
        text-align: right;
        gap: 0;
    }
    
    .cart-item-price-mobile {
        display: block;
        margin-top: 8px;
    }
    
    .cart-item-pricing .price-per-item {
        display: none;
    }
    
    .price-value-total {
        font-size: 1.25rem;
    }
    
    .quantity-controls {
        padding: 4px;
    }
    
    .qty-btn {
        width: 36px;
        height: 36px;
    }
    
    .qty-input {
        width: 44px;
        font-size: 1rem;
    }
    
    .cart-summary-modern .summary-card {
        border-radius: 16px;
    }
    
    .cart-summary-modern .summary-header,
    .cart-summary-modern .summary-content {
        padding: 20px;
    }
    
    .cart-summary-modern .summary-actions {
        padding: 0 20px 20px;
    }
    
    .cart-summary-modern .summary-total-modern {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    
    .cart-summary-modern .total-amount {
        font-size: 1.5rem;
    }
    
    .cart-summary-modern .summary-trust-badges {
        padding: 20px;
    }
    
    .cart-summary-modern .trust-badge-modern i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .cart-empty-modern {
        padding: 60px 20px 80px;
    }
    
    .empty-cart-illustration {
        width: 180px;
        height: 180px;
        margin-bottom: 28px;
    }
    
    .empty-cart-icon-wrapper {
        width: 110px;
        height: 110px;
    }
    
    .empty-cart-icon-wrapper i {
        font-size: 2.75rem;
    }
    
    .empty-cart-title {
        font-size: 1.5rem;
    }
    
    .empty-cart-description {
        font-size: 0.9375rem;
        margin-bottom: 28px;
    }
    
    .btn-empty-cart {
        padding: 14px 28px;
        font-size: 0.9375rem;
    }
    
    .breadcrumb-modern {
        font-size: 0.85rem;
    }
    
    .cart-title {
        font-size: 1.25rem;
    }
}

/* About Page */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-content h2 {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 20px;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.value-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ======================================================================
   About Page - Enhanced Modern Styles
   ====================================================================== */

/* About Hero Section */
.about-hero {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-5px);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(30, 64, 175, 0.2) 100%);
    pointer-events: none;
}

.about-hero-content {
    padding: 20px 0;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.about-badge i {
    font-size: 1rem;
}

.about-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-features-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.about-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: white;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header-modern h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header-modern p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.story-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.story-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.story-item:hover::before {
    transform: scaleX(1);
}

.story-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.story-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
}

.story-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.story-item p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Values Section Modern */
.values-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card-modern {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card-modern:hover::before {
    transform: scaleX(1);
}

.value-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.value-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.value-icon-modern i {
    font-size: 1.8rem;
    color: white;
}

.value-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.value-card-modern p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.value-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 10px;
    border-left: 3px solid #3b82f6;
}

.value-highlight i {
    color: #2563eb;
    font-size: 0.9rem;
}

.value-highlight span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2563eb;
}

/* Stats Section Modern */
.stats-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(59,130,246,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.stats-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.stats-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-card-modern {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card-modern:hover::before {
    transform: scaleX(1);
}

.stat-card-modern:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-card-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-left: 4px;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-top: 12px;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-choose-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.why-icon i {
    font-size: 1.8rem;
    color: white;
}

.why-choose-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.why-choose-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section Modern */
.cta-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 20s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.cta-content-modern {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-content-modern h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.cta-content-modern p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons-modern .btn {
    min-width: 200px;
}

/* CTA Section Button Styles - Enhanced Visibility */
.cta-section-modern .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section-modern .btn-outline:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1e40af !important;
    border-color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.cta-section-modern .btn-outline i {
    color: inherit;
}

.cta-section-modern .btn-primary {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1e40af !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-section-modern .btn-primary:hover {
    background: #ffffff !important;
    color: #1e40af !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
}

.cta-section-modern .btn-secondary {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-section-modern .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* Contact Page */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1),
                0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 100px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-info-item:hover::before {
    transform: scaleY(1);
}

.contact-info-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15),
                0 6px 18px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-info-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.contact-info-content p {
    color: #334155;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.contact-info-note {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

/* Contact page – social cards (Facebook & Instagram) */
.contact-social {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #e2e8f0;
}

.contact-social h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 18px;
}

.contact-social-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-social-card {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: inherit;
}

.contact-social-card:hover::before {
    transform: scaleY(1);
}

.contact-social-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-social-card__icon i {
    font-size: 1.4rem;
    color: white;
}

.contact-social-card--facebook::before {
    background: linear-gradient(180deg, #1877f2 0%, #0d65d9 100%);
}

.contact-social-card--facebook .contact-social-card__icon {
    background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.35);
}

.contact-social-card--facebook:hover {
    border-color: #1877f2;
}

.contact-social-card--facebook:hover .contact-social-card__icon {
    transform: scale(1.08);
}

.contact-social-card--instagram::before {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-social-card--instagram .contact-social-card__icon {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 14px rgba(225, 48, 108, 0.35);
}

.contact-social-card--instagram:hover {
    border-color: #e1306c;
}

.contact-social-card--instagram:hover .contact-social-card__icon {
    transform: scale(1.08);
}

@media (max-width: 480px) {
    .contact-social-cards {
        flex-direction: column;
    }
    .contact-social-card {
        min-width: 100%;
    }
}

/* Form Styles */
.form-header {
    margin-bottom: 35px;
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 2px solid #e2e8f0;
}

.form-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: #64748b;
    font-size: 1.05rem;
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1e293b;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #cbd5e1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1),
                0 2px 8px rgba(59, 130, 246, 0.1);
    background: #ffffff;
}

.form-group label {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.form-group label i {
    color: #3b82f6;
    font-size: 0.9rem;
}

.field-note {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 400;
    font-style: italic;
}

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

.form-actions {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e2e8f0;
}

.form-actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 16px 32px;
}

.form-checkbox label {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
}

.form-message {
    padding: 20px 24px;
    border-radius: 12px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #b8dacc;
    box-shadow: 0 4px 12px rgba(21, 87, 36, 0.15);
}

.form-message.success i {
    color: #10b981;
    font-size: 1.3rem;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #f1aeb5;
    box-shadow: 0 4px 12px rgba(114, 28, 36, 0.15);
}

.form-message.error i {
    color: #ef4444;
    font-size: 1.3rem;
}

.map-section {
    padding: 60px 0;
    background: white;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
}

.map-placeholder i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

/* Modern Map Section */
.map-section-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.map-header p {
    font-size: 1.125rem;
    color: #64748b;
}

.map-container-modern {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.map-container-modern iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.map-info-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    pointer-events: none;
}

.map-info-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    pointer-events: auto;
    max-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2),
                0 6px 18px rgba(0, 0, 0, 0.15);
}

.map-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.map-info-icon i {
    font-size: 1.5rem;
    color: white;
}

.map-info-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.map-info-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.map-info-content .btn {
    width: 100%;
    justify-content: center;
}

/* Mobile Responsive - Map Section */
@media (max-width: 768px) {
    .map-section-modern {
        padding: 60px 0 !important;
    }
    
    .map-header {
        margin-bottom: 30px !important;
        padding: 0 15px !important;
    }
    
    .map-header h2 {
        font-size: 1.75rem !important;
    }
    
    .map-header p {
        font-size: 0.95rem !important;
    }
    
    .map-container-modern {
        border-radius: 16px !important;
        margin: 0 15px !important;
    }
    
    .map-container-modern iframe {
        height: 400px !important;
    }
    
    .map-info-overlay {
        position: static !important;
        margin-top: 20px !important;
        padding: 0 15px !important;
    }
    
    .map-info-card {
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .contact-section {
        padding: 60px 0 !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .contact-form-container {
        position: static !important;
        padding: 30px 20px !important;
    }
    
    .contact-info-item {
        padding: 24px 20px !important;
    }
    
    .contact-info-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .contact-info-icon i {
        font-size: 1.3rem !important;
    }
    
    .contact-info-content h3 {
        font-size: 1.1rem !important;
    }
    
    .contact-info-content p {
        font-size: 0.9rem !important;
    }
}

/* Appointment Page */
.appointment-type-section {
    padding: 80px 0;
    background: white;
}

/* Modern Appointment Type Section */
.appointment-type-section-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.appointment-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.appointment-type-card {
    background: white;
    padding: 45px 35px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.appointment-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.appointment-type-card:hover::before,
.appointment-type-card.active::before {
    transform: scaleX(1);
}

.appointment-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15),
                0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.appointment-type-card.active {
    border-color: #3b82f6;
    border-width: 2px;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25),
                0 8px 24px rgba(59, 130, 246, 0.15);
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.appointment-type-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    z-index: 2;
}

.appointment-type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.appointment-type-card:hover .appointment-type-icon,
.appointment-type-card.active .appointment-type-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.4);
}

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

.appointment-type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.appointment-type-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.appointment-type-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 30px;
    text-align: left;
}

.appointment-type-features li {
    padding: 10px 0;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.appointment-type-features li i {
    color: #3b82f6;
    font-size: 0.9rem;
    width: 20px;
    flex-shrink: 0;
}

.select-type-btn {
    width: 100%;
    margin-top: 10px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.appointment-type-card.active .select-type-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: white !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.appointment-form-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.appointment-form-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
}

.appointment-form-container {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1),
                0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.appointment-info-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.appointment-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.12),
                0 4px 12px rgba(0, 0, 0, 0.08);
}

.appointment-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.appointment-info-card h3 i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.appointment-info-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.appointment-info-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f5f9;
}

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

.appointment-info-list li i {
    color: #3b82f6;
    font-size: 0.9rem;
    width: 20px;
    flex-shrink: 0;
}

.appointment-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.appointment-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    border-left: 3px solid #3b82f6;
}

.appointment-contact-item i {
    color: #3b82f6;
    font-size: 1.1rem;
    width: 24px;
    flex-shrink: 0;
}

.appointment-contact-item span {
    color: #1e293b;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Mobile Responsive - Appointment Page */
@media (max-width: 768px) {
    .appointment-type-section-modern {
        padding: 60px 0 !important;
    }
    
    .appointment-types {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        margin-top: 40px !important;
    }
    
    .appointment-type-card {
        padding: 35px 25px !important;
    }
    
    .appointment-type-icon {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 20px !important;
    }
    
    .appointment-type-icon i {
        font-size: 1.7rem !important;
    }
    
    .appointment-type-card h3 {
        font-size: 1.3rem !important;
    }
    
    .appointment-type-card p {
        font-size: 0.9rem !important;
    }
    
    .appointment-type-features li {
        font-size: 0.9rem !important;
    }
    
    .appointment-form-section {
        padding: 60px 0 !important;
    }
    
    .appointment-form-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .appointment-form-container {
        padding: 30px 20px !important;
    }
    
    .appointment-info {
        position: static !important;
    }
    
    .appointment-info-card {
        padding: 28px 22px !important;
    }
    
    .appointment-info-card h3 {
        font-size: 1.15rem !important;
    }
    
    .appointment-contact-item {
        padding: 10px 14px !important;
    }
    
    .appointment-contact-item span {
        font-size: 0.9rem !important;
    }
}

/* Product Detail Page */
.product-detail-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery {
    position: relative;
}

.product-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-new {
    background: #3b82f6;
    color: white;
}

.badge-3d {
    background: rgba(0,0,0,0.7);
    color: white;
}

.model-viewer-container {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-title {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
}

.product-price {
    font-size: 2rem;
    color: #3b82f6;
    font-weight: 700;
}

.product-tabs-section {
    padding: 60px 0;
    background: white;
}

.product-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
}

.tab-btn.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-success {
    color: #28a745;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* Mobile Navigation Backdrop/Overlay */
.nav__backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav__backdrop.active {
    display: block;
    opacity: 1;
}

/* Mobile Responsive */
/* Mobile Navigation Backdrop - Modern Glassmorphism */
.nav__backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__backdrop.active {
    display: block;
    opacity: 1;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Ensure body is not blocking clicks when menu is closed */
body:not(.menu-open) {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

@media (max-width: 768px) {
    /* Navigation backdrop - only visible when menu is open */
    .nav__backdrop {
        display: none;
        pointer-events: none;
    }
    
    .nav__backdrop.active {
        display: block;
        pointer-events: auto;
    }
    
    /* Modern Mobile Menu Container - Premium Design */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 88%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(180deg, 
            #0f172a 0%, 
            #1e293b 50%,
            #0f172a 100%);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 0;
        flex-direction: column;
        align-items: stretch;
        transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8),
                    inset -1px 0 0 rgba(59, 130, 246, 0.2);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .nav__menu.show {
        right: 0;
    }

    /* Modern Menu Header - Clean Design */
    .nav__menu::before {
        content: '';
        display: block;
        height: 100px;
        background: linear-gradient(135deg, 
            rgba(59, 130, 246, 0.15) 0%, 
            rgba(30, 64, 175, 0.1) 100%);
        border-bottom: 1px solid rgba(59, 130, 246, 0.2);
        position: relative;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* Modern Close Button - Top Left, No Overlap */
    .nav__close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 24px;
        left: 24px;
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
        color: rgba(255, 255, 255, 0.95);
        cursor: pointer;
        background: rgba(239, 68, 68, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1002;
        border: 1px solid rgba(239, 68, 68, 0.2);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav__close:hover,
    .nav__close:active {
        background: rgba(239, 68, 68, 0.3);
        border-color: rgba(239, 68, 68, 0.5);
        color: #ffffff;
        transform: rotate(90deg) scale(1.05);
        box-shadow: 0 4px 20px rgba(239, 68, 68, 0.5);
    }
    
    .nav__close i {
        transition: transform 0.25s ease;
    }

    /* Navigation - Mobile Layout */
    .nav {
        padding: 16px 0;
        gap: 16px;
    }
    
    /* Logo - Mobile */
    .nav__logo .logo {
        height: 55px !important;
        max-width: 200px !important;
    }
    
    .header__nav-wrapper.scrolled .nav__logo .logo {
        height: 50px !important;
        max-width: 180px !important;
    }
    
    /* Header Features - Mobile */
    .header-features {
        padding: 0;
    }
    
    .header-features__content {
        padding: 12px 0;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .header-feature {
        font-size: 11px;
        gap: 6px;
        padding: 6px 10px;
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    .header-feature i {
        font-size: 0.85rem;
    }
    
    .header-feature span {
        white-space: nowrap;
    }
    
    /* Navigation Menu - Hide on Mobile */
    .nav__menu {
        justify-content: flex-start;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 20px 0;
    }
    
    .nav__link {
        width: 100%;
        padding: 16px 24px;
        color: rgba(255, 255, 255, 0.95) !important;
        font-size: 16px;
        border-radius: 0;
        border-left: 4px solid transparent;
        background: transparent !important;
    }
    
    .nav__link::before {
        display: none;
    }
    
    .nav__link:hover,
    .nav__link.active {
        background: rgba(59, 130, 246, 0.15) !important;
        border-left-color: #3b82f6;
        color: #ffffff !important;
        transform: translateX(4px);
    }
    
    /* Modern Toggle Button */
    .nav__toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        color: #ffffff;
        font-size: 1.4rem;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1001;
        min-width: 48px;
        min-height: 48px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .nav__toggle:hover {
        color: #3b82f6;
        background: rgba(59, 130, 246, 0.15);
        border-color: rgba(59, 130, 246, 0.3);
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    }
    
    .nav__toggle:active {
        transform: scale(0.95);
    }
    
    .nav__toggle.active {
        color: #3b82f6;
        background: rgba(59, 130, 246, 0.2);
        border-color: rgba(59, 130, 246, 0.4);
    }
    
    .nav__toggle i {
        transition: transform 0.3s ease;
        display: block;
    }
    
    .nav__toggle.active i.fa-bars::before {
        content: '\f00d';
    }
    
    /* Modern Navigation List - Clean Spacing */
    .nav__list {
        list-style: none;
        margin: 0;
        padding: 100px 0 40px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    /* Modern Navigation Items */
    .nav__item {
        width: 100%;
        position: relative;
        margin: 0;
        padding: 0 16px;
    }
    
    .nav__item::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%) scaleX(0);
        width: 3px;
        height: 0;
        background: linear-gradient(180deg, #3b82f6, #60a5fa);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
    }
    
    .nav__item:hover::before,
    .nav__item.active::before {
        transform: translateY(-50%) scaleX(1);
        height: 24px;
    }
    
    /* Modern Navigation Links - Premium Style */
    .nav__link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 18px 20px;
        font-size: 16px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        text-align: left;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        min-height: 56px;
        position: relative;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        margin: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .nav__link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        background: linear-gradient(90deg, 
            rgba(59, 130, 246, 0.08) 0%, 
            rgba(30, 64, 175, 0.04) 100%);
        border-radius: 10px;
        opacity: 0;
        transition: opacity 0.25s ease;
    }
    
    .nav__link:hover,
    .nav__link.active {
        color: #ffffff;
        background: linear-gradient(135deg, 
            rgba(59, 130, 246, 0.2) 0%, 
            rgba(30, 64, 175, 0.15) 100%);
        border-color: rgba(59, 130, 246, 0.3);
        transform: translateX(6px);
        box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
    }
    
    .nav__item.has-submenu .nav__link {
        padding-right: 16px;
    }
    
    .nav__link:hover::before,
    .nav__link.active::before {
        opacity: 1;
    }
    
    .nav__link.has-arrow::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: auto;
        font-size: 0.9rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: rgba(255, 255, 255, 0.5);
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(59, 130, 246, 0.1);
        border-radius: 6px;
        flex-shrink: 0;
    }
    
    .nav__item.has-submenu.active .nav__link.has-arrow::after {
        transform: rotate(180deg);
        color: #60a5fa;
        background: rgba(59, 130, 246, 0.2);
    }
    
    .nav__item.has-submenu .nav__link:hover::after {
        color: #60a5fa;
        background: rgba(59, 130, 246, 0.15);
    }
    
    /* ===== Mobile: Producten submenu – professional card accordion ===== */
    .nav__submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        list-style: none;
        margin: 14px 0 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        box-shadow: none;
        background: transparent;
        border-radius: 14px;
        border: 1px solid transparent;
    }
    
    .nav__item.has-submenu.active .nav__submenu {
        max-height: 420px;
        padding: 10px;
        margin: 14px 0 0;
        background: rgba(15, 23, 42, 0.6);
        border: 1px solid rgba(59, 130, 246, 0.25);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25),
                    inset 0 1px 0 rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    
    .nav__submenu-item {
        margin: 0 0 6px 0;
        padding: 0;
    }
    
    .nav__submenu-item:last-child {
        margin-bottom: 0;
    }
    
    .nav__submenu-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 18px;
        min-height: 52px;
        color: rgba(255, 255, 255, 0.92);
        text-decoration: none;
        font-weight: 500;
        font-size: 15px;
        line-height: 1.3;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        position: relative;
        -webkit-tap-highlight-color: rgba(59, 130, 246, 0.2);
    }
    
    .nav__submenu-link::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.4);
        transition: color 0.2s ease, transform 0.2s ease;
    }
    
    .nav__submenu-link:hover {
        background: rgba(59, 130, 246, 0.18);
        color: #ffffff;
        border-color: rgba(59, 130, 246, 0.35);
    }
    
    .nav__submenu-link:hover::after {
        color: rgba(255, 255, 255, 0.9);
        transform: translateX(4px);
    }
    
    .nav__submenu-link.active {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(30, 64, 175, 0.2) 100%);
        color: #ffffff;
        font-weight: 600;
        border-color: rgba(59, 130, 246, 0.5);
    }
    
    .nav__submenu-link.active::after {
        color: #93c5fd;
    }
    
    /* Custom Scrollbar for Mobile Menu - Modern Style */
    .nav__menu::-webkit-scrollbar {
        width: 4px;
    }
    
    .nav__menu::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 2px;
    }
    
    .nav__menu::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #3b82f6, #60a5fa);
        border-radius: 2px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav__menu::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #60a5fa, #93c5fd);
    }

    .header-features {
        display: none;
    }

    /* Modern Hero Mobile */
    .hero {
        min-height: 70vh !important;
        padding: 60px 20px !important;
        background-attachment: scroll !important; /* Better performance on mobile */
    }
    
    .hero .hero-content,
    .hero-content {
        padding: 40px 30px !important;
        border-radius: 20px !important;
        background: rgba(15, 23, 42, 0.25) !important; /* Semi-transparent with opacity only, no blur */
        backdrop-filter: none !important; /* No blur - clear image visibility */
        -webkit-backdrop-filter: none !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important; /* Visible border for card definition */
        box-shadow: 
            0 4px 16px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2) !important; /* Light shadow */
    }

    .hero h1 {
        font-size: 2.25rem !important;
        line-height: 1.2 !important;
        /* Enhanced text shadow for mobile visibility with transparent background */
        text-shadow: 
            0 2px 10px rgba(0, 0, 0, 0.8),
            0 4px 20px rgba(0, 0, 0, 0.6),
            0 0 30px rgba(0, 0, 0, 0.4) !important; /* Stronger shadow for readability */
    }

    .hero p {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
        /* Enhanced text shadow for mobile visibility with transparent background */
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.8),
            0 4px 16px rgba(0, 0, 0, 0.6) !important; /* Stronger shadow for readability */
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        padding: 10px 20px !important; /* Smaller padding for mobile */
        font-size: 13px !important; /* Smaller font for mobile */
        font-weight: 600 !important;
        border-radius: 6px !important; /* Tighter radius for enterprise look */
        letter-spacing: 0.3px !important; /* Professional letter spacing */
    }
    
    /* Modern Products Mobile */
    .products {
        padding: 80px 0 !important;
    }
    
    .products-header {
        margin-bottom: 50px !important;
    }
    
    .products-header h2 {
        font-size: 2.25rem !important;
    }
    
    .products-header p {
        font-size: 1.1rem !important;
    }
    
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .product-image-container {
        height: 280px !important;
    }
    
    .product-content {
        padding: 28px 24px !important;
    }
    
    .product-content h3 {
        font-size: 1.5rem !important;
    }
    
    /* Modern Features Mobile */
    .features {
        padding: 80px 0 !important;
    }
    
    .features .container h2 {
        font-size: 2.25rem !important;
        margin-bottom: 50px !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .feature-card {
        padding: 36px 28px !important;
    }
    
    .feature-icon {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 24px !important;
    }
    
    .feature-icon i {
        font-size: 2rem !important;
    }
    
    .feature-card h3 {
        font-size: 1.3rem !important;
    }
    
    /* Modern Quote Section Mobile */
    .quote-section {
        padding: 80px 0 !important;
    }
    
    .quote-content h2 {
        font-size: 2.25rem !important;
    }
    
    .quote-content p {
        font-size: 1.1rem !important;
        margin-bottom: 40px !important;
    }
    
    .quote-features {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-bottom: 40px !important;
    }
    
    .quote-feature {
        padding: 24px 20px !important;
    }
    
    .quote-feature i {
        font-size: 2rem !important;
    }
    
    .quote-feature span {
        font-size: 1rem !important;
    }
    
    /* Modern Instagram Mobile */
    .instagram-preview {
        padding: 80px 0 !important;
    }
    
    .instagram-header h2 {
        font-size: 2.25rem !important;
    }
    
    .instagram-header p {
        font-size: 1.1rem !important;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .categories-grid,
    .features-grid,
    .values-grid,
    .stats-grid,
    .appointment-types,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-grid,
    .cart-grid,
    .about-grid,
    .contact-grid,
    .product-detail-grid,
    .appointment-form-grid {
        grid-template-columns: 1fr;
    }

    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2,
    .products-header h2,
    .instagram-header h2 {
        font-size: 2rem;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 16px;
    }

    .product-image-container {
        height: 250px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .tabs-nav {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ======================================================================
   MODERN PRODUCTS SECTION - Enterprise Level Design
   ====================================================================== */
.products {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.2) 50%, 
        transparent 100%);
}

.products-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.products-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    position: relative;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.products-header h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

.products-header h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

.products-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.product-card:hover::before {
    transform: scaleX(1);
}


.product-image-container {
    position: relative;
    overflow: hidden;
    height: 350px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1);
}

.product-card:hover .product-image-container img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.95) 0%, 
        rgba(30, 64, 175, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

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

.product-actions {
    display: flex;
    gap: 15px;
}

.product-content {
    padding: 36px 32px;
    text-align: center;
    background: #ffffff;
}

.product-content h3 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.product-card:hover .product-content h3 {
    color: #3b82f6;
}

.product-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 1rem;
    font-weight: 400;
}

.product-features {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 
        0 2px 8px rgba(59, 130, 246, 0.2),
        0 4px 12px rgba(59, 130, 246, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 4px 12px rgba(59, 130, 246, 0.3),
        0 8px 20px rgba(59, 130, 246, 0.2);
}

/* Instagram Section */
.instagram-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.instagram-header {
    text-align: center;
    margin-bottom: 50px;
}

.instagram-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 20px;
    position: relative;
}

.instagram-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

.instagram-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 25px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(228, 64, 95, 0.4);
    color: white;
}

.instagram-link i {
    font-size: 1.2rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.instagram-post {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.08);
    display: block;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(228, 64, 95, 0.9) 0%, 
        rgba(193, 53, 132, 0.9) 50%,
        rgba(131, 58, 180, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.instagram-overlay i {
    font-size: 2.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.instagram-post:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(228, 64, 95, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(228, 64, 95, 0.3);
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-post:hover .instagram-overlay i {
    transform: scale(1.2) rotate(5deg);
}

.instagram-post:hover img {
    transform: scale(1.15);
    filter: brightness(0.9);
}

/* Quote Section (Homepage CTA) */
/* ======================================================================
   MODERN QUOTE SECTION - Enterprise Level Design
   ====================================================================== */
.quote-section {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #1e293b 50%,
        #0f172a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 64, 175, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.quote-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.3) 50%, 
        transparent 100%);
}

.quote-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.quote-content h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-content p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 50px;
}

.quote-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.2);
}

.quote-feature i {
    font-size: 2.5rem;
    color: #60a5fa;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.quote-feature:hover i {
    color: #93c5fd;
    transform: scale(1.1);
}

.quote-feature span {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    line-height: 1.5;
}

/* WhatsApp Floating Button - Fixed Overflow */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 997; /* Below mobile menu (999) but above most content */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    overflow: visible;
    /* Prevent overflow issues */
    contain: layout style paint;
    will-change: transform;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(1.05) translateY(-2px);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    display: block;
    flex-shrink: 0;
}

/* Checkout Page Styles */
.checkout-steps-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    flex: 1;
}

.checkout-step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
}

.checkout-step:last-child::after {
    display: none;
}

.checkout-step.active::after {
    background: #3b82f6;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.checkout-step.active .step-number {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.step-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.checkout-step.active .step-label {
    color: #3b82f6;
    font-weight: 600;
}

.checkout-section {
    padding: 60px 0;
    background: #f8f9fa;
    width: 100%;
    overflow-x: hidden;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.checkout-form-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.checkout-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.checkout-card-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-card-title i {
    color: #3b82f6;
}

.checkout-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-summary-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.checkout-summary-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.order-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.order-item-qty {
    color: #666;
    font-size: 0.85rem;
}

.order-item-price {
    font-weight: 700;
    color: #3b82f6;
}

.payment-methods-preview {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.payment-methods-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2rem;
    color: #666;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
}

.trust-badge i {
    color: #3b82f6;
    font-size: 1.1rem;
}

.checkout-help {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.checkout-help h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.checkout-help p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.contact-details {
    font-size: 0.9rem;
    line-height: 1.8;
}

.contact-details i {
    color: #3b82f6;
    margin-right: 8px;
}

/* =========================================================
   CHECKOUT PAGE - MODERN / ENTERPRISE
   ========================================================= */

/* Checkout page header */
.checkout-page-header {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    padding: 32px 0 36px;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.checkout-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="g" width="24" height="24" patternUnits="userSpaceOnUse"><path d="M24 0L0 0 0 24" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="0.5"/></pattern></defs><rect width="40" height="40" fill="url(%23g)"/></svg>');
    opacity: 0.7;
}

.page-checkout .container--checkout-header {
    position: relative;
    z-index: 1;
    padding-left: 24px;
    padding-right: 24px;
}

.checkout-header-inner {
    max-width: 640px;
    text-align: left;
}

.checkout-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px 0;
    font-size: 0.8125rem;
    font-weight: 500;
}

.checkout-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.checkout-breadcrumb a:hover {
    color: #fff;
}

.checkout-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
}

.checkout-breadcrumb-current {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.checkout-page-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 8px 0;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.checkout-page-subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
}

/* Checkout steps - modern */
.checkout-steps-section {
    padding: 28px 0;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
    overflow-x: hidden;
}

.checkout-steps-modern {
    max-width: 100%;
    margin: 0 auto;
    gap: 0;
    padding: 0 4px;
}

.checkout-steps-modern .checkout-step {
    flex: 1;
    position: relative;
}

.checkout-steps-modern .checkout-step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.checkout-steps-modern .checkout-step:last-child::after {
    display: none;
}

.checkout-steps-modern .checkout-step.completed::after,
.checkout-steps-modern .checkout-step.active::after {
    background: #059669;
}

.checkout-steps-modern .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    font-weight: 700;
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
    transition: all 0.25s ease;
}

.checkout-steps-modern .checkout-step.completed .step-number {
    background: #059669;
    color: #fff;
}

.checkout-steps-modern .checkout-step.active .step-number {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.checkout-steps-modern .step-label {
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 8px;
}

.checkout-steps-modern .checkout-step.active .step-label {
    color: #0f172a;
    font-weight: 600;
}

.checkout-steps-modern .checkout-step.completed .step-label {
    color: #059669;
}

/* Checkout section - grid & form */
.checkout-section-modern {
    padding: 48px 0 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.checkout-grid-modern {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
    gap: 40px;
    align-items: start;
}

.checkout-form-container-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.checkout-card-title-modern {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 24px 0;
}

.checkout-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #059669;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.checkout-card-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin: -12px 0 20px 0;
    line-height: 1.4;
}

.checkout-card-title--small {
    font-size: 1.05rem;
}

/* Space between address rows (Land, Street, Postcode row) – not between side-by-side fields */
.checkout-address-card > .form-group + .form-group,
.checkout-address-card > .form-row-postcode {
    margin-top: 18px;
}

.checkout-billing-same {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
}

.page-checkout .form-hint {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 4px;
}

/* Same layout as Persoonlijke gegevens (Voornaam / Achternaam): equal columns, aligned inputs */
.page-checkout .form-row-postcode {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.page-checkout .form-group-postcode,
.page-checkout .form-group-city {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .page-checkout .form-row-postcode {
        grid-template-columns: 1fr;
    }
}

.page-checkout .checkout-form-modern .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.page-checkout .checkout-form-modern .form-group {
    margin-bottom: 0;
}

.page-checkout .checkout-form-modern .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.page-checkout .checkout-form-modern .form-group input,
.page-checkout .checkout-form-modern .form-group select,
.page-checkout .checkout-form-modern .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: #0f172a;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-checkout .checkout-form-modern .form-group input:focus,
.page-checkout .checkout-form-modern .form-group select:focus,
.page-checkout .checkout-form-modern .form-group textarea:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.page-checkout .checkout-form-modern .form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.page-checkout .checkout-form-modern .form-checkbox {
    margin-top: 16px;
}

.page-checkout .checkout-form-modern .form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: #475569;
    cursor: pointer;
}

.page-checkout .checkout-form-modern .form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #059669;
}

.btn-checkout-submit {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1.0625rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
}

.btn-checkout-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

/* Order summary - modern: no sticky so "Hulp nodig?" stays visible below */
.checkout-summary-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.9);
    flex-shrink: 0;
    position: static; /* override base .checkout-summary-card sticky so help block is not covered */
}

.checkout-summary-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 20px 0;
}

.order-items-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
    max-height: 280px;
    overflow-y: auto;
}

.order-item-modern {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}

.order-item-modern:last-child {
    border-bottom: none;
}

.order-item-modern .order-item-image {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
}

.order-item-modern .order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-modern .order-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.25rem;
}

.order-item-modern .order-item-info {
    min-width: 0;
    overflow: hidden;
}

.order-item-modern .order-item-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.order-item-modern .order-item-meta {
    font-size: 0.8125rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-item-modern .order-item-total {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
}

.summary-divider-modern {
    height: 1px;
    background: #e2e8f0;
    margin: 16px 0;
}

.page-checkout .summary-row-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.9375rem;
}

.page-checkout .summary-row-modern .summary-label {
    color: #64748b;
    font-weight: 500;
}

.page-checkout .summary-row-modern .summary-value {
    font-weight: 600;
    color: #0f172a;
}

.page-checkout .summary-shipping-value.text-success,
.page-checkout .summary-shipping-value .text-success {
    color: #059669 !important;
    font-weight: 700;
}

.summary-total-row {
    padding: 16px 0 0 !important;
    margin-top: 8px;
}

.page-checkout .summary-total-label {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
}

.page-checkout .summary-total-value {
    font-size: 1.375rem;
    font-weight: 800;
    color: #0f172a;
}

.checkout-payment-methods {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.checkout-payment-methods-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
}

.checkout-payment-methods-label i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.checkout-payment-methods-note {
    font-size: 0.75rem;
    color: #64748b;
    margin: -6px 0 16px 0;
}

.checkout-payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (min-width: 420px) {
    .checkout-payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.checkout-payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 16px 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-payment-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.checkout-payment-logo-wrap {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checkout-payment-logo-img {
    max-width: 100%;
    max-height: 32px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.checkout-payment-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
    line-height: 1.2;
}

.checkout-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.checkout-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    background: #f8fafc;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.checkout-trust-pill i {
    color: #059669;
    font-size: 0.875rem;
}

/* Hulp nodig? inside summary card - always visible, separated by border */
.checkout-help-inline {
    margin-top: 24px;
    padding: 24px 0 0;
    border-top: 1px solid #e2e8f0;
}

.checkout-summary-card-modern .checkout-help-inline.checkout-help-modern {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-top: 1px solid #e2e8f0;
    padding: 24px 0 0;
}

.checkout-summary-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: visible;
}

.checkout-help-modern {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.9);
    text-align: center;
    flex-shrink: 0;
}

.checkout-help-modern .checkout-help-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.checkout-help-modern .checkout-help-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.checkout-help-modern .checkout-help-subtitle {
    font-size: 0.9375rem;
    color: #64748b;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.checkout-help-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 260px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff !important;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 18px;
}

.checkout-help-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(5, 150, 105, 0.4);
}

.checkout-help-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 16px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.checkout-help-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #059669;
    text-decoration: none;
    margin: 0;
    transition: color 0.2s ease;
}

.checkout-help-link:hover {
    color: #047857;
}

/* Checkout responsive – logical order on mobile: form first, then Overzicht bestelling + Hulp nodig? */
@media (max-width: 1024px) {
    .checkout-grid-modern {
        grid-template-columns: 1fr;
        gap: 32px;
        display: grid;
    }
    .checkout-form-container-modern {
        order: 1;
    }
    .checkout-summary.checkout-summary-modern,
    .checkout-summary {
        order: 2;
    }
    .checkout-summary-card-modern {
        position: static;
    }
}

@media (max-width: 768px) {
    .checkout-page-header {
        padding: 24px 0 28px;
    }
    .page-checkout .container--checkout-header {
        padding-left: 16px;
        padding-right: 16px;
    }
    .checkout-page-title {
        font-size: 1.5rem;
    }
    .checkout-page-subtitle {
        font-size: 0.875rem;
    }
    .checkout-steps-modern .step-number {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    .checkout-steps-modern .step-label {
        font-size: 0.75rem;
    }
    .checkout-section-modern {
        padding: 32px 0 60px;
    }
    .checkout-card-modern {
        padding: 22px 20px;
        border-radius: 16px;
    }
    .page-checkout .checkout-form-modern .form-row {
        grid-template-columns: 1fr;
    }
    /* Checkout container: prevent horizontal overflow on mobile */
    .page-checkout .checkout-section-modern .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
    .checkout-grid-modern {
        gap: 24px;
        min-width: 0;
    }
    .checkout-form-container-modern,
    .checkout-summary-modern {
        min-width: 0;
    }
    .checkout-summary-card-modern {
        min-width: 0;
    }
    .order-items-modern {
        max-height: 240px;
    }
    .order-item-modern {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 10px;
        padding: 12px 0;
    }
    .order-item-modern .order-item-image {
        width: 48px;
        height: 48px;
    }
    .checkout-payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .checkout-trust-pills {
        gap: 8px;
    }
    .checkout-trust-pill {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}

/* Checkout – extra small mobile (e.g. S24 Ultra portrait ~412px and smaller) */
@media (max-width: 480px) {
    .page-checkout .checkout-section-modern .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .page-checkout .container--checkout-header {
        padding-left: 12px;
        padding-right: 12px;
    }
    .checkout-page-header {
        padding: 20px 0 24px;
    }
    .checkout-page-title {
        font-size: 1.35rem;
    }
    .checkout-page-subtitle {
        font-size: 0.8125rem;
    }
    .checkout-breadcrumb {
        font-size: 0.75rem;
        flex-wrap: wrap;
        gap: 4px;
    }
    .checkout-steps-section {
        padding: 16px 8px;
    }
    .checkout-steps-modern .checkout-step {
        flex: 1;
        min-width: 0;
    }
    .checkout-steps-modern .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.8125rem;
    }
    .checkout-steps-modern .step-label {
        font-size: 0.625rem;
        margin-top: 4px;
    }
    .checkout-steps-modern .checkout-step::after {
        top: 16px;
        width: 80%;
        left: 55%;
    }
    .checkout-section-modern {
        padding: 24px 0 48px;
    }
    .checkout-card-modern {
        padding: 18px 14px;
        border-radius: 14px;
    }
    .checkout-card-title-modern {
        font-size: 1.05rem;
        gap: 10px;
        margin-bottom: 16px;
    }
    .checkout-card-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .checkout-card-desc {
        font-size: 0.8125rem;
        margin: -8px 0 14px 0;
    }
    .page-checkout .checkout-form-modern .form-group input,
    .page-checkout .checkout-form-modern .form-group select,
    .page-checkout .checkout-form-modern .form-group textarea {
        padding: 12px 14px;
        font-size: 0.9375rem;
    }
    .btn-checkout-submit {
        padding: 16px 20px;
        font-size: 1rem;
    }
    .checkout-summary-card-modern {
        padding: 20px 16px;
        border-radius: 16px;
    }
    .checkout-summary-title {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }
    .order-items-modern {
        max-height: 220px;
        gap: 12px;
    }
    .order-item-modern {
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 8px;
        padding: 10px 0;
    }
    .order-item-modern .order-item-image {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }
    .order-item-modern .order-item-name {
        font-size: 0.875rem;
    }
    .order-item-modern .order-item-meta {
        font-size: 0.75rem;
    }
    .order-item-modern .order-item-total {
        font-size: 0.9375rem;
    }
    .page-checkout .summary-row-modern {
        font-size: 0.875rem;
        padding: 8px 0;
    }
    .page-checkout .summary-total-label {
        font-size: 1rem;
    }
    .page-checkout .summary-total-value {
        font-size: 1.2rem;
    }
    .checkout-payment-methods {
        padding: 14px;
        margin-top: 16px;
    }
    .checkout-payment-methods-label {
        font-size: 0.8125rem;
        margin-bottom: 12px;
    }
    .checkout-payment-item {
        padding: 12px 8px;
    }
    .checkout-payment-logo-wrap {
        height: 36px;
    }
    .checkout-payment-logo-img {
        max-height: 28px;
    }
    .checkout-payment-name {
        font-size: 0.6875rem;
    }
    .checkout-help-modern {
        padding: 20px 16px;
        border-radius: 16px;
    }
    .checkout-help-modern .checkout-help-title {
        font-size: 1rem;
    }
    .checkout-help-modern .checkout-help-subtitle {
        font-size: 0.875rem;
    }
    .checkout-help-btn {
        max-width: 100%;
        padding: 12px 20px;
        font-size: 0.9375rem;
    }
    .checkout-help-links {
        flex-direction: column;
        gap: 8px;
    }
}

/* Checkout – prevent any horizontal scroll on page */
.page-checkout {
    overflow-x: hidden;
    max-width: 100vw;
}
.page-checkout .checkout-section-modern .container {
    box-sizing: border-box;
}
.page-checkout .checkout-grid-modern,
.page-checkout .checkout-form-container-modern,
.page-checkout .checkout-summary-modern,
.page-checkout .checkout-card-modern,
.page-checkout .checkout-summary-card-modern {
    box-sizing: border-box;
}

/* Payment Page Styles */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-method {
    background: white;
    border: 2px solid #e9ecef;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-method:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.payment-method.selected {
    border-color: #3b82f6;
    background: #eff6ff;
}

.payment-method-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.payment-method.selected .payment-method-radio {
    border-color: #3b82f6;
}

.payment-method.selected .payment-method-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #3b82f6;
    border-radius: 50%;
}

.payment-method-icon {
    font-size: 2rem;
    color: #666;
}

.payment-method.selected .payment-method-icon {
    color: #3b82f6;
}

.payment-method-content {
    flex: 1;
}

.payment-method-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.payment-method-description {
    font-size: 0.85rem;
    color: #666;
}

.payment-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: none;
}

.payment-details.active {
    display: block;
}

.bank-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.bank-option {
    background: white;
    border: 2px solid #e9ecef;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.bank-option:hover {
    border-color: #3b82f6;
}

.bank-option.selected {
    border-color: #3b82f6;
    background: #eff6ff;
}

/* Responsive Checkout */
@media (max-width: 768px) {
    .checkout-steps {
        gap: 10px;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.95rem;
    }
    
    .checkout-step::after {
        top: 17px;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
        display: grid;
    }
    .checkout-form-container {
        order: 1;
    }
    .checkout-summary {
        order: 2;
    }
    .checkout-summary-card {
        position: static;
    }
    
    .checkout-card {
        padding: 20px;
    }
    
    .bank-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* =================================================================================== */
/*    COMPREHENSIVE RESPONSIVE DESIGN                                                 */
/* =================================================================================== */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
}

/* Tablet and Medium Devices (768px - 1024px) */
@media (max-width: 1024px) {
    /* Navigation adjustments */
    .nav__list {
        gap: 5px;
    }
    
    .nav__link {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    /* Hero section */
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
    }
    
    /* Product grid */
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Features */
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact layout */
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Quote steps */
    .quote-container {
        padding: 30px;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    /* Container padding */
    .container {
        padding: 0 15px;
    }
    
    /* Header and Navigation */
    /* Navigation list */
    .nav__list {
        list-style: none;
        margin: 0;
        padding: 80px 0 30px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .nav__item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        position: relative;
    }
    
    .nav__item:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .nav__link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 18px 25px;
        font-size: 16px;
        font-weight: 500;
        color: #ffffff;
        text-decoration: none;
        border-radius: 0;
        text-align: left;
        transition: all 0.3s ease;
        min-height: 56px;
        position: relative;
        background: transparent;
        border: none;
    }
    
    .nav__link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #3b82f6;
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .nav__link:hover,
    .nav__link.active {
        background: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
        padding-left: 30px;
    }
    
    .nav__link:hover::before,
    .nav__link.active::before {
        transform: scaleY(1);
    }
    
    .nav__link.has-arrow::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: auto;
        font-size: 0.9rem;
        transition: transform 0.3s ease;
        color: rgba(255, 255, 255, 0.6);
    }
    
    .nav__item.has-submenu.active .nav__link.has-arrow::after {
        transform: rotate(180deg);
        color: #3b82f6;
    }
    
    /* Submenu on mobile: styled in main mobile nav block (Producten card accordion) */
    
    .nav__cart {
        margin-left: auto;
        margin-right: 15px;
        position: relative;
        z-index: 1001;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Smooth scroll for menu */
    .nav__menu {
        scroll-behavior: smooth;
    }
    
    /* Menu scrollbar styling */
    .nav__menu::-webkit-scrollbar {
        width: 6px;
    }
    
    .nav__menu::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .nav__menu::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
    }
    
    .nav__menu::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.3);
    }
    
    /* Active state indicator */
    .nav__link.active {
        background: rgba(59, 130, 246, 0.15) !important;
        color: #60a5fa !important;
        font-weight: 600;
    }
    
    /* Smooth transitions */
    .nav__item,
    .nav__link,
    .nav__submenu-link {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Better touch targets */
    .nav__link,
    .nav__submenu-link {
        -webkit-tap-highlight-color: rgba(59, 130, 246, 0.3);
        touch-action: manipulation;
    }
    
    /* Loading state */
    .nav__menu.loading {
        pointer-events: none;
        opacity: 0.7;
    }
    
    /* Cart icon in header - ensure visibility */
    .nav__cart {
        position: relative;
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Header positioning when menu is open */
    .header {
        position: relative;
        z-index: 1000;
    }
    
    /* Ensure nav actions are visible */
    .nav__actions {
        display: flex;
        align-items: center;
        gap: 15px;
        z-index: 1001;
        position: relative;
    }
    
    /* Hero section */
    .hero {
        min-height: 60vh;
        padding: 60px 0 40px;
    }
    
    .hero__title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        margin: 15px 0 25px;
    }
    
    .hero__buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero__buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Section titles */
    .section__title {
        font-size: 1.8rem;
    }
    
    .section__subtitle {
        font-size: 0.95rem;
    }
    
    /* Product grid */
    .products__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product__card {
        max-width: 100%;
    }
    
    /* Features grid */
    .features__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature__card {
        padding: 25px;
    }
    
    /* Product detail page */
    .product-detail__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-detail__viewer {
        height: 400px;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .quantity-selector {
        width: 100%;
        justify-content: center;
    }
    
    .add-to-cart-btn {
        width: 100%;
    }
    
    /* Cart page */
    .cart__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart__item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cart__item-image {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .cart__item-details {
        align-items: center;
    }
    
    .cart__item-actions {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    
    /* Quote page */
    .quote-container {
        padding: 20px;
        margin: 20px 0;
    }
    
    .quote-progress {
        margin-bottom: 30px;
    }
    
    .progress-step {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .step-text {
        display: none;
    }
    
    .quote-content {
        padding: 25px 20px;
    }
    
    .option-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quote-summary {
        position: static;
        margin-top: 30px;
    }
    
    /* About page */
    .about__content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about__text,
    .about__image {
        width: 100%;
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .values__grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact page */
    .contact__info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact__map {
        height: 300px;
    }
    
    /* Appointment page */
    .appointment__grid {
        grid-template-columns: 1fr;
    }
    
    .appointment__types {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer__top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer__column {
        align-items: center;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    /* Logo - Mobile */
    .nav__logo .logo {
        height: 55px !important;
        max-width: 200px !important;
    }
    
    .header__nav-wrapper.scrolled .nav__logo .logo {
        height: 50px !important;
        max-width: 180px !important;
    }
    
    /* Hero */
    .hero__title {
        font-size: 1.6rem;
    }
    
    .hero__subtitle {
        font-size: 0.9rem;
    }
    
    /* Section padding */
    .section {
        padding: 40px 0;
    }
    
    .section__title {
        font-size: 1.5rem;
    }
    
    /* Product cards */
    .product__card {
        padding: 15px;
    }
    
    .product__title {
        font-size: 1rem;
    }
    
    .product__price {
        font-size: 1.2rem;
    }
    
    /* Stats */
    .stats__grid {
        grid-template-columns: 1fr;
    }
    
    .stat__number {
        font-size: 2rem;
    }
    
    /* Quote form */
    .quote-container {
        padding: 15px;
        margin: 15px 0;
    }
    
    .quote-content {
        padding: 20px 15px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-control {
        padding: 10px;
        font-size: 14px;
    }
    
    /* Buttons in forms */
    .quote-buttons {
        flex-direction: column-reverse;
        gap: 10px;
    }
    
    .quote-buttons .btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav,
    .footer,
    .btn,
    button,
    .hero__buttons,
    .product-actions,
    .quote-buttons {
        display: none !important;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    a {
        text-decoration: none;
        color: #000;
    }
    
    .product__card,
    .feature__card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Landscape Orientation (Mobile) */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 50vh;
    }
    
    .nav__list {
        padding: 20px;
    }
    
    .nav__link {
        padding: 12px 20px;
    }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Ensure images and icons are crisp */
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark Mode Support (Optional - for future enhancement) */
@media (prefers-color-scheme: dark) {
    /* This can be expanded if dark mode is needed */
    :root {
        --text-dark: #f8f9fa;
        --bg-light: #1a1a1a;
    }
}

/* =================================================================================== */
/*    PAYMENT PAGE STYLES                                                             */
/* =================================================================================== */

.payment-section {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 80vh;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
}

.payment-container {
    background: white;
}

.payment-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.payment-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.payment-card-header i {
    font-size: 1.8rem;
    color: #3b82f6;
}

.payment-card-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

/* Stripe Checkout primary flow (enterprise) */
.stripe-checkout-intro {
    margin-bottom: 24px;
}
.stripe-intro-text {
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 16px;
}
.payment-methods-preview .payment-methods-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 8px;
}
.stripe-methods {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.stripe-methods i {
    font-size: 1.5rem;
    color: #6b7280;
}
.stripe-methods .method-name {
    font-size: 0.85rem;
    color: #6b7280;
}
.btn-stripe-checkout {
    margin-top: 8px;
    margin-bottom: 20px;
}

/* Payment page – modern card (matches checkout) */
.payment-card-modern .checkout-card-title-modern {
    margin-bottom: 16px;
}
.payment-intro-modern {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 24px;
}
.payment-page-methods {
    margin-bottom: 28px;
}
.payment-cta-wrap {
    margin: 28px 0 24px;
}
.payment-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 18px 28px;
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: 14px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.payment-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}
.payment-cta-btn i {
    font-size: 1.2em;
}
.payment-cta-amount {
    margin-left: 4px;
    font-weight: 800;
    opacity: 1;
}
.payment-trust-pills {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.payment-alt-method {
    margin-top: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}
.payment-alt-method summary {
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 500;
    color: #374151;
    list-style: none;
}
.payment-alt-method summary::-webkit-details-marker {
    display: none;
}
.payment-alt-method[open] summary {
    border-bottom: 1px solid #e5e7eb;
}
.payment-alt-method .bank-details-box {
    padding: 18px;
}

.payment-methods-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.payment-option {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.payment-option.active {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.payment-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-label {
    display: block;
    padding: 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.payment-label:hover {
    background: #f8f9fa;
}

.payment-method-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 10px;
    flex-shrink: 0;
}

.payment-icon-wrapper i {
    font-size: 1.5rem;
    color: white;
}

.payment-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.payment-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.payment-description {
    font-size: 0.9rem;
    color: #6b7280;
}

.payment-badge {
    margin-left: auto;
}

.badge-popular {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.payment-logos {
    display: flex;
    gap: 10px;
    font-size: 1.8rem;
    color: #6b7280;
}

.payment-details {
    display: none;
    padding: 20px;
    background: #f8f9fa;
    border-top: 2px solid #e9ecef;
}

.payment-details.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-note {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #6b7280;
}

.payment-note i {
    color: #3b82f6;
    margin-top: 2px;
}

.bank-details-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.bank-details-box h4 {
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 600;
}

.bank-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bank-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

.bank-info-row .label {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.9rem;
}

.bank-info-row .value {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #1f2937;
    flex: 1;
    text-align: right;
    margin-right: 10px;
}

.copy-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: #1e40af;
    transform: scale(1.05);
}

.copy-btn i {
    font-size: 0.9rem;
}

.card-icons {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
    font-size: 1.5rem;
    color: #6b7280;
}

.security-badges {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e9ecef;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #6b7280;
}

.security-badge i {
    font-size: 1.8rem;
    color: #3b82f6;
}

.security-badge span {
    font-size: 0.85rem;
    font-weight: 500;
}

.payment-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summary-card,
.customer-info-card,
.help-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.summary-card h3,
.customer-info-card h4,
.help-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.customer-info-card h4,
.help-card h4 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-info-card h4 i,
.help-card h4 i {
    color: #3b82f6;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
}

.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-item-details {
    flex: 1;
}

.summary-item-name {
    display: block;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 4px;
}

.summary-item-qty {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
}

.summary-item-price {
    font-weight: 600;
    color: #1f2937;
}

.link-edit {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
    transition: color 0.2s;
}

.link-edit:hover {
    color: #1e40af;
}

#customer-info-display {
    font-size: 0.95rem;
    line-height: 1.8;
}

#customer-info-display p {
    margin: 5px 0;
    color: #6b7280;
}

#customer-info-display strong {
    color: #1f2937;
}

/* Responsive Payment */
@media (max-width: 968px) {
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-summary {
        order: -1;
    }
    
    .payment-method-header {
        flex-wrap: wrap;
    }
    
    .payment-badge {
        margin-left: 0;
        order: -1;
        width: 100%;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 568px) {
    .payment-card {
        padding: 25px 20px;
    }
    
    .payment-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .payment-label {
        padding: 15px;
    }
    
    .payment-method-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .payment-logos {
        font-size: 1.4rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .bank-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .bank-info-row .value {
        text-align: left;
        margin-right: 0;
    }
}

/* =================================================================================== */
/*    ORDER CONFIRMATION PAGE STYLES                                                  */
/* =================================================================================== */

.confirmation-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 24%);
    min-height: 90vh;
}

.confirmation-container {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.success-icon-wrapper {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto 28px;
}

.success-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.35);
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon.animate {
    transform: scale(1);
}

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

.success-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #10b981;
    border-radius: 50%;
    opacity: 0;
    animation: ring-expand 1s ease-out 0.3s forwards;
}

@keyframes ring-expand {
    0% {
        transform: scale(0.85);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.confirmation-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px 44px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 10px 20px -5px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.confirmation-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.confirmation-subtitle {
    font-size: 1.0625rem;
    color: #64748b;
    margin-bottom: 24px;
}

.confirmation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #059669;
    background: #ecfdf5;
    padding: 8px 16px;
    border-radius: 9999px;
    margin: 0 0 16px;
}

.confirmation-badge i {
    font-size: 1rem;
}

.confirmation-badge--hidden {
    display: none;
}

.order-number-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 14px 28px;
    border-radius: 12px;
    margin: 0 0 28px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.order-number-label {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.order-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    letter-spacing: 0.02em;
}

.confirmation-message {
    background: #f8fafc;
    border-radius: 12px;
    padding: 22px 24px;
    margin: 0 0 24px;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.confirmation-message p {
    display: flex;
    align-items: start;
    gap: 12px;
    margin: 12px 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
}

.confirmation-message p:first-child {
    margin-top: 0;
}

.confirmation-message p:last-child {
    margin-bottom: 0;
}

.confirmation-message i {
    color: #10b981;
    font-size: 1.125rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.confirmation-message strong {
    color: #0f172a;
    font-weight: 600;
}

.order-summary-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 22px 24px;
    margin: 0 0 28px;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.order-summary-box h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.order-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.order-detail-row:last-child {
    border-bottom: none;
}

.order-detail-row .label {
    font-weight: 500;
    color: #6b7280;
}

.order-detail-row .value {
    font-weight: 600;
    color: #1f2937;
}

.order-detail-row .total-amount {
    font-size: 1.375rem;
    font-weight: 700;
    color: #059669;
}

.next-steps {
    margin: 0 0 32px;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
    text-align: center;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
}

.timeline-step:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.step-icon.completed {
    background: linear-gradient(135deg, #10b981, #059669);
}

.step-icon i {
    font-size: 1.5rem;
    color: #6b7280;
}

.step-icon.completed i {
    color: white;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
}

.help-box {
    display: flex;
    align-items: start;
    gap: 20px;
    background: #eff6ff;
    border: 2px solid #3b82f6;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    margin-top: 30px;
}

.help-box i {
    font-size: 2rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.help-box strong {
    display: block;
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 8px;
}

.help-box p {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.help-box a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.help-box a:hover {
    text-decoration: underline;
}

/* Responsive Confirmation */
@media (max-width: 768px) {
    .confirmation-section {
        padding: 40px 0;
    }
    
    .confirmation-content {
        padding: 30px 20px;
    }
    
    .confirmation-title {
        font-size: 2rem;
    }
    
    .success-icon-wrapper {
        width: 120px;
        height: 120px;
        margin-bottom: 30px;
    }
    
    .success-icon {
        width: 120px;
        height: 120px;
    }
    
    .success-icon i {
        font-size: 3rem;
    }
    
    .order-number-box {
        flex-direction: column;
        gap: 8px;
        padding: 20px 30px;
    }
    
    .order-number {
        font-size: 1.2rem;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .help-box {
        flex-direction: column;
        text-align: center;
    }
    
    .help-box i {
        margin: 0 auto;
    }
}

/* =================================================================================== */
/*    MODERN SUCCESS MODAL (Quote, Checkout redirect)                                   */
/* =================================================================================== */

.og-success-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: og-modal-fade-in 0.25s ease-out;
}

.og-success-modal__dialog {
    background: #fff;
    border-radius: 20px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
    text-align: center;
    overflow: hidden;
    animation: og-modal-slide-up 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.og-success-modal__icon-wrap {
    padding: 32px 24px 0;
}

.og-success-modal__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
}

.og-success-modal__icon i {
    font-size: 2rem;
    color: #fff;
}

.og-success-modal__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 20px 24px 8px;
    line-height: 1.3;
}

.og-success-modal__text {
    font-size: 1rem;
    color: #64748b;
    margin: 0 24px 24px;
    line-height: 1.6;
}

.og-success-modal__details {
    background: #f8fafc;
    margin: 0 24px 24px;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.og-success-modal__details p {
    margin: 0 0 8px;
    font-size: 0.9375rem;
    color: #475569;
}

.og-success-modal__details p:last-child {
    margin-bottom: 0;
}

.og-success-modal__details strong {
    color: #0f172a;
    font-weight: 600;
}

.og-success-modal__actions {
    display: flex;
    gap: 12px;
    padding: 0 24px 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.og-success-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    text-decoration: none;
    min-width: 140px;
}

.og-success-modal__btn:active {
    transform: scale(0.98);
}

.og-success-modal__btn--primary {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
}

.og-success-modal__btn--primary:hover {
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.35);
}

.og-success-modal__btn--secondary {
    background: #f1f5f9;
    color: #475569;
}

.og-success-modal__btn--secondary:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* Redirect modal (checkout) */
.og-success-modal--redirect .og-success-modal__icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.35);
}

.og-success-modal--redirect .og-success-modal__icon i {
    animation: og-spin 0.9s linear infinite;
}

@keyframes og-modal-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes og-modal-slide-up {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes og-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 480px) {
    .og-success-modal__dialog {
        border-radius: 16px;
    }
    .og-success-modal__title {
        font-size: 1.25rem;
    }
    .og-success-modal__actions {
        flex-direction: column;
    }
    .og-success-modal__btn {
        width: 100%;
    }
}

/* =================================================================================== */
/*    LEGAL & BUSINESS PAGES STYLES                                                   */
/* =================================================================================== */

.page-header {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
}

.page-header__content {
    max-width: 800px;
    margin: 0 auto;
}

.page-header__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-header__title i {
    font-size: 2rem;
}

.page-header__subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ======================================================================
   MODERN LEGAL PAGES STYLES - Enterprise Level Design
   ====================================================================== */
.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 30px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.08);
}

.legal-section {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--neutral-200);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 2rem;
    color: var(--neutral-900);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-500);
    font-weight: 700;
    letter-spacing: -0.01em;
    position: relative;
}

.legal-section h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
    border-radius: 2px;
}

.legal-section h3 {
    font-size: 1.4rem;
    color: var(--neutral-800);
    margin: 32px 0 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.legal-section h4 {
    font-size: 1.15rem;
    color: var(--neutral-700);
    margin: 24px 0 12px;
    font-weight: 600;
}

.legal-section p {
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: 16px;
    font-size: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 20px 0 24px 0;
    padding-left: 32px;
}

.legal-section li {
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: 12px;
    font-size: 1rem;
}

.legal-section ul li {
    list-style-type: disc;
}

.legal-section ol li {
    list-style-type: decimal;
}

.legal-section strong {
    color: var(--neutral-900);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-section a:hover {
    color: var(--primary-700);
    border-bottom-color: var(--primary-700);
}

.contact-box {
    background: linear-gradient(135deg, var(--neutral-50) 0%, #ffffff 100%);
    border-left: 4px solid var(--primary-500);
    padding: 28px 32px;
    margin: 32px 0;
    border-radius: 12px;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 4px 12px rgba(59, 130, 246, 0.1);
}

.contact-box p {
    margin: 10px 0;
    color: var(--neutral-700);
    line-height: 1.7;
}

.contact-box a {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: var(--primary-700);
    text-decoration: underline;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
    border: 2px solid var(--primary-300);
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.highlight-box h3 {
    color: var(--primary-800);
    margin-top: 0;
    font-weight: 700;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 50%, #ffffff 100%);
    border: 2px solid var(--primary-300);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    margin: 60px 0;
    box-shadow: 
        0 8px 20px rgba(59, 130, 246, 0.15),
        0 4px 12px rgba(59, 130, 246, 0.1);
}

.cta-box h3 {
    font-size: 1.75rem;
    color: var(--neutral-900);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
}

.cta-box h3 i {
    color: var(--primary-600);
    font-size: 1.5rem;
}

.cta-box p {
    color: var(--neutral-600);
    margin-bottom: 32px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header__title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .page-header__subtitle {
        font-size: 0.95rem;
    }
    
    .legal-content {
        padding: 30px 15px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ===================================
   Glazen Schuifwand Configurator Styles
   =================================== */

.config-option {
    transition: all 0.2s ease;
}

.config-option:hover {
    border-color: #3b82f6 !important;
    background: #eff6ff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.config-option input[type="radio"]:checked + * {
    color: #3b82f6;
}

/* Responsive Configurator */
@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: 1fr !important;
    }
    
    .shop-filters {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    /* Configurator page responsive */
    section > .container > div[style*="grid-template-columns: 1fr 500px"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Filter options responsive */
    .filter-options {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    /* Configurator options responsive */
    .config-option {
        padding: 12px !important;
    }
    
    /* Products grid responsive */
    .products-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Shop header responsive */
    .shop-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start !important;
    }
    
    /* Submenu responsive */
    .nav__submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.1);
        margin-top: 0;
        padding: 10px 0;
    }
    
    .nav__submenu-link {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 10px 20px;
    }
    
    .nav__submenu-link:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #3b82f6 !important;
    }
}

/* =================================================================================== */
/*    ENTERPRISE-LEVEL MOBILE RESPONSIVENESS ENHANCEMENTS                             */
/* =================================================================================== */

/* Touch-friendly minimum sizes (Apple HIG recommends 44x44px) */
@media (max-width: 768px) {
    /* Ensure all interactive elements are touch-friendly and clickable */
    button,
    .btn,
    a.btn,
    input[type="submit"],
    input[type="button"],
    .nav__link,
    .nav__toggle,
    .nav__close,
    .cart-item-remove,
    .quantity-btn,
    .option-item,
    .tab-btn,
    .step-btn,
    .quote-btn {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
        font-size: 16px; /* Prevents iOS zoom on input focus */
        -webkit-tap-highlight-color: rgba(59, 130, 246, 0.2);
        touch-action: manipulation;
        position: relative;
        z-index: 1;
        pointer-events: auto !important;
        cursor: pointer;
    }
    
    /* Ensure buttons are not blocked by any overlays */
    button:not(.nav__close):not(.nav__toggle),
    .btn:not(.nav__close):not(.nav__toggle),
    a.btn:not(.nav__close):not(.nav__toggle) {
        z-index: 10;
    }
    
    /* Ensure all pseudo-elements on buttons don't block clicks */
    button::before,
    button::after,
    .btn::before,
    .btn::after,
    a.btn::before,
    a.btn::after {
        pointer-events: none !important;
    }
    
    /* Ensure button content is above pseudo-elements */
    button > *,
    .btn > *,
    a.btn > * {
        position: relative;
        z-index: 1;
    }
    
    /* Form inputs - prevent zoom on iOS */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    input[type="time"],
    textarea,
    select {
        font-size: 16px !important; /* Prevents iOS zoom */
        padding: 12px 16px;
        min-height: 44px;
        border-radius: 8px;
        -webkit-appearance: none;
        appearance: none;
    }
    
    /* Better spacing for mobile forms */
    .form-group,
    .form-row {
        margin-bottom: 20px;
    }
    
    /* Improved image responsiveness */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Prevent horizontal scroll */
    body,
    html {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    /* Better container padding */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    /* Improved table responsiveness */
    table {
        width: 100%;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better modal/dialog on mobile */
    .modal,
    .dialog,
    .popup {
        width: 95%;
        max-width: 95%;
        margin: 20px auto;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Improved card spacing */
    .card,
    .product-card,
    .feature-card {
        margin-bottom: 20px;
    }
    
    /* Better text readability */
    p,
    li,
    span {
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Improved heading sizes */
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    h4 {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    
    /* Better navigation menu */
    .nav__menu {
        width: 85%;
        max-width: 320px;
        padding: 60px 20px 30px;
    }
    
    .nav__list {
        gap: 0;
    }
    
    .nav__item {
        width: 100%;
        margin: 0;
    }
    
    .nav__link {
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
        text-align: left;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Improved cart items on mobile */
    .cart-item-modern {
        padding: 16px;
        gap: 12px;
    }
    
    .cart-item-image {
        flex-shrink: 0;
    }
    
    /* Better product grid */
    .product-grid,
    .products-grid,
    .shop-grid {
        gap: 20px;
    }
    
    /* Improved quote page */
    .quote-container {
        margin: 10px;
        border-radius: 12px;
    }
    
    .quote-header {
        padding: 25px 20px;
    }
    
    .quote-header h1 {
        font-size: 1.75rem;
    }
    
    .quote-content {
        padding: 20px 16px;
    }
    
    .option-grid {
        gap: 12px;
    }
    
    .option-item {
        padding: 16px;
    }
    
    /* Better checkout forms */
    .checkout-form,
    .contact-form {
        padding: 20px 16px;
    }
    
    /* Improved buttons */
    .btn-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-group .btn {
        width: 100%;
    }
    
    /* Better spacing for sections */
    .section {
        padding: 40px 0;
    }
    
    /* Improved footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer__container {
        gap: 30px;
    }
    
    /* Better hero section */
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    /* Improved product detail page */
    .product-detail-grid {
        gap: 24px;
    }
    
    .product-gallery {
        margin-bottom: 24px;
    }
    
    /* Better configurator on mobile */
    .configurator-container {
        padding: 16px;
    }
    
    .config-options {
        gap: 12px;
    }
    
    /* Improved tabs */
    .tabs-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .tabs-nav::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    /* Better progress indicators */
    .progress-bar,
    .quote-progress {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Improved 3D viewer on mobile */
    .veranda-shape,
    #veranda3D {
        min-height: 300px;
        max-height: 400px;
    }
    
    /* Better measurement visual */
    .measurement-visual {
        padding: 16px;
        min-height: 350px;
    }
    
    /* Improved dimension labels */
    .dimension-labels-container {
        flex-direction: column;
        gap: 12px;
        top: -60px;
    }
    
    .dimension-label-3d {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
    /* Even tighter spacing */
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    /* Smaller headings */
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Tighter card padding */
    .card,
    .product-card {
        padding: 16px;
    }
    
    /* Smaller buttons but still touch-friendly */
    .btn {
        padding: 12px 18px;
        font-size: 15px;
    }
    
    /* Better quote page on small screens */
    .quote-header h1 {
        font-size: 1.5rem;
    }
    
    .quote-header p {
        font-size: 0.95rem;
    }
    
    /* Improved navigation menu */
    .nav__menu {
        width: 90%;
    }
    
    /* Better 3D viewer */
    .veranda-shape,
    #veranda3D {
        min-height: 250px;
        max-height: 350px;
    }
    
    /* Smaller dimension labels */
    .dimension-label-3d {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .dimension-labels-container {
        top: -50px;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 50vh;
        padding: 30px 0;
    }
    
    .nav__menu {
        height: 100vh;
        overflow-y: auto;
    }
    
    /* Better use of horizontal space */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    /* Improved form layout in landscape */
    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* =================================================================================== */
/*    COMPREHENSIVE MOBILE FIXES - OVERRIDING INLINE STYLES & IMPROVING LAYOUTS      */
/* =================================================================================== */

/* Mobile Hero Section - Enhanced */
@media (max-width: 768px) {
    .hero {
        min-height: 500px !important;
        padding: 40px 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-attachment: scroll !important;
    }
    
    .hero-content {
        max-width: 100% !important;
        padding: 25px 20px !important;
        margin: 0 15px !important;
        width: calc(100% - 30px) !important;
        background: rgba(15, 23, 42, 0.25) !important; /* Semi-transparent with opacity only, no blur */
        backdrop-filter: none !important; /* No blur - clear image visibility */
        -webkit-backdrop-filter: none !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        box-shadow: 
            0 4px 16px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    }
    
    .hero h1 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    .hero p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 260px !important;
        margin: 0 auto !important;
        padding: 10px 20px !important; /* Smaller padding for mobile */
        font-size: 13px !important; /* Smaller font for mobile */
        font-weight: 600 !important;
        border-radius: 6px !important; /* Tighter radius for enterprise look */
        letter-spacing: 0.3px !important; /* Professional letter spacing */
        justify-content: center !important;
    }
}

/* Mobile Product Grid - Enhanced */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 10px !important;
    }
    
    .product-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .product-image-container {
        height: 250px !important;
    }
    
    .product-content {
        padding: 20px !important;
    }
    
    .product-content h3 {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
    }
    
    .product-content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }
    
    .product-features {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    
    .feature-tag {
        font-size: 0.85rem !important;
        padding: 6px 12px !important;
    }
}

/* Mobile Features Grid - Enhanced */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 10px !important;
    }
    
    .feature-card {
        padding: 30px 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .feature-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
    }
    
    .feature-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 12px !important;
    }
    
    .feature-card p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
}

/* Mobile Quote Section - Enhanced */
@media (max-width: 768px) {
    .quote-section {
        padding: 50px 0 !important;
    }
    
    .quote-content {
        padding: 30px 20px !important;
        max-width: 100% !important;
    }
    
    .quote-content h2 {
        font-size: 1.75rem !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }
    
    .quote-content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 25px !important;
    }
    
    .quote-features {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-bottom: 30px !important;
    }
    
    .quote-feature {
        padding: 15px !important;
        font-size: 0.9rem !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        gap: 12px !important;
    }
    
    .quote-feature i {
        font-size: 1.2rem !important;
    }
    
    .quote-content .btn-large {
        width: 100% !important;
        padding: 16px 24px !important;
        font-size: 16px !important;
    }
}

/* Mobile Instagram Grid - Enhanced */
@media (max-width: 768px) {
    .instagram-preview {
        padding: 40px 0 !important;
    }
    
    .instagram-header {
        padding: 0 20px 30px !important;
    }
    
    .instagram-header h2 {
        font-size: 1.75rem !important;
        margin-bottom: 10px !important;
    }
    
    .instagram-header p {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }
    
    .instagram-link {
        padding: 12px 24px !important;
        font-size: 0.95rem !important;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 10px !important;
    }
    
    .instagram-post {
        border-radius: 10px !important;
    }
}

/* Mobile Shop Page - Fix Inline Styles */
@media (max-width: 768px) {
    .shop-section {
        padding: 30px 0 !important;
    }
    
    .shop-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .shop-filters {
        position: relative !important;
        top: auto !important;
        margin-bottom: 20px !important;
        padding: 20px !important;
        border-radius: 12px !important;
    }
    
    .filter-section h3 {
        font-size: 1.2rem !important;
        margin-bottom: 20px !important;
    }
    
    .filter-group {
        margin-bottom: 20px !important;
    }
    
    .filter-group h4 {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
    }
    
    .filter-options {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .shop-header {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 20px !important;
        align-items: flex-start !important;
    }
    
    .shop-sort {
        width: 100% !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    
    .shop-sort select {
        width: 100% !important;
        padding: 12px 16px !important;
        font-size: 16px !important;
    }
    
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Mobile Page Header - Enhanced */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 30px !important;
    }
    
    .page-header h1 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }
    
    .page-header p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
    
    /* Shop page header specific */
    .page-header[style*="background"] {
        padding: 50px 0 40px !important;
    }
    
    .page-header[style*="background"] h1 {
        font-size: 1.75rem !important;
    }
    
    .page-header[style*="background"] p {
        font-size: 0.95rem !important;
    }
    
    .breadcrumb {
        font-size: 0.85rem !important;
        margin-bottom: 15px !important;
        flex-wrap: wrap !important;
    }
    
    .breadcrumb i {
        font-size: 0.7rem !important;
        margin: 0 6px !important;
    }
}

/* Mobile Products Header - Enhanced */
@media (max-width: 768px) {
    .products-header {
        padding: 0 15px 40px !important;
    }
    
    .products-header h2 {
        font-size: 1.75rem !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }
    
    .products-header p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
}

/* Mobile Section Headers - Enhanced */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px !important;
        padding: 0 15px !important;
    }
    
    .section-header h2 {
        font-size: 1.75rem !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }
    
    .section-header p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
}

/* Mobile About Page - Enhanced */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .about-image {
        width: 100% !important;
        order: 1 !important;
    }
    
    .about-image img {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
    }
    
    .about-content {
        width: 100% !important;
        order: 2 !important;
    }
    
    .about-content h2 {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }
    
    .about-content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }
    
    .about-features {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 20px !important;
    }
    
    .about-feature-item {
        padding: 12px !important;
        font-size: 0.9rem !important;
    }
    
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .value-card {
        padding: 25px 20px !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .stat-item {
        padding: 20px 15px !important;
    }
    
    .stat-number {
        font-size: 2rem !important;
        margin-bottom: 8px !important;
    }
    
    .stat-label {
        font-size: 0.85rem !important;
    }
    
    /* About Hero Modern - Mobile */
    .about-hero {
        padding: 50px 0 !important;
    }
    
    .about-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .about-image-wrapper {
        border-radius: 16px !important;
    }
    
    .about-badge {
        font-size: 0.8rem !important;
        padding: 8px 16px !important;
    }
    
    .about-hero-content h2 {
        font-size: 1.75rem !important;
        margin-bottom: 16px !important;
    }
    
    .about-intro {
        font-size: 1rem !important;
    }
    
    .about-features-modern {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-top: 30px !important;
    }
    
    .about-feature-card {
        padding: 16px !important;
    }
    
    .feature-icon-wrapper {
        width: 40px !important;
        height: 40px !important;
    }
    
    .feature-icon-wrapper i {
        font-size: 1rem !important;
    }
    
    .feature-content h4 {
        font-size: 1rem !important;
    }
    
    .feature-content p {
        font-size: 0.85rem !important;
    }
    
    /* Story Section - Mobile */
    .story-section {
        padding: 60px 0 !important;
    }
    
    .section-header-modern {
        margin-bottom: 40px !important;
        padding: 0 15px !important;
    }
    
    .section-badge {
        font-size: 0.75rem !important;
        padding: 6px 16px !important;
    }
    
    .section-header-modern h2 {
        font-size: 1.75rem !important;
    }
    
    .section-header-modern p {
        font-size: 0.95rem !important;
    }
    
    .story-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        margin-top: 40px !important;
    }
    
    .story-item {
        padding: 30px 20px !important;
    }
    
    .story-number {
        font-size: 2.5rem !important;
    }
    
    .story-item h3 {
        font-size: 1.25rem !important;
    }
    
    .story-item p {
        font-size: 0.9rem !important;
    }
    
    /* Values Modern - Mobile */
    .values-section-modern {
        padding: 60px 0 !important;
    }
    
    .values-grid-modern {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 40px !important;
    }
    
    .value-card-modern {
        padding: 30px 20px !important;
    }
    
    .value-icon-modern {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 20px !important;
    }
    
    .value-icon-modern i {
        font-size: 1.5rem !important;
    }
    
    .value-card-modern h3 {
        font-size: 1.25rem !important;
    }
    
    .value-card-modern p {
        font-size: 0.9rem !important;
    }
    
    .value-highlight {
        padding: 10px 14px !important;
    }
    
    .value-highlight span {
        font-size: 0.85rem !important;
    }
    
    /* Stats Modern - Mobile */
    .stats-section-modern {
        padding: 60px 0 !important;
    }
    
    .stats-header {
        margin-bottom: 40px !important;
        padding: 0 15px !important;
    }
    
    .stats-header h2 {
        font-size: 1.75rem !important;
    }
    
    .stats-header p {
        font-size: 0.95rem !important;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .stat-card-modern {
        padding: 30px 15px !important;
    }
    
    .stat-icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 16px !important;
    }
    
    .stat-icon i {
        font-size: 1.25rem !important;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .stat-suffix {
        font-size: 1.5rem !important;
    }
    
    .stat-label {
        font-size: 1rem !important;
        margin-top: 8px !important;
    }
    
    .stat-description {
        font-size: 0.8rem !important;
    }
    
    /* Why Choose - Mobile */
    .why-choose-section {
        padding: 60px 0 !important;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        margin-top: 40px !important;
    }
    
    .why-choose-item {
        padding: 30px 20px !important;
    }
    
    .why-icon {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 20px !important;
    }
    
    .why-icon i {
        font-size: 1.5rem !important;
    }
    
    .why-choose-item h3 {
        font-size: 1.1rem !important;
    }
    
    .why-choose-item p {
        font-size: 0.9rem !important;
    }
    
    /* CTA Modern - Mobile */
    .cta-section-modern {
        padding: 60px 0 !important;
    }
    
    .cta-content-modern {
        padding: 0 15px !important;
    }
    
    .cta-badge {
        font-size: 0.8rem !important;
        padding: 8px 16px !important;
    }
    
    .cta-content-modern h2 {
        font-size: 1.75rem !important;
        margin-bottom: 16px !important;
    }
    
    .cta-content-modern p {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }
    
    .cta-buttons-modern {
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    .cta-buttons-modern .btn {
        width: 100% !important;
        min-width: auto !important;
    }
}

/* Mobile CTA Section - Enhanced */
@media (max-width: 768px) {
    .cta-section {
        padding: 50px 0 !important;
    }
    
    .cta-content {
        padding: 0 20px !important;
        text-align: center !important;
    }
    
    .cta-content h2 {
        font-size: 1.5rem !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
    }
    
    .cta-content p {
        font-size: 0.95rem !important;
        margin-bottom: 25px !important;
    }
    
    .cta-buttons {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }
    
    .cta-buttons .btn {
        width: 100% !important;
        padding: 14px 24px !important;
        font-size: 16px !important;
    }
}

/* Mobile Footer - Enhanced */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px !important;
    }
    
    .footer__container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
        padding: 0 20px !important;
    }
    
    .footer__content {
        width: 100% !important;
    }
    
    .footer__title {
        font-size: 1.1rem !important;
        margin-bottom: 15px !important;
    }
    
    .footer__links {
        gap: 10px !important;
    }
    
    .footer__links li {
        font-size: 0.9rem !important;
        margin-bottom: 8px !important;
    }
    
    .footer__social {
        justify-content: center !important;
        margin-top: 15px !important;
    }
    
    .footer__copy {
        text-align: center !important;
        font-size: 0.85rem !important;
        padding-top: 20px !important;
        margin-top: 20px !important;
    }
}

/* Mobile WhatsApp Float - Enhanced, No Overflow */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px !important;
        height: 56px !important;
        bottom: 20px !important;
        right: 20px !important;
        left: auto !important;
        z-index: 997 !important;
        /* Ensure it doesn't overflow on mobile */
        max-width: calc(100vw - 40px);
        max-height: calc(100vh - 40px);
    }
    
    .whatsapp-float svg {
        width: 28px !important;
        height: 28px !important;
    }
}

/* Very Small Screens - Adjust WhatsApp Button */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 52px !important;
        height: 52px !important;
        bottom: 15px !important;
        right: 15px !important;
    }
    
    .whatsapp-float svg {
        width: 26px !important;
        height: 26px !important;
    }
}

/* Extra Small Mobile - Further Optimizations */
@media (max-width: 480px) {
    .hero {
        min-height: 450px !important;
        padding: 30px 0 !important;
        background-attachment: scroll !important;
    }
    
    .hero-content {
        padding: 20px 15px !important;
    }
    
    .hero h1 {
        font-size: 1.5rem !important;
    }
    
    .hero p {
        font-size: 0.9rem !important;
    }
    
    .product-grid,
    .features-grid,
    .instagram-grid {
        gap: 15px !important;
        padding: 0 5px !important;
    }
    
    .quote-content h2 {
        font-size: 1.5rem !important;
    }
    
    .section-header h2,
    .products-header h2 {
        font-size: 1.5rem !important;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

/* =================================================================================== */
/*    SHOP PAGE SPECIFIC STYLES - MOVING INLINE STYLES TO CSS                         */
/* =================================================================================== */

.shop-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0 60px;
    color: white;
}

/* Shop Page Header Modern */
.shop-page-header-modern {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.shop-page-header-modern .breadcrumb-modern {
    margin-bottom: 24px;
    justify-content: center;
}

.shop-page-header-modern .breadcrumb-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 8px;
}

.shop-page-header-modern .breadcrumb-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.shop-page-header-modern .breadcrumb-link i {
    margin-right: 6px;
    font-size: 0.85rem;
}

.shop-page-header-modern .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 8px;
}

.shop-page-header-modern .breadcrumb-current {
    color: #ffffff;
    font-weight: 600;
}

/* ========== Glazen Schuifwand – Hero Section ========== */
.glazen-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.glazen-hero__media {
    position: absolute;
    inset: 0;
}
.glazen-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Mobile: hero image a bit wider – cover with position so more width is visible */
@media (max-width: 768px) {
    .glazen-hero__media {
        background: #0f172a;
    }
    .glazen-hero__img {
        object-fit: cover;
        object-position: center 40%;
    }
}
.glazen-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(15, 23, 42, 0.6) 35%,
        rgba(15, 23, 42, 0.2) 65%,
        transparent 100%
    );
    pointer-events: none;
}
.glazen-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 48px 0 56px;
    text-align: center;
}
.glazen-hero__content .container {
    max-width: 720px;
}
/* Breadcrumb – modern, scannable */
.glazen-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin-bottom: 24px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.glazen-hero__breadcrumb .breadcrumb-link {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.glazen-hero__breadcrumb .breadcrumb-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
.glazen-hero__breadcrumb .breadcrumb-link i {
    font-size: 0.75rem;
    opacity: 0.9;
}
.glazen-hero__breadcrumb .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 2px;
    font-weight: 400;
    user-select: none;
}
.glazen-hero__breadcrumb .breadcrumb-current {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.01em;
}
/* Title – clear hierarchy */
.glazen-hero__title {
    margin: 0 0 20px 0;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
/* Tagline – readable, professional */
.glazen-hero__tagline {
    margin: 0 auto 32px auto;
    max-width: 580px;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.65;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}
/* Feature badges – clean pills */
.glazen-hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
    margin-top: 0;
}
.glazen-hero__badges .feature-badge-modern {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    padding: 6px 12px 6px 6px;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.glazen-hero__badges .feature-badge-modern:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
}
.glazen-hero__badges .feature-badge-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}
.glazen-hero__badges .feature-badge-modern span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
}

/* Glazen Schuifwand Page Header Modern (fallback when no hero) */
.glazen-schuifwand-page-header-modern {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.glazen-schuifwand-page-header-modern .breadcrumb-modern {
    margin-bottom: 24px;
    justify-content: center;
}

.glazen-schuifwand-page-header-modern .breadcrumb-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 8px;
}

.glazen-schuifwand-page-header-modern .breadcrumb-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.glazen-schuifwand-page-header-modern .breadcrumb-link i {
    margin-right: 6px;
    font-size: 0.85rem;
}

.glazen-schuifwand-page-header-modern .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 8px;
}

.glazen-schuifwand-page-header-modern .breadcrumb-current {
    color: #ffffff;
    font-weight: 600;
}

/* Glazen Schuifwand Section */
.glazen-schuifwand-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.glazen-schuifwand-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Mobile Responsive - Glazen Schuifwand Page */
@media (max-width: 768px) {
    .glazen-hero {
        min-height: 70vh;
        align-items: flex-end;
    }
    .glazen-hero__content {
        padding: 32px 0 40px;
    }
    .glazen-hero__content .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .glazen-hero__breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 18px;
        gap: 4px 8px;
    }
    .glazen-hero__breadcrumb .breadcrumb-link {
        padding: 5px 8px;
    }
    .glazen-hero__title {
        margin-bottom: 14px;
        letter-spacing: -0.02em;
    }
    .glazen-hero__tagline {
        margin-bottom: 24px;
        padding: 0 8px;
        line-height: 1.6;
        font-size: clamp(0.9375rem, 2.5vw, 1.1rem);
    }
    .glazen-hero__badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 12px;
        padding: 0 8px;
    }
    .glazen-hero__badges .feature-badge-modern {
        width: auto;
        padding: 6px 10px 6px 6px;
        gap: 6px;
    }
    .glazen-hero__badges .feature-badge-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 0.8rem;
    }
    .glazen-hero__badges .feature-badge-modern span {
        font-size: 0.9375rem;
    }
    .glazen-schuifwand-page-header-modern {
        padding: 50px 0 40px !important;
    }
    
    .glazen-schuifwand-page-header-modern h1 {
        font-size: 2rem !important;
        margin-bottom: 16px !important;
    }
    
    .glazen-schuifwand-page-header-modern p {
        font-size: 1rem !important;
        padding: 0 15px !important;
    }
    
    .feature-badges-modern {
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: 30px !important;
        padding: 0 15px !important;
    }
    
    .feature-badge-modern {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 20px !important;
    }
    
    .feature-badge-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .feature-badge-icon i {
        font-size: 1rem !important;
    }
    
    .glazen-schuifwand-section {
        padding: 50px 0 !important;
    }
}

@media (max-width: 480px) {
    .glazen-hero {
        min-height: 60vh;
    }
    .glazen-hero__content {
        padding: 24px 0 32px;
    }
    .glazen-hero__content .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .glazen-hero__breadcrumb {
        font-size: 0.6875rem;
        margin-bottom: 14px;
        gap: 2px 6px;
    }
    .glazen-hero__breadcrumb .breadcrumb-link {
        padding: 4px 6px;
    }
    .glazen-hero__title {
        margin-bottom: 12px;
    }
    .glazen-hero__tagline {
        margin-bottom: 20px;
        padding: 0 4px;
        font-size: 0.9375rem;
        line-height: 1.58;
    }
    .glazen-hero__badges {
        gap: 8px 10px;
    }
    .glazen-hero__badges .feature-badge-modern {
        padding: 5px 10px 5px 5px;
        gap: 6px;
    }
    .glazen-hero__badges .feature-badge-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 0.75rem;
    }
    .glazen-hero__badges .feature-badge-modern span {
        font-size: 0.9375rem;
    }
    
    .glazen-schuifwand-section .products-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .product-card {
        border-radius: 16px !important;
    }
    
    .product-card-image {
        height: 240px !important;
    }
    
    .product-card-content {
        padding: 20px !important;
    }
    
    .product-card-title {
        font-size: 1.15rem !important;
    }
    
    .product-card-price {
        font-size: 1.4rem !important;
    }
}

/* ===================================
   Rolluiken Page Styles
   =================================== */

/* Rolluiken Page Header */
.rolluiken-page-header-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0 60px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.rolluiken-page-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.rolluiken-page-header-modern .container {
    position: relative;
    z-index: 1;
}

.rolluiken-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 30px;
}

.rolluiken-header-text {
    display: flex;
    flex-direction: column;
}

.rolluiken-page-header-modern h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.rolluiken-page-header-modern p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.rolluiken-header-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rolluiken-main-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: transparent;
    padding: 0;
    backdrop-filter: none;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rolluiken-main-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

/* ===================================
   Cart Page Header (compact & modern)
   =================================== */
.cart-page-header-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cart-page-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="0.5"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
}

.cart-page-header-modern .container {
    position: relative;
    z-index: 1;
}

/* Compact cart header */
.cart-page-header-compact {
    padding: 36px 0 40px;
}

.cart-page-header-modern .container--cart-header {
    padding-left: 24px;
    padding-right: 24px;
}

.cart-header-compact-inner {
    max-width: 640px;
    margin: 0;
    text-align: left;
}

.cart-page-header-modern .breadcrumb-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px 0;
    font-size: 0.8125rem;
    font-weight: 500;
}

.cart-page-header-modern .breadcrumb-compact .breadcrumb-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cart-page-header-modern .breadcrumb-compact .breadcrumb-link:hover {
    color: #fff;
}

.cart-page-header-modern .breadcrumb-compact .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.cart-page-header-modern .breadcrumb-compact .breadcrumb-current {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.cart-page-title {
    font-size: 1.875rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.cart-page-subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 20px 0;
    line-height: 1.5;
    font-weight: 500;
}

.cart-header-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
}

.cart-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cart-badge i {
    font-size: 0.8rem;
    opacity: 0.95;
}

/* Rolluiken Configurator Section */
.rolluiken-configurator-section {
    padding: 80px 0;
    background: #ffffff;
}

.configurator-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

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

.configurator-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.configurator-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    padding: 0 20px;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 3px solid #e5e7eb;
}

.step-item.active .step-number {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
}

.step-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-align: center;
}

.step-item.active .step-label {
    color: #1a1a1a;
    font-weight: 600;
}

/* Configurator Steps */
.configurator-steps {
    position: relative;
    min-height: 500px;
}

.config-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.config-step.active {
    display: block;
}

.config-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1a1a1a;
}

.form-group input[type="number"]:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.field-note {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-top: 6px;
}

/* Color Options */
.color-options {
    margin-bottom: 30px;
}

.color-option-group {
    margin-bottom: 35px;
}

.color-option-group label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}

.color-option:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.color-option.active {
    border-color: #1a1a1a;
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.15);
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.color-name {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    font-weight: 500;
}

.color-option.active .color-name {
    color: #1a1a1a;
    font-weight: 600;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 200px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    border-color: #1a1a1a;
    background: #f8f9fa;
}

.qty-btn:active {
    transform: scale(0.95);
}

.quantity-selector input {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Step Actions */
.step-actions {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    justify-content: flex-end;
}

/* Price Summary */
.price-summary {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.price-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.price-summary-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    border: none;
}

.btn-edit {
    padding: 8px 16px;
    background: #ffffff;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-edit:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.price-details {
    margin-bottom: 20px;
}

.price-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.95rem;
    color: #666;
}

.price-detail-item:last-of-type {
    border-bottom: none;
}

.price-detail-subtotal {
    font-weight: 600;
    color: #1a1a1a;
    border-top: 2px solid #e5e7eb;
    border-bottom: 2px solid #e5e7eb;
    padding: 15px 0;
    margin-top: 10px;
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 10px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
}

.btn-large {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Rolluiken Gallery Section */
.rolluiken-gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: #ffffff;
}

/* Rolluiken Features Section */
.rolluiken-features-section {
    padding: 80px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Rolluiken Technical Section */
.rolluiken-technical-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.technical-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.technical-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.technical-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.technical-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

/* Tablet Responsive - Rolluiken Page */
@media (max-width: 1024px) and (min-width: 769px) {
    .rolluiken-header-content {
        gap: 40px !important;
    }
    
    .rolluiken-page-header-modern h1,
    .cart-page-title {
        font-size: 2.5rem !important;
    }
    
    .rolluiken-main-image {
        max-height: 400px !important;
    }
}

/* Mobile Responsive - Rolluiken Page & Cart Page Header */
@media (max-width: 768px) {
    /* Header Section */
    .rolluiken-page-header-modern {
        padding: 40px 0 30px !important;
    }
    
    .cart-page-header-compact {
        padding: 24px 0 28px !important;
    }
    
    .cart-header-compact-inner {
        padding: 0;
    }
    
    .cart-page-header-modern .container--cart-header {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .breadcrumb-modern {
        font-size: 0.85rem !important;
        margin-bottom: 20px !important;
        padding: 0 15px !important;
    }
    
    .cart-page-header-modern .breadcrumb-compact {
        font-size: 0.75rem;
    }
    
    .cart-header-content {
        padding: 0 15px !important;
    }
    
    .cart-page-title {
        font-size: 1.5rem !important;
    }
    
    .cart-page-subtitle {
        font-size: 0.875rem !important;
        margin-bottom: 12px !important;
    }
    
    .cart-header-badges {
        gap: 8px;
    }
    
    .cart-badge {
        font-size: 0.75rem !important;
        padding: 5px 10px;
    }
    
    .cart-page-header-modern h1 {
        font-size: 1.75rem !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
        padding: 0 !important;
    }
    
    .cart-page-header-modern p {
        font-size: 0.95rem !important;
        padding: 0 !important;
        margin-bottom: 20px !important;
        line-height: 1.6 !important;
    }
    
    .rolluiken-header-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 15px !important;
    }
    
    .rolluiken-header-image {
        order: -1;
        margin-bottom: 0;
    }
    
    .rolluiken-main-image {
        max-height: 280px !important;
        padding: 0 !important;
        border-radius: 12px !important;
    }
    
    .rolluiken-page-header-modern h1 {
        font-size: 1.75rem !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
        padding: 0 !important;
    }
    
    .rolluiken-page-header-modern p {
        font-size: 0.95rem !important;
        padding: 0 !important;
        margin-bottom: 20px !important;
        line-height: 1.6 !important;
    }
    
    /* Feature Badges */
    .feature-badges-modern {
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: 25px !important;
        padding: 0 !important;
    }
    
    .feature-badge-modern {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
    
    .feature-badge-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .feature-badge-icon i {
        font-size: 1rem !important;
    }
    
    /* Configurator Section */
    .rolluiken-configurator-section {
        padding: 30px 0 !important;
    }
    
    .configurator-wrapper {
        padding: 20px 15px !important;
        margin: 0 10px !important;
        border-radius: 12px !important;
    }
    
    .configurator-header {
        margin-bottom: 30px !important;
    }
    
    .configurator-header h2 {
        font-size: 1.5rem !important;
        margin-bottom: 8px !important;
    }
    
    .configurator-subtitle {
        font-size: 0.9rem !important;
    }
    
    /* Step Indicator */
    .step-indicator {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 !important;
        margin-bottom: 30px !important;
    }
    
    .step-indicator::before {
        display: none !important;
    }
    
    .step-item {
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        padding: 12px !important;
        background: #f8f9fa !important;
        border-radius: 10px !important;
    }
    
    .step-item.active {
        background: #1a1a1a !important;
        color: #ffffff !important;
    }
    
    .step-item.active .step-label {
        color: #ffffff !important;
    }
    
    .step-number {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.95rem !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
    }
    
    .step-label {
        font-size: 0.9rem !important;
        text-align: left !important;
    }
    
    /* Config Steps */
    .configurator-steps {
        min-height: auto !important;
    }
    
    .config-step {
        padding: 0 !important;
    }
    
    .config-step h3 {
        font-size: 1.2rem !important;
        margin-bottom: 20px !important;
        padding-bottom: 12px !important;
    }
    
    /* Form Groups */
    .form-group {
        margin-bottom: 20px !important;
    }
    
    .form-group label {
        font-size: 0.9rem !important;
        margin-bottom: 8px !important;
    }
    
    .form-group input[type="number"],
    .form-group select {
        width: 100% !important;
        padding: 14px 16px !important;
        font-size: 16px !important;
        min-height: 44px !important;
        border-radius: 8px !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    /* Prevent zoom on input focus (iOS) */
    @supports (-webkit-touch-callout: none) {
        .form-group input[type="number"]:focus,
        .form-group select:focus {
            font-size: 16px !important;
        }
    }
    
    .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a1a' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
        background-repeat: no-repeat !important;
        background-position: right 16px center !important;
        background-size: 12px !important;
        padding-right: 40px !important;
    }
    
    .field-note {
        font-size: 0.8rem !important;
        margin-top: 5px !important;
    }
    
    /* Color Options */
    .color-options {
        margin-bottom: 25px !important;
    }
    
    .color-option-group {
        margin-bottom: 25px !important;
    }
    
    .color-option-group label {
        font-size: 0.9rem !important;
        margin-bottom: 12px !important;
    }
    
    .color-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }
    
    .color-option {
        padding: 12px 8px !important;
        min-height: auto !important;
    }
    
    .color-swatch {
        width: 45px !important;
        height: 45px !important;
        margin-bottom: 8px !important;
    }
    
    .color-name {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
    }
    
    /* Quantity Selector */
    .quantity-selector {
        max-width: 100% !important;
        justify-content: center !important;
    }
    
    .qty-btn {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        font-size: 1.1rem !important;
    }
    
    .quantity-selector input {
        font-size: 1rem !important;
        min-height: 44px !important;
    }
    
    /* Step Actions */
    .step-actions {
        flex-direction: column-reverse !important;
        gap: 12px !important;
        margin-top: 30px !important;
    }
    
    .step-actions .btn {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 1rem !important;
        min-height: 44px !important;
        border-radius: 8px !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(26, 26, 26, 0.2) !important;
    }
    
    /* Better touch targets for all interactive elements */
    .color-option,
    .qty-btn,
    .btn-edit,
    .btn-large {
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(26, 26, 26, 0.1) !important;
    }
    
    /* Price Summary */
    .price-summary {
        padding: 20px 15px !important;
        margin-top: 30px !important;
        border-radius: 12px !important;
    }
    
    .price-summary-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
        margin-bottom: 20px !important;
        padding-bottom: 15px !important;
    }
    
    .price-summary-header h3 {
        font-size: 1.3rem !important;
    }
    
    .btn-edit {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 16px !important;
        min-height: 44px !important;
    }
    
    .price-details {
        margin-bottom: 15px !important;
    }
    
    .price-detail-item {
        padding: 10px 0 !important;
        font-size: 0.9rem !important;
    }
    
    .price-detail-subtotal {
        padding: 12px 0 !important;
        margin-top: 8px !important;
    }
    
    .price-total {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
        padding: 18px 15px !important;
        margin-bottom: 20px !important;
    }
    
    .price-label {
        font-size: 1rem !important;
    }
    
    .price-amount {
        font-size: 1.75rem !important;
    }
    
    .btn-large {
        width: 100% !important;
        padding: 16px 20px !important;
        font-size: 1rem !important;
        min-height: 50px !important;
    }
    
    /* Features Section */
    .rolluiken-features-section {
        padding: 40px 0 !important;
    }
    
    .section-header-modern {
        padding: 0 15px !important;
        margin-bottom: 30px !important;
    }
    
    .section-header-modern h2 {
        font-size: 1.75rem !important;
        margin-bottom: 10px !important;
    }
    
    .section-header-modern p {
        font-size: 0.95rem !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    .feature-card {
        padding: 30px 20px !important;
    }
    
    .feature-icon {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 20px !important;
        font-size: 1.75rem !important;
    }
    
    .feature-card h3 {
        font-size: 1.15rem !important;
        margin-bottom: 12px !important;
    }
    
    .feature-card p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    /* Technical Section */
    .rolluiken-technical-section {
        padding: 40px 0 !important;
    }
    
    .technical-content {
        padding: 0 15px !important;
    }
    
    .technical-content h2 {
        font-size: 1.75rem !important;
        margin-bottom: 30px !important;
    }
    
    .technical-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .technical-item {
        padding: 25px 20px !important;
    }
    
    .technical-item h4 {
        font-size: 1.15rem !important;
        margin-bottom: 12px !important;
    }
    
    .technical-item p {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
    }
    
    /* Container padding on mobile */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Extra Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .rolluiken-page-header-modern {
        padding: 30px 0 25px !important;
    }
    
    .rolluiken-page-header-modern h1 {
        font-size: 1.5rem !important;
    }
    
    .rolluiken-main-image {
        max-height: 220px !important;
        padding: 0 !important;
    }
    
    .configurator-wrapper {
        padding: 15px 12px !important;
        margin: 0 5px !important;
    }
    
    .configurator-header h2 {
        font-size: 1.3rem !important;
    }
    
    .config-step h3 {
        font-size: 1.1rem !important;
    }
    
    .color-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    
    .color-swatch {
        width: 40px !important;
        height: 40px !important;
    }
    
    .color-name {
        font-size: 0.7rem !important;
    }
    
    .step-number {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.85rem !important;
    }
    
    .step-label {
        font-size: 0.85rem !important;
    }
    
    .price-amount {
        font-size: 1.5rem !important;
    }
    
    .feature-badge-modern {
        padding: 10px 16px !important;
        font-size: 0.85rem !important;
    }
    
    .feature-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    .technical-content h2 {
        font-size: 1.5rem !important;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .rolluiken-header-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 25px !important;
    }
    
    .rolluiken-header-image {
        order: 0 !important;
    }
    
    .rolluiken-main-image {
        max-height: 200px !important;
        padding: 0 !important;
    }
    
    .configurator-wrapper {
        padding: 20px !important;
    }
    
    .step-indicator {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
    
    .step-item {
        flex: 0 0 calc(50% - 5px) !important;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-page-header-modern h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.shop-page-header-modern p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.shop-page-header-modern p strong {
    color: #60a5fa;
    font-weight: 700;
}

.feature-badges {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Modern Feature Badges */
.feature-badges-modern {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-badge-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 14px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-badge-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-badge-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-badge-modern span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.feature-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-badge i {
    color: white;
}

.feature-badge span {
    color: white;
    font-weight: 600;
}

/* Mobile Responsive - Shop Page Header */
@media (max-width: 768px) {
    .shop-page-header-modern {
        padding: 50px 0 40px !important;
    }
    
    .shop-page-header-modern h1 {
        font-size: 2rem !important;
        margin-bottom: 16px !important;
    }
    
    .shop-page-header-modern p {
        font-size: 1rem !important;
        padding: 0 15px !important;
    }
    
    .feature-badges-modern {
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: 30px !important;
        padding: 0 15px !important;
    }
    
    .feature-badge-modern {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 20px !important;
    }
    
    .feature-badge-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .feature-badge-icon i {
        font-size: 1rem !important;
    }
    
    .shop-section {
        padding: 50px 0 !important;
    }
    
    .shop-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .shop-filters {
        position: static !important;
        margin-bottom: 30px !important;
        padding: 25px 20px !important;
    }
    
    .shop-content {
        padding: 25px 20px !important;
    }
    
    .shop-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }
    
    .shop-results {
        font-size: 0.9rem !important;
    }
    
    .shop-sort {
        width: 100% !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    
    .shop-sort select {
        width: 100% !important;
    }
    
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .product-card {
        border-radius: 16px !important;
    }
    
    .product-card-image {
        height: 240px !important;
    }
    
    .product-card-content {
        padding: 20px !important;
    }
    
    .product-card-title {
        font-size: 1.15rem !important;
    }
    
    .product-card-price {
        font-size: 1.4rem !important;
    }
}

.shop-filters {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.filter-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1f2937;
}

.filter-section h3 i {
    color: #3b82f6;
}

.shop-header {
    background: white;
    border-radius: 16px;
    padding: 20px 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.shop-results {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-results i {
    color: #3b82f6;
}

.shop-results span {
    font-weight: 600;
    color: #1f2937;
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-sort label {
    font-weight: 500;
    color: #6b7280;
}

.shop-sort select {
    padding: 8px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.no-products {
    display: none;
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.no-products i {
    font-size: 4.5rem;
    color: #cbd5e1;
    margin-bottom: 24px;
    opacity: 0.6;
}

.no-products h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.no-products p {
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Mobile Shop Page Header */
@media (max-width: 768px) {
    .shop-page-header {
        padding: 50px 0 40px !important;
    }
    
    .shop-page-header h1 {
        font-size: 1.75rem !important;
    }
    
    .shop-page-header p {
        font-size: 0.95rem !important;
    }
    
    .feature-badges {
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 20px !important;
    }
    
    .feature-badge {
        width: 100% !important;
        justify-content: center !important;
        padding: 10px 20px !important;
    }
}

/* =================================================================================== */
/*    GLAZEN SCHUIFWAND CONFIGURATOR PAGE - COMPREHENSIVE MOBILE FIXES               */
/* =================================================================================== */

/* Mobile Configurator Layout - Override Inline Styles */
@media (max-width: 768px) {
    /* Main product section - force single column layout */
    section[style*="padding: 40px 0"] {
        padding: 30px 0 !important;
    }
    
    section[style*="padding: 40px 0"] > .container > div {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        align-items: stretch !important;
    }
    
    /* Main product section grid - force single column */
    section[style*="padding: 40px 0"] > .container > div[style*="grid-template-columns: 1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        align-items: stretch !important;
    }
    
    /* Product images section - remove sticky, full width */
    .product-images-sticky {
        position: relative !important;
        top: auto !important;
        align-self: stretch !important;
        order: 1 !important;
    }
    
    /* Main image container */
    .product-images-sticky > div[style*="background: #f8f9fa"] {
        padding: 20px !important;
        margin-bottom: 15px !important;
    }
    
    /* Product image */
    #config-product-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Image thumbnails - 2 columns on mobile */
    #image-thumbnails {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    /* Product info section - remove sticky, full width */
    section[style*="padding: 40px 0"] > .container > div[style*="grid-template-columns: 1fr 1fr"] > div[style*="position: sticky"] {
        position: relative !important;
        top: auto !important;
        order: 2 !important;
    }
    
    /* Configurator content */
    .configurator-content {
        padding-right: 0 !important;
    }
    
    /* Product title */
    #config-product-name {
        font-size: 1.5rem !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
    }
    
    /* Price section */
    #config-product-name + div[style*="margin-bottom: 20px"] {
        margin-bottom: 20px !important;
    }
    
    #config-product-name + div[style*="margin-bottom: 20px"] > div {
        font-size: 0.95rem !important;
        margin-bottom: 12px !important;
    }
    
    #config-price {
        font-size: 1.75rem !important;
    }
    
    #config-original-price {
        font-size: 0.9rem !important;
    }
    
    /* Description section */
    .description-section {
        padding: 15px !important;
        margin-bottom: 20px !important;
    }
    
    .description-section p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    /* Included items list */
    ul[style*="list-style: none"] {
        padding: 0 !important;
    }
    
    ul[style*="list-style: none"] li {
        padding: 8px 0 !important;
        font-size: 0.9rem !important;
    }
    
    /* Configurator section headings */
    h2[style*="font-size: 1.3rem"] {
        font-size: 1.2rem !important;
        margin-bottom: 20px !important;
    }
    
    h3[style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
    }
    
    /* Form labels */
    label[style*="display: block"][style*="font-weight: 600"] {
        font-size: 0.9rem !important;
        margin-bottom: 8px !important;
    }
    
    /* Select inputs */
    select[style*="width: 100%"] {
        width: 100% !important;
        padding: 12px 16px !important;
        font-size: 16px !important;
        min-height: 44px !important;
    }
    
    /* Glass type radio buttons - stack on mobile */
    div[style*="display: flex"][style*="gap: 15px"] {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    label[style*="display: flex"][style*="align-items: center"][style*="flex: 1"] {
        width: 100% !important;
        padding: 14px 20px !important;
        min-height: 44px !important;
    }
    
    /* Color options grid - 2 columns on mobile */
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .color-option {
        padding: 12px !important;
        min-height: auto !important;
    }
    
    .color-option div[style*="width: 40px"] {
        width: 35px !important;
        height: 35px !important;
    }
    
    .color-option span {
        font-size: 0.85rem !important;
    }
    
    /* Option items - stack layout on mobile */
    .option-item {
        padding: 15px !important;
        margin-bottom: 15px !important;
    }
    
    .option-item > div[style*="display: flex"][style*="justify-content: space-between"] {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: stretch !important;
    }
    
    .option-image {
        width: 100% !important;
        max-width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
        border-radius: 8px !important;
        margin: 0 auto !important;
    }
    
    .option-item > div[style*="display: flex"] > div[style*="flex: 1"] {
        flex: 1 !important;
        min-width: 0 !important;
        width: 100% !important;
    }
    
    .option-item h4 {
        font-size: 0.95rem !important;
        margin-bottom: 8px !important;
    }
    
    .option-item p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }
    
    .option-item > div[style*="display: flex"] > div[style*="flex: 1"] > div[style*="display: flex"][style*="justify-content: space-between"] {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
    }
    
    .option-add-btn {
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
        min-height: 44px !important;
        white-space: normal !important;
    }
    
    /* Handvat quantity control */
    .handvat-quantity-control {
        flex-direction: row !important;
        gap: 8px !important;
        align-items: center !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .handvat-quantity-control .qty-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        font-size: 1.2rem !important;
    }
    
    #handvat-quantity {
        width: 60px !important;
        padding: 8px !important;
        font-size: 16px !important;
        min-height: 40px !important;
    }
    
    /* Configurator summary section */
    .configurator-summary {
        padding-top: 20px !important;
        margin-top: 20px !important;
        position: sticky !important;
        bottom: 0 !important;
        background: white !important;
        z-index: 10 !important;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1) !important;
        border-top: 2px solid #e5e7eb !important;
    }
    
    .configurator-summary > div {
        padding: 0 10px 20px !important;
    }
    
    .configurator-summary button[onclick="addToCart()"] {
        width: 100% !important;
        padding: 16px 24px !important;
        font-size: 16px !important;
        min-height: 48px !important;
        margin-bottom: 12px !important;
    }
    
    .configurator-summary input[type="number"][id="config-quantity"] {
        width: 100px !important;
        padding: 10px !important;
        font-size: 16px !important;
        min-height: 44px !important;
    }
    
    .configurator-summary > div > div[style*="display: flex"][style*="align-items: center"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }
    
    .configurator-summary > div > div[style*="display: flex"][style*="align-items: center"] label {
        width: 100% !important;
    }
    
    /* Zaagservice checkbox */
    div[style*="margin-bottom: 25px"][style*="padding: 15px"] {
        padding: 15px !important;
        margin-bottom: 20px !important;
    }
    
    /* Garantie section */
    div[style*="margin-bottom: 30px"][style*="padding: 20px"][style*="background: #f8f9fa"] {
        padding: 15px !important;
        margin-bottom: 20px !important;
    }
    
    div[style*="margin-bottom: 30px"][style*="padding: 20px"][style*="background: #f8f9fa"] h4 {
        font-size: 0.95rem !important;
        margin-bottom: 8px !important;
    }
    
    div[style*="margin-bottom: 30px"][style*="padding: 20px"][style*="background: #f8f9fa"] p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
    
    /* Product details tabs section */
    .product-details-tabs-section {
        margin-top: 30px !important;
        padding: 40px 0 !important;
    }
    
    .product-details-tabs-section > .container > div[style*="border-bottom: 2px"] {
        margin-bottom: 30px !important;
        padding: 0 10px !important;
    }
    
    .product-details-tabs-section > .container > div[style*="border-bottom: 2px"] > div[style*="display: flex"] {
        flex-wrap: wrap !important;
        gap: 15px !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: 10px !important;
    }
    
    .details-tab-btn {
        padding: 12px 16px !important;
        font-size: 0.9rem !important;
        min-width: auto !important;
        white-space: nowrap !important;
        border-bottom: 2px solid transparent !important;
    }
    
    .details-tab-btn.active {
        border-bottom: 2px solid #1a1a1a !important;
    }
    
    .details-tab-pane {
        padding: 20px 15px !important;
    }
    
    .details-tab-pane h2 {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }
    
    .details-tab-pane > div[style*="background: white"] {
        padding: 20px !important;
    }
    
    .details-tab-pane table {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .details-tab-pane table tr {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        padding: 12px 0 !important;
    }
    
    .details-tab-pane table th,
    .details-tab-pane table td {
        padding: 8px 0 !important;
        width: auto !important;
    }
    
    .details-tab-pane table th {
        font-size: 0.9rem !important;
    }
    
    .details-tab-pane table td {
        font-size: 0.85rem !important;
    }
    
    /* FAQ section */
    .faq-item {
        margin-bottom: 15px !important;
    }
    
    .faq-question {
        padding: 15px !important;
        font-size: 0.95rem !important;
    }
    
    .faq-answer {
        padding: 15px !important;
        font-size: 0.9rem !important;
    }
}

/* Extra small mobile - Further optimizations */
@media (max-width: 480px) {
    /* Product title */
    #config-product-name {
        font-size: 1.3rem !important;
    }
    
    /* Price */
    #config-price {
        font-size: 1.5rem !important;
    }
    
    /* Color options - single column on very small screens */
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Thumbnails - 2 columns maintained */
    #image-thumbnails {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Option items */
    .option-item {
        padding: 12px !important;
    }
    
    .option-image {
        height: 180px !important;
    }
    
    /* Section padding */
    section[style*="padding: 40px 0"] {
        padding: 30px 0 !important;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Ensure crisp rendering on retina displays */
    img,
    .logo,
    .icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
    /* Can be added if dark mode is implemented */
}

/* Print optimizations */
@media print {
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .header,
    .footer,
    .nav,
    .btn,
    button {
        display: none !important;
    }
    
    a {
        text-decoration: underline;
    }
    
    img {
        max-width: 100%;
        page-break-inside: avoid;
    }
    
    .page-break {
        page-break-after: always;
    }
}

/* =================================================================================== */
/*    MODERN CART SUCCESS NOTIFICATION/DIALOG                                         */
/* =================================================================================== */

.cart-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-success-dialog {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    max-width: 500px;
    width: 100%;
    padding: 0;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.cart-success-overlay.active .cart-success-dialog {
    transform: scale(1) translateY(0);
}

.cart-success-dialog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 50%, #22c55e 100%);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.cart-success-header {
    padding: 32px 32px 24px;
    text-align: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.cart-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
    animation: successPulse 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.cart-success-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.2);
    animation: ripple 1s ease-out infinite;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.cart-success-icon i {
    font-size: 2.5rem;
    color: white;
    z-index: 1;
    position: relative;
}

.cart-success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.3;
}

.cart-success-message {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.cart-success-content {
    padding: 24px 32px;
}

.cart-success-product {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 20px;
}

.cart-success-product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-success-product-info {
    flex: 1;
    min-width: 0;
}

.cart-success-product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-success-product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #22c55e;
    margin: 0;
}

.cart-success-actions {
    display: flex;
    gap: 12px;
    padding: 0 32px 32px;
}

.cart-success-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.cart-success-btn-primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
}

.cart-success-btn-primary:hover {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 26, 26, 0.4);
}

.cart-success-btn-secondary {
    background: white;
    color: #1a1a1a;
    border: 2px solid #e5e7eb;
}

.cart-success-btn-secondary:hover {
    background: #f8f9fa;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.cart-success-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.cart-success-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.cart-success-close i {
    font-size: 1.1rem;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-success-dialog {
        max-width: 100%;
        margin: 0;
        border-radius: 20px 20px 0 0;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .cart-success-overlay {
        align-items: flex-end;
        padding: 0;
    }
    
    .cart-success-header {
        padding: 24px 20px 20px;
    }
    
    .cart-success-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }
    
    .cart-success-icon i {
        font-size: 2rem;
    }
    
    .cart-success-title {
        font-size: 1.3rem;
    }
    
    .cart-success-message {
        font-size: 0.9rem;
    }
    
    .cart-success-content {
        padding: 20px;
    }
    
    .cart-success-product {
        padding: 12px;
        gap: 12px;
    }
    
    .cart-success-product-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-success-product-name {
        font-size: 0.9rem;
    }
    
    .cart-success-product-price {
        font-size: 1rem;
    }
    
    .cart-success-actions {
        flex-direction: column;
        padding: 0 20px 20px;
        gap: 10px;
    }
    
    .cart-success-btn {
        width: 100%;
        padding: 16px 24px;
    }
    
    .cart-success-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
    }
}

/* =================================================================================== */
/*    ENTERPRISE PAYMENT ENHANCEMENTS                                                 */
/* =================================================================================== */

/* Payment Error Modal */
.payment-error-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.payment-error-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.payment-error-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: slideUp 0.3s ease-out;
}

.payment-error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.payment-error-icon i {
    font-size: 2.5rem;
    color: white;
}

.payment-error-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.payment-error-content p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
}

.payment-error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.payment-error-actions .btn {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Field Error Styles */
.field-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: slideDown 0.2s ease-out;
}

.field-error::before {
    content: '⚠';
    font-size: 1rem;
}

/* Customer Info Display */
.customer-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #374151;
}

.customer-info-row i {
    color: #3b82f6;
    width: 20px;
    text-align: center;
}

.customer-info-divider {
    margin: 15px 0;
    border: none;
    border-top: 1px solid #e5e7eb;
}

.customer-info-section {
    margin-top: 15px;
}

.customer-info-section strong {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.customer-info-section p {
    margin: 4px 0;
    color: #6b7280;
    font-size: 0.9rem;
    padding-left: 28px;
}

/* Summary Item Enhancements */
.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.summary-item:hover {
    background: #f3f4f6;
    transform: translateX(3px);
}

.summary-item-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    flex-shrink: 0;
}

.summary-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 1.2rem;
}

.summary-item-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.summary-item-qty {
    font-size: 0.85rem;
    color: #6b7280;
}

.summary-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    white-space: nowrap;
}

/* Card Type Detection */
.card-icons {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.card-icons i {
    font-size: 1.5rem;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.card-icons i[style*="opacity: 1"] {
    opacity: 1 !important;
    transform: scale(1.1);
}

/* Enhanced Payment Option Active State */
.payment-option.active .payment-icon-wrapper {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(34, 197, 94, 0.5);
    }
}

/* Enhanced Form Validation */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown) {
    border-color: #22c55e;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Security Badges Enhancement */
.security-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #e9ecef;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 0.85rem;
    color: #374151;
    transition: all 0.3s ease;
}

.security-badge:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.security-badge i {
    color: #3b82f6;
    font-size: 1.1rem;
}

/* Payment Method Selection Animation */
.payment-option {
    position: relative;
    overflow: hidden;
}

.payment-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.payment-option.active::before {
    left: 100%;
}

/* Enhanced Payment Button */
#complete-payment-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

#complete-payment-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

#complete-payment-btn:active:not(:disabled) {
    transform: translateY(0);
}

/* Responsive Payment Enhancements */
@media (max-width: 768px) {
    .payment-error-content {
        padding: 30px 20px;
        max-width: 90%;
    }
    
    .payment-error-icon {
        width: 60px;
        height: 60px;
    }
    
    .payment-error-icon i {
        font-size: 2rem;
    }
    
    .payment-error-content h3 {
        font-size: 1.3rem;
    }
    
    .summary-item {
        padding: 10px;
        gap: 10px;
    }
    
    .summary-item-image {
        width: 40px;
        height: 40px;
    }
    
    .customer-info-row {
        font-size: 0.9rem;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .security-badge {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Product reviews section (Veranda, Rolluiken, Glazen schuifwand) ===== */
.product-reviews-section,
#product-reviews {
    display: block !important;
    padding: 64px 0 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    visibility: visible;
}

.product-reviews-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.product-reviews-header {
    text-align: center;
    margin-bottom: 48px;
}

.product-reviews-section .section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.product-reviews-section .section-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

.reviews-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.reviews-stats .stars-wrap {
    display: inline-flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 1.25rem;
}

.reviews-stats .rating-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #334155;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: box-shadow 0.25s ease;
}

.review-card:hover {
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

.review-card .stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 14px;
}

.review-card .review-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #334155;
    margin: 0 0 20px 0;
}

.review-card .review-author {
    font-weight: 700;
    font-size: 0.9375rem;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.review-card .review-date {
    font-size: 0.8125rem;
    color: #94a3b8;
    margin: 0;
}

@media (max-width: 768px) {
    .product-reviews-section {
        padding: 48px 0 64px;
    }
    .product-reviews-section .section-title {
        font-size: 1.5rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================================================
   COOKIE CONSENT BANNER - Professional & Modern
   ====================================================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1080;
    padding: var(--spacing-lg) var(--container-padding);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.99) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2), 0 -1px 0 rgba(59, 130, 246, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: var(--font-size-sm);
    line-height: 1.5;
    color: var(--neutral-100);
    transform: translateY(100%);
    visibility: hidden;
    opacity: 0;
    transition: transform var(--transition-slow) cubic-bezier(0.4, 0, 0.2, 1),
                opacity var(--transition-base),
                visibility var(--transition-base);
}

.cookie-consent.is-visible {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.cookie-consent__inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.cookie-consent__text {
    flex: 1;
    min-width: 260px;
}

.cookie-consent__text strong {
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cookie-consent__text strong::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10 4 4 0 0 0-2-7 4 4 0 0 0-4-3 4 4 0 0 0-4 3 4 4 0 0 0-2 7 10 10 0 0 0 2 0'/%3E%3C/svg%3E") center/contain no-repeat;
    vertical-align: middle;
}

.cookie-consent__text a {
    color: var(--primary-300);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.cookie-consent__text a:hover {
    color: var(--primary-200);
    border-bottom-color: var(--primary-400);
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-shrink: 0;
}

.cookie-consent__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-lg);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast),
                transform var(--transition-fast), box-shadow var(--transition-fast);
    border: none;
    white-space: nowrap;
}

.cookie-consent__btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--neutral-100);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-consent__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.cookie-consent__btn--primary {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.cookie-consent__btn--primary:hover {
    background: linear-gradient(135deg, var(--primary-400) 0%, var(--primary-500) 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.45);
    transform: translateY(-1px);
}

.cookie-consent__btn--primary:active {
    transform: translateY(0);
}

@media (max-width: 640px) {
    .cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: var(--spacing-md);
    }
    .cookie-consent__text {
        min-width: 0;
    }
    .cookie-consent__actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}
