:root {
    --primary: #009E30;
    --primary-hover: #007D26;
    --primary-light: rgba(0, 158, 48, 0.1);
    --secondary: #E2003B;
    --accent: #F9A825;
    --text: #0F172A;
    --text-muted: #475569;
    --bg: #F8FAFC;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-deep: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    --shadow-md: 0 20px 50px -12px rgba(0, 0, 0, 0.1);
    --shadow-premium: 0 25px 60px -15px rgba(0, 158, 48, 0.1);
    --font-main: 'Outfit', sans-serif;
    --font-accent: 'Inter', sans-serif;
    --radius-lg: 32px;
    --radius-md: 20px;
}

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

body {
    font-family: var(--font-main);
    color: var(--text);
    background-color: var(--bg);
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 158, 48, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(226, 0, 59, 0.05) 0px, transparent 50%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    padding: 0 24px;
    max-width: 1280px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 8vw, 4rem); }
h2 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff !important; /* Forced white */
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Slightly more visible border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.subpage-view .navbar {
    background: var(--white) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.subpage-view .navbar nav a,
.subpage-view .navbar .cart-btn {
    color: var(--text) !important;
    text-shadow: none;
}

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

.cart-btn {
    position: relative;
    color: var(--text); /* Always dark on white background */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar.scrolled .cart-btn {
    color: var(--text);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--secondary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.navbar.scrolled {
    padding: 16px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.logo {
    height: 60px; /* Adjusted height */
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .logo {
    height: 60px;
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 0;
    }
    .logo {
        height: 45px;
    }
    .navbar.scrolled .logo {
        height: 40px;
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #0F172A !important; /* Forced dark text */
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: none !important;
}

.navbar.scrolled nav a {
    color: var(--text);
    text-shadow: none;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary) !important;
}

nav a:hover::after {
    width: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px -6px rgba(0, 158, 48, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -6px rgba(0, 158, 48, 0.5);
}

/* Hero — Clean Split Layout */
.hero {
    background: #faf8f5;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
    position: relative;
}

.hero-overlay {
    display: none;
}

.sound-wave {
    display: none;
}

.hero-img {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    flex-shrink: 0;
    border: 4px solid white;
    position: relative;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.glass-hero-card {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    max-width: 540px;
    box-shadow: none;
    text-align: left;
}

.glass-hero-card h1 {
    color: #1a1a1a;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 700;
}

.glass-hero-card .highlight {
    color: var(--primary);
}

.glass-hero-card p {
    color: #555;
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: 460px;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.6;
}

.badge-floating {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
    background: rgba(0, 158, 48, 0.1);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-cta-wrapper {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-primary-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    width: auto;
}

.cta-primary-group .btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-primary-group .btn-primary:hover {
    background: #007D26;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,158,48,0.3);
}

.cta-secondary-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-phone-minimal {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}
.btn-phone-minimal:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.btn-whatsapp-minimal {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.btn-whatsapp-minimal:hover {
    background: #25D366;
    color: white;
    transform: scale(1.05);
}

.hero-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    background: transparent;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-link:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -6px rgba(0, 158, 48, 0.4);
}

/* Mouse Scroll Indicator */
.mouse-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* ── Custom Booking Modal ── */
.booking-modal-backdrop {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    backdrop-filter: blur(4px);
    transition: opacity 0.2s, visibility 0.2s;
}
.booking-modal-backdrop.active {
    visibility: visible;
    opacity: 1;
}
.booking-modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95vw;
    max-width: 900px;
    height: 85vh;
    max-height: 750px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    z-index: 9999;
    overflow: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}
.booking-modal.active {
    visibility: visible;
    opacity: 1;
}
.booking-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0,0,0,0.06);
    color: #333;
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.booking-modal-close:hover {
    background: rgba(0,0,0,0.12);
}
#booking-modal-inner {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 1.5px solid white;
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: white;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

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

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 40px;
        min-height: auto;
    }
    .hero-container {
        flex-direction: column;
        gap: 32px;
        padding: 0;
    }
    .hero-img {
        width: 220px;
        height: 220px;
        order: -1;
    }
    .glass-hero-card {
        max-width: 100%;
        text-align: center;
    }
    .glass-hero-card p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-wrapper {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        gap: 12px;
    }
    .hero-cta-wrapper .btn-primary,
    .hero-cta-wrapper .hero-link {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        margin-top: 0 !important;
    }
}

.btn-outline-white {
    padding: 12px 30px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--text);
    border-color: var(--white);
}

/* Sections */
section {
    padding: clamp(50px, 6vh, 80px) 0;
}

.section-title {
    margin-bottom: 40px;
    text-align: center;
}

/* Features Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-item {
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 158, 48, 0.03));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

/* Feature item subtitle: max width equals heading */
.feature-item p {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

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

/* Workshop Section */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 80px;
    align-items: center;
}

.vision-content .section-title {
    text-align: left;
}

.custom-list {
    list-style: none;
    margin-top: 32px;
}

.custom-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.custom-list li::before {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.portrait-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: var(--shadow-md);
}

/* Reviews */
.reviews-section {
    background: linear-gradient(to bottom, var(--bg), var(--white));
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    padding: 40px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.stars {
    color: var(--accent);
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.review-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.author {
    font-weight: 700;
    color: var(--text);
    display: block;
}

/* Maps */
.map-card {
    border-radius: 32px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 40px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    margin: 24px 0;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #0F172A;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 32px;
    font-size: 1.25rem;
}

.footer-col p {
    opacity: 0.7;
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: var(--white);
    opacity: 0.7; /* Increased from 0.5 for better contrast */
    text-decoration: none;
    font-size: 0.95rem; /* Increased from 0.9rem */
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1001;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 158, 48, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-phone {
    background: var(--primary);
}

.btn-whatsapp {
    background: #25D366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.1);
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .nav-menu ul li a {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text);
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns a {
        width: 100%;
        text-align: center;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .cta-text {
        display: none;
    }
}

/* ── Kontakt-Seite ── */
.location-card {
    margin-top: 24px;
}
.location-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.location-address {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
}
.location-contact a {
    font-size: 1rem;
    color: var(--primary);
    text-decoration: none;
    line-height: 1.7;
}
.location-contact a:hover {
    text-decoration: underline;
}
.location-hours {
    margin-top: 36px;
    padding: 24px;
    background: #f6f8f5;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}
.hours-label {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.hours-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 4px;
}
.hours-note {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

/* Subpage Hero */
.subpage-hero {
    background: 
        radial-gradient(circle at 0% 0%, rgba(0, 158, 48, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(226, 0, 59, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: var(--white);
    padding: clamp(160px, 20vh, 220px) 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 158, 48, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.subpage-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.subpage-hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

/* Service Detail Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(0, 158, 48, 0.05), transparent 70%);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: var(--glass-deep);
    border-color: rgba(0, 158, 48, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 8px;
}


/* Reviews Section & Carousel */
.reviews-section {
    padding: 80px 0;
    background: #f8fafc;
    overflow: hidden;
}

.reviews-carousel {
    padding: 20px 0 60px !important;
}

.reviews-carousel .review-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.reviews-carousel .swiper-slide-active .review-card {
    background: var(--white);
    border-color: var(--primary-light);
    transform: scale(1.02);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.reviewer-info .name {
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.reviewer-info .date {
    font-size: 0.9rem;
    opacity: 0.5;
    margin-top: 4px;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* Mobile optimizations for spacing */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .main-hero {
        height: 80vh; /* Better on small mobile screens */
    }
    .hero-content h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    .feature-item {
        padding: 32px 24px;
    }
    .vision-grid {
        gap: 40px;
    }
}

/* Hearing Quiz */
.quiz-section {
    padding: 100px 0;
}

.quiz-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    border-radius: var(--radius-lg);
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    text-align: center;
}

.quiz-intro {
    margin-bottom: 40px;
    color: var(--text-muted);
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeInStep 0.5s ease-out;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.btn-quiz {
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 20px rgba(0, 158, 48, 0.3);
}

/* New Premium Card Button */
.btn-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 158, 48, 0.2);
    margin-top: 15px;
}

.service-card .btn-card-cta {
    width: 48px;
    height: 48px;
    padding: 0;
}

.btn-card-cta:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(0, 158, 48, 0.4);
}

.btn-card-cta svg {
    transition: transform 0.3s ease;
}

.btn-card-cta:hover svg {
    transform: translateX(4px);
}

.btn-quiz:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

#quiz-result {
    text-align: center;
}

#result-text {
    font-size: 1.25rem;
    margin: 20px 0 30px;
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background: rgba(0, 158, 48, 0.02);
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 24px;
    display: none;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

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

@media (max-width: 768px) {
    .quiz-options { grid-template-columns: 1fr; }
    .quiz-card { padding: 30px; }
}

/* ── Mobile Hero Verbesserungen ── */
@media (max-width: 768px) {
    .mouse-indicator {
        display: none !important;
    }
    .hero {
        min-height: auto;
        padding: 90px 16px 30px;
    }
    .hero-container {
        flex-direction: column;
        gap: 24px;
        padding: 0;
    }
    .hero-img {
        width: 180px;
        height: 180px;
        order: -1;
    }
    .glass-hero-card {
        max-width: 100%;
        text-align: center;
        padding: 0;
        margin: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
    }
    .glass-hero-card h1 {
        font-size: clamp(1.6rem, 7vw, 2rem);
        margin-bottom: 12px;
    }
    .glass-hero-card p {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        margin-bottom: 20px;
    }
    .hero-container {
        padding-left: 0;
        padding-right: 0;
    }
    .badge-floating {
        position: relative;
        top: auto;
        left: auto;
        display: inline-block;
        margin-bottom: 12px;
        font-size: 0.7rem;
        padding: 4px 14px;
    }
    .cta-primary-group {
        flex-direction: column;
        width: 100%;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        gap: 12px !important;
        border-radius: 0;
    }
    .cta-primary-group .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    .cta-secondary-row {
        display: flex;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }
    .btn-phone-minimal {
        width: 44px;
        height: 44px;
    }
    .btn-whatsapp-minimal {
        width: 44px;
        height: 44px;
    }
    .hero-link {
        margin-left: 0;
        text-align: center;
        display: inline-flex;
        margin-top: 8px;
        font-size: 0.95rem;
    }
    .sound-wave {
        display: none !important;
    }
}

/* Hearing Aid Simulator [NEW] */
.simulator-section {
    background: linear-gradient(to bottom, var(--white), var(--bg));
    padding: 100px 0;
}

.simulator-card {
    padding: 60px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--glass-border);
}

.simulator-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.sim-visual-area {
    background: #0F172A;
    padding: 40px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-md);
}

#sim-visualizer {
    width: 100%;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.85); /* Clearly visible white border */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.loss-control {
    width: 100%;
}

.loss-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.loss-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px; /* Increased from 10px */
    color: rgba(255, 255, 255, 0.7); /* Improved contrast from 0.4 */
    font-weight: 700;
    margin-top: 8px;
}

#sim-loss-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    accent-color: var(--primary);
}

#sim-loss-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px; /* Larger grab target */
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: transform 0.1s;
}

#sim-loss-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

#sim-loss-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: transform 0.1s;
}

#sim-loss-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.sim-settings-area {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.setting-group h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text);
}

.scenario-grid, .aid-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.scenario-opt, .aid-opt {
    padding: 14px 28px; /* Increased padding for larger tap targets */
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem; /* Increased from 0.9rem */
}

.scenario-opt.active, .aid-opt.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 8px 15px rgba(0, 158, 48, 0.2);
}

.aid-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 992px) {
    .sim-main-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Cookie Consent Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    z-index: 99999;
    padding: 24px 32px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}
.cookie-content h4 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: #fff;
}
.cookie-content p {
    margin: 0;
    font-size: 0.9rem; /* Increased from 0.85rem */
    color: rgba(255,255,255,0.85); /* Improved contrast from 0.7 */
    max-width: 500px;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}
.cookie-links {
    width: 100%;
    text-align: center;
    display: flex;
    gap: 16px;
    justify-content: center;
}
.cookie-links a {
    color: rgba(255,255,255,0.7); /* Improved contrast from 0.5 */
    font-size: 0.85rem; /* Increased from 0.8rem */
    text-decoration: underline;
    transition: color 0.2s;
}
.cookie-links a:hover {
    color: rgba(255,255,255,0.8);
}
.btn-cookie-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.btn-cookie-outline:hover {
    border-color: #fff;
    color: #fff;
}
@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    .cookie-actions button {
        width: 100%;
    }
}

/* ── Simulator Section ── */
.simulator-section {
    background: var(--bg);
}
.simulator-card {
    padding: 60px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--glass-border);
}
.simulator-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-muted);
    font-size: 1.1rem;
}
.sim-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.sim-visual-area {
    background: #0F172A;
    padding: 40px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-md);
}
#sim-visualizer {
    width: 100%;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.85); /* Clearly visible white border */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}
.loss-control {
    width: 100%;
}
.loss-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}
.loss-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    margin-top: 8px;
}
#sim-loss-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    accent-color: var(--primary);
}
#sim-loss-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: transform 0.1s;
}
#sim-loss-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}
#sim-loss-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: transform 0.1s;
}
#sim-loss-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}
.sim-settings-area {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.setting-group h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text);
}
.scenario-grid, .aid-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.scenario-opt, .aid-opt {
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.scenario-opt.active, .aid-opt.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 8px 15px rgba(0, 158, 48, 0.2);
}
.aid-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}
@media (max-width: 992px) {
    .sim-main-grid {
        grid-template-columns: 1fr;
    }
}
/* Duplicate mobile hero rules removed — consolidated in Mobile Hero section above */
/* WhatsApp FAB Fix: Cookie-Banner immer ueber WhatsApp Button */
.klaro .cookie-notice { z-index: 99999 !important; }
@media (max-width: 768px) {
  .klaro .cookie-notice { padding-bottom: 80px !important; box-sizing: content-box !important; }
}

/* ==========================================================================
   Cohesion & Coherence Additions (CTAs, circle buttons, booking banner)
   ========================================================================== */

/* Navbar CTA button */
.btn-nav-cta {
    padding: 8px 18px !important;
    font-size: 0.85rem !important;
    font-weight: 600;
    border-radius: 50px !important;
    box-shadow: 0 4px 10px -4px rgba(0, 158, 48, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-nav-cta:hover {
    box-shadow: 0 6px 14px -4px rgba(0, 158, 48, 0.5) !important;
}

@media (max-width: 480px) {
    .btn-nav-cta {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
    }
}
@media (max-width: 350px) {
    .btn-nav-cta {
        display: none !important;
    }
}

/* Minimal phone button for Hero group */
.btn-phone-minimal {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-phone-minimal:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.1);
}

.cta-secondary-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Booking CTA Section at Page Bottom */
.booking-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 158, 48, 0.05) 0%, rgba(27, 36, 26, 0.03) 100%);
    border-top: 1px solid rgba(0, 158, 48, 0.1);
    border-bottom: 1px solid rgba(0, 158, 48, 0.1);
    text-align: center;
}
.booking-cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text);
}
.booking-cta-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.booking-cta-btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Sticky CTA Circle colors & animations */
.btn-booking {
    background: var(--primary) !important;
    box-shadow: 0 10px 25px rgba(0, 158, 48, 0.3) !important;
    animation: pulse-booking 2s infinite;
}
.btn-phone {
    background: #1B241A !important;
    box-shadow: 0 10px 25px rgba(27, 36, 26, 0.3) !important;
}

@keyframes pulse-booking {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 158, 48, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 158, 48, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 158, 48, 0);
    }
}

/* ==========================================================================
   ONLINE SHOP & SHOPPING CART STYLES
   ========================================================================== */

.shop-grid-section {
    padding: 120px 0 80px;
    background: #fdfdfd;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 158, 48, 0.08);
    border-color: rgba(0, 158, 48, 0.15);
}

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

.product-image-wrapper {
    background: radial-gradient(circle, rgba(0, 158, 48, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
}

.product-img {
    max-height: 180px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-tag.gelb { background: rgba(234, 179, 8, 0.1); color: #ca8a04; }
.product-tag.orange { background: rgba(249, 115, 22, 0.1); color: #ea580c; }
.product-tag.braun { background: rgba(120, 113, 108, 0.1); color: #78716c; }

.product-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 700;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
}

.btn-add-to-cart {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-add-to-cart:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 158, 48, 0.2);
}

.product-wa-link {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.product-wa-link:hover {
    opacity: 0.8;
}

.shipping-note {
    font-size: 0.85rem;
    color: var(--primary);
    text-align: center;
    margin: 6px 0 2px 0;
    font-weight: 500;
}

/* Cart Overlay Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    z-index: 2000;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.cart-overlay.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: var(--text);
    margin: 0;
    font-weight: 700;
}

.btn-close {
    background: none;
    border: none;
    font-size: 2.2rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
    transition: color 0.3s ease;
}

.btn-close:hover {
    color: var(--secondary);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 5px;
}

.empty-msg {
    color: var(--text-muted);
    text-align: center;
    margin-top: 50px;
    font-size: 0.95rem;
}

.item-row {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.item-img-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

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

.item-qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    background: var(--white);
}

.qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: background 0.2s;
}

.qty-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.qty-val {
    width: 30px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-remove {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0 5px;
    transition: opacity 0.3s;
}

.btn-remove:hover {
    opacity: 0.7;
}

.cart-footer {
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
}

.checkout-btn {
    width: 100%;
    padding: 14px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

/* Backdrop Blur Overlay */
.cart-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cart-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* Simulated Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 500px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 2100;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px;
}

.checkout-modal.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.checkout-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.checkout-modal-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 700;
}

.checkout-form-group {
    margin-bottom: 15px;
}

.checkout-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.checkout-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.checkout-input:focus {
    outline: none;
    border-color: var(--primary);
}

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

.checkout-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
}

.checkout-submit-btn:hover {
    background: var(--secondary);
}

.success-screen {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 158, 48, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-screen h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.success-screen p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Careers & Recruiting page styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 158, 48, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 40px 0;
}

.job-card {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 40px;
    align-items: start;
}

.job-header h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.job-tag {
    background: rgba(0, 158, 48, 0.08);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 158, 48, 0.15);
}

.job-details h4 {
    font-size: 1.15rem;
    margin: 24px 0 12px;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
}

.job-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.job-details ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.job-details ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .job-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

