/* ========================================
   ALBERTI ROLEPLAY STORE
   ======================================== */

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

:root {
    --bg-light: #e6effa;
    --bg-white: #ffffff;
    --bg-subtle: #f0f5fb;
    --primary: #ff5757;
    --primary-dark: #e84545;
    --primary-soft: #ffe8e8;
    --primary-glow: rgba(255, 87, 87, 0.25);
    --green: #4dd97c;
    --green-dark: #3ec569;
    --green-soft: #e3fbe9;
    --blue: #4ab8e0;
    --blue-dark: #2fa0c9;
    --blue-soft: #e3f4fb;
    --yellow: #ffd84a;
    --yellow-soft: #fff5d1;
    --purple: #b884ff;
    --purple-soft: #f0e6ff;
    --text-dark: #1a2e44;
    --text-mid: #5a6b7e;
    --text-light: #8a99ac;
    --border: #e5ecf3;
    --border-light: #eef3f8;
    --shadow-sm: 0 2px 8px rgba(26, 46, 68, 0.05);
    --shadow: 0 4px 20px rgba(26, 46, 68, 0.08);
    --shadow-lg: 0 10px 40px rgba(26, 46, 68, 0.1);
    --radius: 14px;
    --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background:
        radial-gradient(ellipse at top left, #d8e7f7 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, #e8e3f5 0%, transparent 50%),
        var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Nunito', sans-serif;
    letter-spacing: -0.02em;
}


/* Confetti vormpjes (cirkels, vierkanten, driehoeken) */
.confetti {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.confetti span {
    position: absolute;
    display: block;
    will-change: transform;
    animation: confetti-rise var(--duration, 18s) linear infinite;
    animation-delay: var(--delay, 0s);
}

.confetti .dot { border-radius: 50%; }
.confetti .square { border-radius: 1px; }
.confetti .triangle {
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

@keyframes confetti-rise {
    0% {
        transform: translate(0, 0) rotate(var(--rot, 0deg));
        opacity: 0;
    }
    10% {
        opacity: var(--max-opacity, 0.35);
    }
    90% {
        opacity: var(--max-opacity, 0.35);
    }
    100% {
        transform: translate(var(--drift, 20px), -110vh) rotate(calc(var(--rot, 0deg) + 360deg));
        opacity: 0;
    }
}

/* Top regenboog rand - opnieuw als pseudo via html element */
html::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--green) 33%, var(--blue) 66%, var(--yellow) 100%);
    z-index: 9999;
    pointer-events: none;
}


a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ======== NAVIGATIE ======== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-logo:hover {
    transform: scale(1.05) rotate(-3deg);
}

.nav-logo .logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(255, 87, 87, 0.25));
    transition: filter 0.3s;
}

.nav-logo:hover .logo-img {
    filter: drop-shadow(0 6px 14px rgba(255, 87, 87, 0.4));
}

/* Tekst naast logo verbergen — logo zegt het zelf al */
.nav-logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 0.3rem;
}

.nav-menu a {
    padding: 0.7rem 1.3rem;
    color: var(--text-mid);
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    letter-spacing: 0.04em;
    position: relative;
}

.nav-menu a i {
    font-size: 0.95rem;
    color: var(--text-light);
    transition: color 0.2s, transform 0.2s;
}

.nav-discord-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: transform 0.2s;
}

.nav-menu a:hover .nav-discord-icon {
    transform: translateY(-2px) scale(1.1);
}

.nav-menu a.active .nav-discord-icon {
    animation: nav-icon-bounce 2.4s ease-in-out infinite;
}

.nav-menu a:hover {
    color: var(--primary);
    background: var(--primary-soft);
}

.nav-menu a:hover i { color: var(--primary); }

.nav-menu a.active {
    color: var(--primary);
    background: var(--primary-soft);
    animation: nav-active-pulse 2.4s ease-in-out infinite;
}

.nav-menu a.active i {
    color: var(--primary);
    animation: nav-icon-bounce 2.4s ease-in-out infinite;
}

@keyframes nav-active-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 87, 0.35);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(255, 87, 87, 0);
    }
}

@keyframes nav-icon-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-2px) scale(1.1); }
}

.nav-actions {
    display: flex;
    gap: 0.7rem;
    align-items: center;
}

.btn-login {
    padding: 0.7rem 1.3rem;
    background: linear-gradient(180deg, #ffffff 0%, #f5fff8 100%);
    border: 2px solid var(--green);
    color: var(--green-dark);
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    transition: transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.2s, background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.85rem;
    box-shadow:
        0 3px 0 var(--green),
        0 5px 12px rgba(77, 217, 124, 0.2);
}

.btn-login:hover {
    background: var(--green);
    color: white;
    transform: translateY(-2px);
    box-shadow:
        0 5px 0 var(--green-dark),
        0 10px 20px rgba(77, 217, 124, 0.4);
}

.btn-login:active {
    transform: translateY(2px);
    box-shadow:
        0 1px 0 var(--green),
        0 2px 6px rgba(77, 217, 124, 0.2);
}

.btn-cart {
    position: relative;
    padding: 0.7rem 1.1rem;
    background: linear-gradient(180deg, white 0%, #f7fafc 100%);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    transition: transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.2s, border-color 0.2s, color 0.2s;
    box-shadow:
        0 3px 0 #d8dee5,
        0 5px 12px rgba(26, 46, 68, 0.08);
}

.btn-cart:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow:
        0 5px 0 var(--primary-dark),
        0 10px 20px rgba(255, 87, 87, 0.2);
}

.btn-cart:active {
    transform: translateY(2px);
    box-shadow:
        0 1px 0 #d8dee5,
        0 2px 6px rgba(26, 46, 68, 0.08);
}

.cart-count {
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ======== MAIN WRAPPER ======== */
main, .main-wrapper {
    position: relative;
    z-index: 1;
}

/* ======== HERO ======== */
.hero {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text { display: flex; flex-direction: column; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: var(--green-soft);
    color: var(--green-dark);
    border: 2px solid var(--green);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    width: fit-content;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero h1 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    letter-spacing: -0.025em;
}

.hero h1 .name-blue { color: var(--blue-dark); }
.hero h1 .name-green { color: var(--green-dark); }

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 0.95rem 1.8rem;
    background: linear-gradient(180deg, #ff6b6b 0%, var(--primary) 100%);
    color: white;
    border-radius: 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow:
        0 5px 0 var(--primary-dark),
        0 8px 18px rgba(255, 87, 87, 0.35);
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 0 var(--primary-dark),
        0 14px 28px rgba(255, 87, 87, 0.45);
}

.btn-primary:active {
    transform: translateY(2px);
    box-shadow:
        0 2px 0 var(--primary-dark),
        0 4px 10px rgba(255, 87, 87, 0.3);
}

.btn-outline {
    padding: 0.95rem 1.8rem;
    background: linear-gradient(180deg, #f0f9fd 0%, var(--blue-soft) 100%);
    color: var(--blue-dark);
    border: 2px solid #b8e2ef;
    border-radius: 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow:
        0 5px 0 #b8e2ef,
        0 8px 18px rgba(74, 184, 224, 0.2);
    position: relative;
    z-index: 2;
}

.btn-outline:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 0 var(--blue),
        0 14px 28px rgba(74, 184, 224, 0.3);
}

.btn-outline:active {
    transform: translateY(2px);
    box-shadow:
        0 2px 0 #b8e2ef,
        0 4px 10px rgba(74, 184, 224, 0.2);
}

.btn-outline i {
    width: 22px;
    height: 22px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.server-ip {
    background: white;
    border: 1px solid var(--border);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    width: fit-content;
    box-shadow: var(--shadow-sm);
}

.server-ip .ip-label {
    background: var(--primary-soft);
    color: var(--primary);
    padding: 0.3rem 0.7rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.server-ip .ip-value {
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Inter', monospace;
}

.server-ip .copy-btn {
    color: var(--text-light);
    transition: color 0.2s;
}

.server-ip .copy-btn:hover { color: var(--primary); }

.hero-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255, 87, 87, 0.25));
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-15px) rotate(-2deg); }
}

/* ======== STATS ======== */
.stats-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.3s;
    box-shadow:
        0 1px 2px rgba(26, 46, 68, 0.04),
        0 6px 14px rgba(26, 46, 68, 0.06),
        inset 0 -3px 0 rgba(26, 46, 68, 0.05);
    position: relative;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 30%);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 4px 8px rgba(26, 46, 68, 0.06),
        0 14px 28px rgba(26, 46, 68, 0.1),
        inset 0 -3px 0 rgba(26, 46, 68, 0.05);
}

.stat-icon {
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.06);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.stat-icon.red { background: var(--primary-soft); color: var(--primary); }
.stat-icon.blue { background: var(--blue-soft); color: var(--blue-dark); }
.stat-icon.green { background: var(--green-soft); color: var(--green-dark); }
.stat-icon.yellow { background: var(--yellow-soft); color: #d4a017; }

.stat-content { display: flex; flex-direction: column; line-height: 1.2; }

.stat-value {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ======== SECTION HEADER ======== */
.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: var(--blue-soft);
    color: var(--blue-dark);
    border: 2px solid var(--blue);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    letter-spacing: 0.05em;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    letter-spacing: -0.025em;
}

.section-header p {
    color: var(--text-mid);
    font-size: 1rem;
}

section.content-section {
    padding: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ======== HOW IT WORKS ======== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.step-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.35s;
    box-shadow:
        0 1px 2px rgba(26, 46, 68, 0.04),
        0 8px 18px rgba(26, 46, 68, 0.07),
        0 16px 32px rgba(26, 46, 68, 0.06),
        inset 0 -4px 0 rgba(26, 46, 68, 0.05);
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, transparent 35%);
    pointer-events: none;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow:
        0 4px 8px rgba(26, 46, 68, 0.08),
        0 16px 32px rgba(26, 46, 68, 0.12),
        0 32px 56px rgba(26, 46, 68, 0.1),
        inset 0 -4px 0 rgba(26, 46, 68, 0.05);
}

.step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
    border: 3px solid white;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow:
        inset 0 -3px 0 rgba(0, 0, 0, 0.08),
        0 6px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.step-card:hover .step-icon {
    transform: translateY(-3px) rotate(-5deg);
}

.step-num {
    box-shadow:
        0 3px 0 var(--primary-dark),
        0 6px 14px var(--primary-glow);
}

.step-icon.blue { background: var(--blue-soft); color: var(--blue-dark); }
.step-icon.green { background: var(--green-soft); color: var(--green-dark); }
.step-icon.red { background: var(--primary-soft); color: var(--primary); }

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-weight: 800;
}

.step-card p {
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-card p strong { color: var(--text-dark); font-weight: 700; }

/* ======== INFO ROW (Discord/Hulp/Belangrijk) ======== */
.info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.info-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.3s;
    box-shadow:
        0 1px 2px rgba(26, 46, 68, 0.04),
        0 8px 18px rgba(26, 46, 68, 0.07),
        0 16px 32px rgba(26, 46, 68, 0.06),
        inset 0 -4px 0 rgba(26, 46, 68, 0.05);
    position: relative;
}

.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 35%);
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 4px 8px rgba(26, 46, 68, 0.08),
        0 16px 32px rgba(26, 46, 68, 0.12),
        0 32px 56px rgba(26, 46, 68, 0.1),
        inset 0 -4px 0 rgba(26, 46, 68, 0.05);
}

.info-icon {
    box-shadow:
        inset 0 -2px 0 rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.06);
}

.info-card.highlight {
    border-color: rgba(255, 87, 87, 0.3);
    background: linear-gradient(180deg, white 0%, var(--primary-soft) 100%);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-icon.discord { background: #e8eaff; color: #5865F2; }
.info-icon.help { background: var(--yellow-soft); color: #d4a017; }
.info-icon.warn { background: var(--primary-soft); color: var(--primary); }

.info-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-mid);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.info-card ul li {
    color: var(--text-mid);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.info-card ul li::before {
    content: '✓';
    color: var(--green-dark);
    font-weight: 900;
    flex-shrink: 0;
}

.btn-info {
    padding: 0.75rem 1.3rem;
    background: linear-gradient(180deg, white 0%, #f7fafc 100%);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    color: var(--text-dark);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.2s, color 0.2s, border-color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow:
        0 3px 0 #d8dee5,
        0 5px 12px rgba(26, 46, 68, 0.08);
}

.btn-info:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow:
        0 5px 0 var(--primary-dark),
        0 10px 20px rgba(255, 87, 87, 0.2);
}

.btn-info:active {
    transform: translateY(2px);
    box-shadow:
        0 1px 0 #d8dee5,
        0 2px 6px rgba(26, 46, 68, 0.1);
}

/* ======== CTA BANNER ======== */
.cta-banner {
    background: linear-gradient(135deg, var(--green-soft) 0%, var(--yellow-soft) 50%, var(--primary-soft) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-banner h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.cta-banner p {
    color: var(--text-mid);
    font-size: 0.95rem;
}

/* ======== STORE LAYOUT ======== */
.store-layout {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.sidebar {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    padding-left: 0.6rem;
    border-left: 3px solid var(--primary);
}

.sidebar-list { display: flex; flex-direction: column; gap: 0.3rem; }

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    color: var(--text-mid);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    cursor: pointer;
}

.sidebar-item i {
    width: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.sidebar-item:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.sidebar-item.active {
    background: var(--primary-soft);
    color: var(--primary);
    border: 1px solid rgba(255, 87, 87, 0.2);
}

.sidebar-item.active i { color: var(--primary); }

.store-main { display: flex; flex-direction: column; gap: 1.5rem; }

.store-banner {
    background: linear-gradient(135deg, var(--blue-soft) 0%, var(--green-soft) 50%, var(--primary-soft) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.store-banner img {
    width: 130px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 10px 25px rgba(255, 87, 87, 0.25));
}

.store-banner h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
}

.store-banner h2 span {
    background: linear-gradient(90deg, var(--primary) 0%, var(--blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.store-banner p {
    color: var(--text-mid);
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.store-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.5rem 0;
}

.toolbar-title {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.toolbar-title h2 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-dark);
}

.toolbar-title .pill {
    padding: 0.3rem 0.8rem;
    background: var(--blue-soft);
    color: var(--blue-dark);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.search-bar {
    position: relative;
    width: 300px;
    max-width: 100%;
}

.search-bar input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.6rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

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

.search-bar i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

/* Category info banner (Staff Ranks intro etc.) */
.category-info {
    background: white;
    border: 1.5px solid #c4e3ee;
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.8rem;
    box-shadow:
        0 1px 2px rgba(26, 46, 68, 0.04),
        0 6px 14px rgba(26, 46, 68, 0.06),
        inset 0 -3px 0 rgba(26, 46, 68, 0.04);
    margin-bottom: 0.5rem;
}

.category-info-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.category-info-header .ci-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--blue-soft);
    color: var(--blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow:
        inset 0 -2px 0 rgba(0, 0, 0, 0.06),
        0 3px 8px rgba(0, 0, 0, 0.04);
}

.category-info-header h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
}

.category-info > p {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.category-info-row {
    border-top: 1px solid var(--border-light);
    padding-top: 0.9rem;
    margin-top: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.category-info-row .ci-row-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.category-info-row .ci-row-icon.discord { background: #e8eaff; color: #5865F2; }
.category-info-row .ci-row-icon.upgrade { background: var(--green-soft); color: var(--green-dark); }

.category-info-row p {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.5;
    flex: 1;
}

.category-info-row p strong {
    color: var(--text-dark);
    font-weight: 800;
    display: block;
    margin-bottom: 0.1rem;
    font-family: 'Nunito', sans-serif;
}

.category-info-row p strong.green {
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.category-info-row a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
}

/* ======== PRODUCT CARDS ======== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.2rem;
}

.product-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.35s ease, border-color 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 1px 2px rgba(26, 46, 68, 0.04),
        0 6px 14px rgba(26, 46, 68, 0.06),
        0 14px 28px rgba(26, 46, 68, 0.05),
        inset 0 -3px 0 rgba(26, 46, 68, 0.04);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 30%);
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow:
        0 4px 8px rgba(26, 46, 68, 0.06),
        0 14px 28px rgba(26, 46, 68, 0.1),
        0 28px 50px rgba(26, 46, 68, 0.12),
        inset 0 -3px 0 rgba(26, 46, 68, 0.04);
    border-color: rgba(255, 87, 87, 0.3);
}

.product-card.featured {
    background: linear-gradient(180deg, white 0%, var(--yellow-soft) 100%);
    border-color: var(--yellow);
    box-shadow:
        0 1px 2px rgba(212, 160, 23, 0.1),
        0 6px 14px rgba(212, 160, 23, 0.12),
        0 14px 28px rgba(212, 160, 23, 0.1),
        inset 0 -3px 0 rgba(212, 160, 23, 0.15);
}

.product-card.featured:hover {
    box-shadow:
        0 4px 8px rgba(212, 160, 23, 0.15),
        0 14px 28px rgba(212, 160, 23, 0.18),
        0 28px 50px rgba(212, 160, 23, 0.15),
        inset 0 -3px 0 rgba(212, 160, 23, 0.15);
}

.product-card.featured .btn-buy {
    background: var(--yellow);
    color: #8a6510;
    box-shadow:
        0 4px 0 #d4a017,
        0 6px 14px rgba(212, 160, 23, 0.3);
}

.product-card.featured .btn-buy:hover {
    background: #ffd024;
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 #d4a017,
        0 10px 20px rgba(212, 160, 23, 0.4);
}

.product-card.featured h3 { color: var(--primary); }

.product-discount {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    background: linear-gradient(180deg, #ff6b6b 0%, var(--primary) 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    font-weight: 900;
    z-index: 3;
    box-shadow:
        0 3px 0 var(--primary-dark),
        0 6px 12px rgba(255, 87, 87, 0.35);
    transform-origin: center;
    animation: discount-wiggle 2.5s ease-in-out infinite;
}

@keyframes discount-wiggle {
    0%, 100% { transform: rotate(-3deg) scale(1); }
    25% { transform: rotate(3deg) scale(1.05); }
    50% { transform: rotate(-3deg) scale(1); }
    75% { transform: rotate(3deg) scale(1.05); }
}

.product-card:hover .product-discount {
    animation: discount-bounce 0.6s ease-in-out infinite;
}

@keyframes discount-bounce {
    0%, 100% { transform: rotate(-5deg) scale(1.1); }
    50% { transform: rotate(5deg) scale(1.15); }
}

/* Light sweep voor featured cards */
.product-card.featured {
    overflow: hidden;
    position: relative;
}

.product-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent 0%,
        transparent 30%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 70%,
        transparent 100%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 2;
    animation: light-sweep 3s ease-in-out infinite;
}

@keyframes light-sweep {
    0% { left: -150%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

/* Featured glow pulse — alleen subtiele inset glow zodat het niet uit de card lekt */
.product-card.featured {
    animation: featured-glow 2.8s ease-in-out infinite;
}

@keyframes featured-glow {
    0%, 100% {
        box-shadow:
            0 1px 2px rgba(212, 160, 23, 0.1),
            0 6px 14px rgba(212, 160, 23, 0.12),
            0 14px 28px rgba(212, 160, 23, 0.1),
            inset 0 -3px 0 rgba(212, 160, 23, 0.15);
    }
    50% {
        box-shadow:
            0 1px 2px rgba(212, 160, 23, 0.12),
            0 6px 14px rgba(212, 160, 23, 0.18),
            0 14px 28px rgba(212, 160, 23, 0.14),
            inset 0 -3px 0 rgba(212, 160, 23, 0.2),
            inset 0 0 24px rgba(255, 216, 74, 0.25);
    }
}

.product-image {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: var(--bg-subtle);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.product-info {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.product-info p {
    color: var(--text-mid);
    font-size: 0.88rem;
    margin-bottom: 1rem;
    flex: 1;
    line-height: 1.5;
}

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

.price-old {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-new {
    color: var(--green-dark);
    font-size: 1.4rem;
    font-weight: 900;
}

.btn-buy {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(180deg, #ff6b6b 0%, var(--primary) 100%);
    color: white;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.2s, background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow:
        0 4px 0 var(--primary-dark),
        0 6px 14px rgba(255, 87, 87, 0.3);
    position: relative;
    z-index: 2;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 var(--primary-dark),
        0 10px 20px rgba(255, 87, 87, 0.4);
}

.btn-buy:active {
    transform: translateY(2px);
    box-shadow:
        0 2px 0 var(--primary-dark),
        0 3px 8px rgba(255, 87, 87, 0.3);
}

.btn-buy:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: 0 3px 0 #6a7a8c;
}

.btn-buy:disabled:hover {
    transform: none;
}

/* ======== FOOTER ======== */
.footer {
    background: white;
    border-top: 1px solid var(--border);
    margin-top: 4rem;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand img { height: 50px; }

.footer-brand-text {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.footer-brand-text strong { color: var(--text-dark); display: block; }

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-mid);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

/* ======== REGELS ======== */
.rules-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.rules-banner {
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--green-soft) 50%, var(--yellow-soft) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.rules-banner img {
    width: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 8px 20px rgba(255, 87, 87, 0.25));
}

.rules-banner h1 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.rules-banner p {
    color: var(--text-mid);
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.rules-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.rules-sidebar {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
    box-shadow:
        0 1px 2px rgba(26, 46, 68, 0.04),
        0 6px 14px rgba(26, 46, 68, 0.06),
        inset 0 -3px 0 rgba(26, 46, 68, 0.04);
}

.rules-sidebar-title {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    padding-left: 0.7rem;
    border-left: 4px solid;
    border-image: linear-gradient(180deg, var(--primary), var(--green)) 1;
}

.rules-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.rules-tab {
    padding: 0.85rem 1rem;
    background: transparent;
    border: 1.5px solid transparent;
    border-radius: 12px;
    color: var(--text-mid);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.2s;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

.rules-tab i {
    width: 22px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.rules-tab:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.rules-tab.active {
    background: var(--primary-soft);
    border-color: rgba(255, 87, 87, 0.4);
    color: var(--primary);
}

.rules-tab.active i { color: var(--primary); }

@media (max-width: 1024px) {
    .rules-layout { grid-template-columns: 1fr; }
    .rules-sidebar { position: static; }
    .rules-tabs { flex-direction: row; flex-wrap: wrap; }
    .rules-tab { width: auto; }
}

.rule-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.rule-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.rule-card h3 i { color: var(--primary); }

.strafbepaling-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.straf-badge {
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid transparent;
}

.straf-badge.cat-1, .straf-badge.cat-2 { background: var(--yellow-soft); color: #a37810; border-color: var(--yellow); }
.straf-badge.cat-3, .straf-badge.cat-4 { background: #ffe5d4; color: #c46415; border-color: #ffb273; }
.straf-badge.cat-5, .straf-badge.cat-6 { background: var(--primary-soft); color: var(--primary-dark); border-color: var(--primary); }
.straf-badge.cat-7 { background: var(--purple-soft); color: #7a3fd1; border-color: var(--purple); }
.straf-badge.cat-8 { background: #e8d4ff; color: #5b21a8; border-color: #9d6dff; }
.straf-badge.cat-9 { background: #1a1a1a; color: white; border-color: #1a1a1a; }

.straf-row {
    background: var(--yellow-soft);
    border: 1.5px solid var(--yellow);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.straf-row .straf-pill {
    padding: 0.45rem 0.85rem;
    background: var(--yellow-soft);
    border: 1.5px solid var(--yellow);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #8a6510;
    font-family: 'Nunito', sans-serif;
}

.straf-row .straf-pill.cat-3, .straf-row .straf-pill.cat-4 { background: #ffe5d4; color: #c46415; border-color: #ffb273; }
.straf-row .straf-pill.cat-5, .straf-row .straf-pill.cat-6 { background: var(--primary-soft); color: var(--primary-dark); border-color: var(--primary); }
.straf-row .straf-pill.cat-7 { background: var(--purple-soft); color: #7a3fd1; border-color: var(--purple); }
.straf-row .straf-pill.cat-8 { background: #e8d4ff; color: #5b21a8; border-color: #9d6dff; }
.straf-row .straf-pill.cat-9 { background: #1a1a1a; color: white; border-color: #1a1a1a; }

.rule-accordion-body ul li { margin-bottom: 0.35rem; }
.rule-accordion-body p strong { color: var(--text-dark); font-weight: 700; }
.rule-accordion-body h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0.8rem 0 0.4rem;
}

.rule-card p { color: var(--text-mid); font-size: 0.92rem; margin-bottom: 0.5rem; }

.rule-card p strong { color: var(--text-dark); }

.rule-accordion {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.8rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.rule-accordion summary {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    list-style: none;
    transition: background 0.2s;
}

.rule-accordion summary::-webkit-details-marker { display: none; }

.rule-accordion summary:hover { background: var(--bg-subtle); }

.art-tag {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.7rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
}

.rule-accordion summary .chevron {
    margin-left: auto;
    color: var(--text-light);
    transition: transform 0.2s;
}

.rule-accordion[open] summary .chevron { transform: rotate(180deg); }

.rule-accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.7;
}

.rule-accordion-body ul {
    list-style: disc;
    padding-left: 1.3rem;
    margin-top: 0.5rem;
}

.rule-accordion-body ul li { margin-bottom: 0.3rem; }

/* ======== CART PAGE ======== */
.cart-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.cart-page h1 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cart-page h1 i { color: var(--primary); }

.cart-empty {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.cart-empty i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cart-empty h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.cart-empty p {
    color: var(--text-mid);
    margin-bottom: 2rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.cart-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.cart-item-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.cart-item-info { flex: 1; }
.cart-item-info h3 { color: var(--text-dark); margin-bottom: 0.2rem; font-size: 1.05rem; }
.cart-item-info p { color: var(--text-mid); font-size: 0.85rem; }
.cart-item-price { font-size: 1.2rem; font-weight: 800; color: var(--green-dark); }

.cart-item-remove {
    padding: 0.6rem 0.9rem;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.2s;
}

.cart-item-remove:hover {
    background: var(--primary);
    color: white;
}

.cart-summary {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.cart-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.7rem;
    color: var(--text-mid);
    font-size: 0.95rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 900;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
    color: var(--text-dark);
}

.summary-total span:last-child { color: var(--green-dark); }

.btn-checkout {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-checkout:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

/* ======== PAGE ENTRANCE ANIMATIES ======== */

/* Initiële staat: onzichtbaar + iets verschoven */
[data-anim] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-anim="fade-up"] { transform: translateY(30px); }
[data-anim="fade-down"] { transform: translateY(-30px); }
[data-anim="fade-left"] { transform: translateX(40px); }
[data-anim="fade-right"] { transform: translateX(-40px); }
[data-anim="zoom-in"] { transform: scale(0.85); }
[data-anim="bounce-in"] {
    transform: scale(0.7);
    transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Zichtbaar */
[data-anim].is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Stagger delays — voor lijsten van cards/knoppen */
[data-stagger="1"] { transition-delay: 0.05s; }
[data-stagger="2"] { transition-delay: 0.12s; }
[data-stagger="3"] { transition-delay: 0.19s; }
[data-stagger="4"] { transition-delay: 0.26s; }
[data-stagger="5"] { transition-delay: 0.33s; }
[data-stagger="6"] { transition-delay: 0.40s; }
[data-stagger="7"] { transition-delay: 0.47s; }
[data-stagger="8"] { transition-delay: 0.54s; }

/* Hero logo: smooth float-in + dan blijft bestaande float-animatie doorgaan */
.hero-logo {
    animation: hero-logo-in 1.2s cubic-bezier(0.34, 1.4, 0.64, 1) 0.3s both,
               float 5s ease-in-out 1.5s infinite;
}

@keyframes hero-logo-in {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.7) rotate(-8deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0);
    }
}

/* Navbar fade in van boven */
.navbar {
    animation: navbar-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes navbar-in {
    0% { opacity: 0; transform: translateY(-100%); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Reduced motion respecteren */
@media (prefers-reduced-motion: reduce) {
    [data-anim] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .hero-logo {
        animation: float 5s ease-in-out infinite !important;
    }
    .navbar {
        animation: none !important;
    }
}

/* ======== CART DRAWER ======== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 46, 68, 0.45);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 9998;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: white;
    box-shadow: -10px 0 40px rgba(26, 46, 68, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 1.5rem 1.8rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    letter-spacing: -0.02em;
}

.cart-drawer-header h2 i {
    color: var(--primary);
}

.cart-drawer-close {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    color: var(--text-mid);
    font-size: 1rem;
    background: transparent;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-drawer-close:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 1.8rem;
}

.cart-drawer-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--text-mid);
}

.cart-drawer-empty .empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.cart-drawer-empty p {
    font-size: 1rem;
    color: var(--text-mid);
    font-weight: 600;
}

.cart-drawer-item {
    background: var(--bg-light);
    border-radius: 14px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    transition: background 0.2s;
}

.cart-drawer-item:hover {
    background: var(--bg-subtle);
}

.cart-drawer-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: white;
}

.cart-drawer-item-info {
    flex: 1;
    min-width: 0;
}

.cart-drawer-item-info h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}

.cart-drawer-item-info .qty {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.cart-drawer-item-info .price {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--green-dark);
}

.cart-drawer-item-remove {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.cart-drawer-item-remove:hover {
    background: var(--primary);
    color: white;
}

.cart-drawer-footer {
    border-top: 1px solid var(--border);
    padding: 1.5rem 1.8rem;
    background: var(--bg-subtle);
}

.cart-drawer-summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    color: var(--text-mid);
    font-size: 0.9rem;
    font-weight: 600;
}

.cart-drawer-total {
    display: flex;
    justify-content: space-between;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
    margin-bottom: 1.2rem;
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-dark);
}

.cart-drawer-total span:last-child {
    color: var(--green-dark);
}

/* ===========================================================
   PRODUCT LOADING / EMPTY / ERROR STATES
   =========================================================== */

.products-loading,
.products-empty,
.products-error,
.cart-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 3rem 1.5rem;
    background: var(--card-bg, #fff);
    border: 1px dashed var(--border);
    border-radius: 16px;
    color: var(--text-mid);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    text-align: center;
    min-height: 180px;
}

.products-loading i,
.cart-loading i {
    font-size: 2rem;
    color: var(--primary, #ff5757);
}

.products-empty i,
.products-error i {
    font-size: 2.4rem;
    color: var(--text-mid);
    margin-bottom: 0.3rem;
}

.products-error i {
    color: #e0a020;
}

.products-error p,
.products-empty p {
    margin: 0;
    color: var(--text-mid);
}

.btn-retry {
    margin-top: 0.8rem;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 10px;
    background: var(--primary, #ff5757);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: filter 0.15s ease;
}

.btn-retry:hover {
    filter: brightness(1.08);
}

/* ===========================================================
   CART AUTH STATUS (cart.html)
   =========================================================== */

.cart-auth-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cart-auth-status.connected {
    background: rgba(77, 217, 124, 0.12);
    color: var(--green-dark, #2a9b50);
}

.cart-auth-status.warning {
    background: rgba(255, 165, 0, 0.12);
    color: #b56b00;
}

/* ===========================================================
   AUTH BANNER (top of page when not logged in)
   =========================================================== */

.auth-banner {
    background: linear-gradient(135deg, #2a9b50, #1f7a3e);
    color: #fff;
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 50;
}

.auth-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.auth-banner-text {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
}

.auth-banner-text i.fa-lock {
    font-size: 1rem;
    opacity: 0.9;
}

.auth-banner-text strong {
    font-weight: 800;
}

.auth-banner-text span {
    opacity: 0.92;
}

.auth-banner-cta {
    background: #fff;
    color: #1f7a3e;
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1.2rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.auth-banner-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
    .auth-banner-text span {
        display: none;
    }
    .auth-banner-inner {
        gap: 0.6rem;
    }
}

/* ===========================================================
   HERO SALE TAG + TRUST PILLS + PULSING BUTTON
   =========================================================== */

.hero-tag-sale {
    background: linear-gradient(135deg, #ff5757, #ff8c42);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 87, 87, 0.35);
    animation: sale-glow 2.4s ease-in-out infinite;
}

@keyframes sale-glow {
    0%, 100% { box-shadow: 0 4px 14px rgba(255, 87, 87, 0.35); }
    50% { box-shadow: 0 6px 22px rgba(255, 87, 87, 0.55); }
}

.hero-price {
    color: var(--green-dark, #2a9b50);
    font-weight: 900;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--text-light, #fff);
    backdrop-filter: blur(6px);
}

.trust-pill i {
    color: var(--green, #4dd97c);
    font-size: 0.85rem;
}

.btn-pulse {
    position: relative;
    animation: btn-pulse 2.2s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 6px 18px rgba(255, 87, 87, 0.35); }
    50% { transform: scale(1.03); box-shadow: 0 10px 28px rgba(255, 87, 87, 0.55); }
}

/* ===========================================================
   PRODUCT BADGES (BESTSELLER / MEEST GEKOZEN) + SAVE PRICE
   =========================================================== */

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #ffb547, #ff8a00);
}

.product-badge.popular {
    background: linear-gradient(135deg, #4ab8e0, #5b8ef5);
}

.product-discount.pulse {
    animation: discount-pulse 1.8s ease-in-out infinite;
}

@keyframes discount-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.07); }
}

.price-save {
    display: inline-block;
    margin-left: 0.4rem;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: rgba(77, 217, 124, 0.15);
    color: var(--green-dark, #2a9b50);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.78rem;
}

.product-foot {
    margin-top: 0.7rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-mid, #6b7280);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.product-foot i {
    color: var(--green-dark, #2a9b50);
}

/* ===========================================================
   TRUST STRIP (store page below products)
   =========================================================== */

.trust-strip {
    max-width: 1280px;
    margin: 3rem auto 1rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.trust-card {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.1rem 1.2rem;
    background: var(--card-bg, #fff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.trust-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(77, 217, 124, 0.18), rgba(74, 184, 224, 0.18));
    color: var(--green-dark, #2a9b50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.trust-content h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    margin: 0 0 0.2rem;
    color: var(--text-dark, #1a202c);
}

.trust-content p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--text-mid, #6b7280);
    margin: 0;
    line-height: 1.45;
}

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

@media (max-width: 540px) {
    .trust-strip { grid-template-columns: 1fr; }
}

.cart-drawer-checkout {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.25s;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cart-drawer-checkout:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

@media (max-width: 480px) {
    .cart-drawer { width: 100vw; }
}

/* ======== FAQ SECTIE ======== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-shadow:
        0 1px 2px rgba(26, 46, 68, 0.04),
        0 6px 14px rgba(26, 46, 68, 0.06),
        inset 0 -3px 0 rgba(26, 46, 68, 0.04);
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 87, 87, 0.3);
    box-shadow:
        0 4px 8px rgba(26, 46, 68, 0.06),
        0 12px 24px rgba(26, 46, 68, 0.08),
        inset 0 -3px 0 rgba(26, 46, 68, 0.04);
}

.faq-item summary {
    padding: 1.2rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    cursor: pointer;
    list-style: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.98rem;
    color: var(--text-dark);
    transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary > span {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex: 1;
}

.faq-summary-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--primary-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.faq-item summary:hover {
    background: var(--bg-light);
}

.faq-item summary .chevron {
    color: var(--text-light);
    transition: transform 0.3s;
    font-size: 0.85rem;
}

.faq-item[open] summary .chevron { transform: rotate(180deg); color: var(--primary); }

.faq-body {
    padding: 0 1.4rem 1.4rem 4rem;
    color: var(--text-mid);
    font-size: 0.94rem;
    line-height: 1.65;
}

.faq-body p strong { color: var(--text-dark); font-weight: 700; }

@media (max-width: 540px) {
    .faq-body { padding-left: 1.4rem; }
}

/* ======== TRUST ROW (payment badges) ======== */
.trust-row {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.8rem;
    text-align: center;
    box-shadow:
        0 1px 2px rgba(26, 46, 68, 0.04),
        0 6px 14px rgba(26, 46, 68, 0.06),
        inset 0 -3px 0 rgba(26, 46, 68, 0.04);
}

.trust-row-title {
    color: var(--text-mid);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.trust-row-title i { color: var(--green-dark); }

.trust-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.trust-method {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.95rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-mid);
    transition: all 0.2s;
}

.trust-method:hover {
    background: white;
    border-color: var(--primary);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.trust-method i {
    font-size: 1.15rem;
    color: var(--blue-dark);
}

/* ======== AUTH MODAL ======== */
.auth-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 46, 68, 0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 1rem;
}

.auth-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem 2rem;
    max-width: 460px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    position: relative;
    transform: scale(0.85);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 1px 2px rgba(26, 46, 68, 0.04),
        0 12px 30px rgba(26, 46, 68, 0.15),
        0 32px 60px rgba(26, 46, 68, 0.2),
        inset 0 -4px 0 rgba(26, 46, 68, 0.05);
}

.auth-modal-overlay.open .auth-modal {
    transform: scale(1);
}

.auth-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-light);
    color: var(--text-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.auth-modal-close:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

.auth-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-soft), var(--blue-soft));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow:
        inset 0 -3px 0 rgba(0, 0, 0, 0.06),
        0 8px 20px rgba(255, 87, 87, 0.2);
}

.auth-modal h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
}

.auth-modal > p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.8rem;
}

.auth-providers {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.auth-provider-btn {
    padding: 1rem 1.4rem;
    background: linear-gradient(180deg, #ff6b6b 0%, var(--primary) 100%);
    color: white;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    transition: transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow:
        0 4px 0 var(--primary-dark),
        0 6px 14px rgba(255, 87, 87, 0.3);
}

.auth-provider-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 var(--primary-dark),
        0 10px 22px rgba(255, 87, 87, 0.4);
}

.auth-provider-btn:active {
    transform: translateY(2px);
    box-shadow:
        0 2px 0 var(--primary-dark),
        0 4px 8px rgba(255, 87, 87, 0.3);
}

.auth-provider-btn i {
    font-size: 1.2rem;
}

.auth-note {
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.auth-note i { color: var(--green-dark); }

/* Account info weergave (ingelogd modal) */
.account-info {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
    text-align: left;
}

.account-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
}

.account-info-row + .account-info-row {
    border-top: 1px solid var(--border-light);
}

.account-info-label {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.account-info-value {
    color: var(--text-dark);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
}

.auth-logout-btn {
    width: 100%;
    padding: 0.9rem 1.4rem;
    background: white;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.2s, background 0.2s, color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow:
        0 3px 0 var(--primary),
        0 5px 12px rgba(255, 87, 87, 0.15);
    margin-bottom: 1rem;
}

.auth-logout-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow:
        0 5px 0 var(--primary-dark),
        0 10px 20px rgba(255, 87, 87, 0.3);
}

.auth-logout-btn:active {
    transform: translateY(2px);
    box-shadow:
        0 1px 0 var(--primary),
        0 2px 6px rgba(255, 87, 87, 0.2);
}

/* Login knop wanneer ingelogd → groene state */
.btn-login.is-authenticated {
    background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
    color: white;
    border-color: var(--green-dark);
    box-shadow:
        0 3px 0 var(--green-dark),
        0 5px 12px rgba(77, 217, 124, 0.3);
}

.btn-login.is-authenticated:hover {
    background: var(--green-dark);
    color: white;
    box-shadow:
        0 5px 0 var(--green-dark),
        0 10px 20px rgba(77, 217, 124, 0.4);
}

/* ======== TOAST ======== */
#alberti-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 30px var(--primary-glow);
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.4s ease;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-tag, .server-ip { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .store-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .nav-container { padding: 0 1rem; }
    section.content-section { padding: 2rem 1rem; }
    .hero { padding: 2rem 1rem; }
    .stats-grid { padding: 0 1rem; }
    .footer-content { flex-direction: column; text-align: center; }
}
