/* Dark Theme with Pink/Purple Accents - Nexocards Style */
:root {
    /* Primary Colors - Pink/Purple like nexocards.nl */
    --primary-600: #ec4899;
    --primary-700: #db2777;
    --primary-500: #f472b6;
    --primary-400: #f9a8d4;
    --primary-300: #fbcfe8;
    --primary-200: #fce7f3;
    --primary-50: #fdf2f8;
    
    /* Accent Colors */
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --accent-yellow: #fbbf24;
    --accent-red: #ef4444;
    --accent-green: #10b981;
    
    /* Dark Neutrals */
    --gray-50: #18181b;
    --gray-100: #27272a;
    --gray-200: #3f3f46;
    --gray-300: #52525b;
    --gray-400: #71717a;
    --gray-500: #a1a1aa;
    --gray-600: #d4d4d8;
    --gray-700: #e4e4e7;
    --gray-800: #f4f4f5;
    --gray-900: #fafafa;
    
    /* Functional */
    --white: #ffffff;
    --black: #000000;
    --dark-bg: #09090b;
    --dark-card: #18181b;
    --dark-border: #27272a;

    /* Semantic tokens (so pages look good in both light & dark mode) */
    --page-bg: var(--dark-bg);
    --surface-1: var(--dark-card);
    --surface-2: #111114;
    --border-1: var(--gray-200);
    --text-1: var(--gray-900);
    --text-2: var(--gray-600);
    --text-3: var(--gray-500);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    
    /* Spacing */
    --container-width: 1280px;
    --section-padding: 120px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-1);
    background-color: var(--page-bg);
    overflow-x: hidden;
}

/* Light-mode is handled entirely via [data-theme="light"] in dark-mode.css
   No @media (prefers-color-scheme) here — the toggle overrides system prefs */

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--gray-900);
}

.logo-img {
    width: 40px;
    height: 40px;
}


.logo-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--gray-900);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--gray-600);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-600);
}

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



/* Nav right group (language + cart + CTA + hamburger) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}

.lang-mount {
    display: inline-flex;
    align-items: center;
}

.nav-cta {
    white-space: nowrap;
}
/* Language switcher (Google Translate redirect) */
.lang-switcher {
    display: flex;
    align-items: center;
}

.lang-select {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--text-primary);
    padding: 10px 12px;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

.lang-select:hover {
    border-color: var(--primary-600);
}

.lang-select:focus {
    border-color: var(--primary-600);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.18);
}

/* Cart Button in Nav */
.cart-btn {
    position: relative;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    border-color: var(--primary-600);
    background: rgba(236, 72, 153, 0.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-600);
    color: var(--white);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-purple) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
    background: var(--dark-card);
    color: var(--gray-900);
    border-color: var(--dark-border);
}

.btn-secondary:hover {
    background: var(--gray-100);
    border-color: var(--primary-600);
}

.btn-outline {
    background: transparent;
    border-color: var(--dark-border);
    color: var(--gray-700);
}

.btn-outline:hover {
    border-color: var(--primary-600);
    color: var(--primary-600);
    background: rgba(236, 72, 153, 0.1);
}

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

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 200px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
}

/* Decorative elements should never block clicks (fixes "Shop Collectie" not responding) */
.floating-cards,
.float-card {
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.hero-title .highlight {
    /* Requested: make "Nexocards" clearly visible in pink */
    background: none;
    color: var(--primary-600);
    -webkit-text-fill-color: var(--primary-600);
    text-shadow: 0 0 22px rgba(236, 72, 153, 0.35);
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.hero-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.btn-social-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #d8b4fe;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}
.btn-social-hero svg {
    width: 18px;
    height: 18px;
}
.btn-social-hero:hover {
    background: rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.5);
    color: #fff;
    transform: translateY(-1px);
}

/* Stats + photo row */
.hero-stats-row {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
}

.hero-stats-photo {
    width: 100%;
    max-width: 980px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

.hero-stats-photo img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: contain !important;
    display: block;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--dark-border);
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-600);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--gray-50);
}

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

/* Mobile: show 4 features in a 2x2 grid */
@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    .feature-card {
        padding: 18px 14px;
        border-radius: 18px;
    }
    .feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        margin-bottom: 14px;
    }
    .feature-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .feature-description {
        font-size: 13px;
        line-height: 1.45;
    }
}

.feature-card {
    background: var(--dark-card);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(236, 72, 153, 0.5);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-purple) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 24px;
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Continue with rest of CSS... due to length, creating in next part */
/* Products Section */
.products-preview {
    padding: var(--section-padding) 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(236, 72, 153, 0.2);
    color: var(--primary-600);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
}

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

.product-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(236, 72, 153, 0.5);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: var(--primary-600);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    z-index: 10;
}

.product-badge.sale {
    background: var(--accent-red);
}

.product-image {
    aspect-ratio: 1;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 24px;
}

.product-name {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-600);
    margin-bottom: 16px;
}

.product-btn {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--dark-card);
    color: var(--gray-300);
    padding: 80px 0 32px;
    border-top: 1px solid var(--dark-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 16px;
}

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

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--dark-border);
}

.social-link:hover {
    background: var(--primary-600);
    transform: translateY(-4px);
    border-color: var(--primary-600);
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-600);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--dark-border);
    font-size: 14px;
}

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

.footer-legal a:hover {
    color: var(--primary-600);
}

/* CTA Section */
.cta {
    /* Add breathing room between the photo section and this CTA */
    margin-top: 80px;
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-purple) 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cta { margin-top: 44px; }
}

@media (max-width: 768px) {
    .cta {
        margin-top: 28px;
    }
}

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

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}

.cta-description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

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

.btn-white {
    background: var(--white);
    color: var(--primary-600);
}

.btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Responsive Design */

/* Cart button (nav) */
.cart-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.16);
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-purple) 100%);
    color: var(--white);
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px rgba(236,72,153,0.18);
}

.cart-toggle:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 14px 30px rgba(236,72,153,0.26);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--primary-500);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* On mobile, keep only the main navbar row sticky.
       The language row is rendered *outside* the navbar so it can scroll away. */
    .navbar {
        position: sticky;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Mobile navbar layout (2 rows)
       Row 1: logo + cart + menu
       Row 2: language dropdown (translate.js moves #langMount here)
    */
    .nav-content {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .logo {
        flex: 1 1 auto;
        min-width: 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--dark-border);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--dark-border);
    }
    
    .nav-actions {
        display: none;
    }

    .nav-right {
        gap: 10px;
        order: 2;
        flex: 0 0 auto;
    }

    .nav-cta {
        display: none;
    }

    /* Never clip the brand name on mobile */
    .logo-text {
        max-width: none;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
    }

    /* Scrollable language row under the navbar (created by translate.js) */
    #langRow.lang-row {
        background: rgba(9, 9, 11, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--dark-border);
        padding: 10px 0 14px;
    }

    #langRow .lang-row-inner {
        display: flex;
        justify-content: flex-start;
    }

    body.lang-under-logo #langMount.lang-mount {
        justify-content: flex-start;
        margin-top: 0;
    }

    body.lang-under-logo #langMount .lang-select {
        width: 210px;
        max-width: 100%;
    }

    .hero {
        padding: 110px 0 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 18px;
    }

    .hero-stats-row {
        flex-direction: column;
        gap: 18px;
    }

    .hero-stats-photo {
        width: 100%;
        max-width: 100%;
    }
    
    /* Keep the 3 stats next to each other (3 columns) on mobile */
    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        padding-top: 20px;
    }

    .stat-number { font-size: 26px; }
    .stat-label  { font-size: 12px; }

    /* Home: show 4 feature cards as a 2x2 grid on mobile */
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .feature-card { padding: 20px 16px; }
    .feature-icon { width: 48px; height: 48px; margin-bottom: 14px; }
    .feature-title { font-size: 16px; margin-bottom: 8px; }
    .feature-description { font-size: 13px; line-height: 1.45; }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    body:not(.page-winkel) .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 18px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Floating Cart Button (visible on every page) */
.cart-fab {
    position: fixed;
    left: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid var(--dark-border);
    background: rgba(0, 0, 0, 0.65);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9997;
    backdrop-filter: blur(10px);
}

.cart-fab:hover {
    border-color: rgba(236, 72, 153, 0.5);
}

.cart-fab svg {
    width: 22px;
    height: 22px;
}

.cart-fab .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--primary-600);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, 0.65);
}


/* ================================
   Mobile Shop Grid + Floating Cart
   (Added patch)
   ================================ */

@media (max-width: 900px) {
  body.page-winkel .products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  body.page-winkel .product-card {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  /* Compact card layout on mobile so 2 rows fit on screen */
  body.page-winkel .product-image {
    height: 80px !important;
    aspect-ratio: auto !important;
    min-height: 80px !important;
    max-height: 80px !important;
  }

  body.page-winkel .product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  body.page-winkel .product-info {
    padding: 8px !important;
  }

  body.page-winkel .product-name {
    font-size: 11px !important;
    line-height: 1.15 !important;
    margin-bottom: 4px !important;
  }

  body.page-winkel .product-meta {
    font-size: 9px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.page-winkel .product-price {
    font-size: 13px !important;
  }

  body.page-winkel .product-btn {
    padding: 6px 8px !important;
    font-size: 10px !important;
  }

  body.page-winkel .product-badge {
    font-size: 8px !important;
    padding: 3px 6px !important;
  }
}

/* Floating cart button (visible on every page) */
.cart-fab {
  position: fixed;
  left: 16px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-600) 0%, #8b5cf6 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 10050;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.14);
}

.cart-fab:active {
  transform: scale(0.98);
}

.cart-fab .cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ff3b9a;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid rgba(10,10,12,0.9);
}

/* Keep action buttons from overlapping each other */
@media (max-width: 900px) {
  .cart-fab { bottom: 18px; left: 14px; }
}

/* ===================================
   Google Translate Banner Hiding
   =================================== */
/* Force hide Google Translate banner - multiple selectors for maximum coverage */
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
iframe.skiptranslate,
.goog-te-banner,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
  pointer-events: none !important;
}

/* Ensure body positioning is not affected by Google Translate */
body.translated-ltr,
body.translated-rtl,
body {
  top: 0 !important;
  position: static !important;
}

/* Hide Google Translate branding in widget */
.goog-logo-link,
.goog-te-gadget span,
.goog-te-gadget-icon,
.goog-te-gadget img,
div#goog-gt- {
  display: none !important;
}

/* ===================================
   Language Dropdown - Mobile Visibility
   =================================== */
@media (max-width: 900px) {
  .gt-wrap {
    display: flex !important;
    order: -1; /* Place before cart button on mobile */
    margin-right: 8px;
  }
  
  .gt-select {
    min-width: 100px !important;
    font-size: 13px !important;
    padding: 8px 10px !important;
    padding-right: 26px !important;
  }
  
  /* Make nav-actions flex to accommodate dropdown */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}


@media (max-width: 420px) {
    .container {
        padding: 0 16px;
    }

    .logo-img {
        width: 34px;
        height: 34px;
    }

    .logo-text {
        max-width: 90px;
        font-size: 20px;
    }

    .mobile-menu-btn {
        padding: 6px;
    }
}

/* --- Home: About section spacing tweaks (prevents button sticking to image) --- */
.about .btn,
.about .about-text .btn {
  margin-bottom: 16px;
}
.about .about-image {
  margin-top: 14px;
}

/* Make sure the CTA icons in buttons align nicely */
.btn svg {
  vertical-align: middle;
  margin-right: 10px;
}


/* Store image under home stats */
.store-image-section {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.store-image {
    width: 100%;
    max-width: 900px;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(255, 0, 150, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(255, 0, 150, 0.35);
}

@media (max-width: 768px) {
    .store-image {
        max-width: 95%;
    }
}


/* GLOBAL IMAGE SAFETY: never crop images site-wide */
img {
  max-width: 100%;
  height: auto;
  object-fit: contain !important;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-1);
    border: 2px solid var(--border-1);
    color: var(--text-1);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 12px;
}

.theme-toggle-btn:hover {
    background: var(--gray-100);
    border-color: var(--primary-600);
    transform: scale(1.05);
}

.theme-toggle-btn .theme-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Light Mode Overrides */
/* Light mode component overrides are in dark-mode.css (single source of truth) */

/* Responsive */
@media (max-width: 768px) {
    .theme-toggle-btn {
        width: 36px;
        height: 36px;
        margin-right: 8px;
    }
}

/* Mobile: banner scrollt mee omhoog */
@media (max-width: 768px) {
    #launchBanner {
        position: relative !important;
        top: auto !important;
    }
    body:has(#launchBanner) .navbar {
        top: 0 !important;
    }
    body:has(#launchBanner) {
        padding-top: 0 !important;
    }
}
