/* --- style.css --- */
/* DEFINITIEVE, GEPOLIJSTE VERSIE */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

html {
    scroll-behavior: smooth;
    height: 100%;
}

/* --- KLEURENPALET --- */
:root {
    --bg-dark: #0f1012;
    --bg-card: #1e1f22;
    --primary: #5865F2;
    --primary-glow: rgba(88, 101, 242, 0.5); /* Iets zachtere glow */
    --text-main: #ffffff;
    --text-muted: #b5bac1;
    --green: #23a559;
    --border-light: rgba(255,255,255,0.06); /* Subtiele randkleur */
}

/* --- ALGEMENE RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-weight: 400;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Base64 encoded noise texture - laadt direct */
    background-image: url("data:image/svg+xml,...");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

/* NIEUW: Schakel het zware noise effect uit op mobiel/tablets */
@media (max-width: 768px) {
    body::before {
        display: none !important;
    }
}

h1, h2, h3, .logo, .badge, .price {
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: -0.3px;
}

/* --- HEADER --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 4%; /* Iets strakkere padding */
    background-color: rgba(15, 16, 18, 0.92); /* Iets meer doorzichtig */
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
}
.logo span { color: var(--primary); }

.nav-menu {
    display: flex;
    gap: 35px; /* Iets meer ruimte tussen links */
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-small {
    background-color: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.2);
}

.btn-small:hover {
    box-shadow: 0 4px 20px var(--primary-glow);
    transform: translateY(-2px);
    background-color: #4752c4; /* Iets donkerder bij hover */
}

/* --- HERO SECTION --- */
.hero {
    text-align: center;
    padding: 140px 20px 100px 20px; /* Meer ademruimte */
    max-width: 100%;
    margin: 0 auto;
    background: radial-gradient(circle at 50% 30%, rgba(88, 101, 242, 0.12) 0%, rgba(15, 16, 18, 0) 60%);
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.05;
    background: linear-gradient(to bottom right, #fff, #b5bac1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* --- PROMO BAR --- */
.promo-bar {
    background: linear-gradient(90deg, #ff00cc, #5865F2);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* --- ALGEMEEN CONTAINER & GRID --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px; /* Meer standaard padding */
    width: 100%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); /* Iets bredere kaarten */
    gap: 40px;
}

/* --- CARDS (Homepage) --- */
.card {
    background-color: rgba(255, 255, 255, 0.03); /* Zeer donker/transparant */
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    position: relative;
    overflow: hidden; /* Belangrijk voor het spotlight effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Zorg dat de muis variabelen een default waarde hebben */
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Een radiale gradiënt die de muis volgt */
    background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y), 
        rgba(255, 255, 255, 0.06), 
        transparent 40%
    );
    z-index: 1; /* Ligt bovenop de achtergrond, onder de content */
    pointer-events: none; /* Klikken gaat er dwars doorheen */
    opacity: 0; /* Standaard onzichtbaar */
    transition: opacity 0.5s ease;
}

.card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(
        400px circle at var(--mouse-x) var(--mouse-y), 
        rgba(88, 101, 242, 0.3), /* Jouw primaire kleur */
        transparent 40%
    );
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: overlay; /* Zorgt voor mooie blending met de achtergrond */
}

.card-image, .card-content {
    position: relative;
    z-index: 3;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-7px);
    /* Mooiere diepte glow bij hover */
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.5), 0 0 20px rgba(88, 101, 242, 0.1) inset;
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    background: #1e1f22;
    border-bottom: 1px solid var(--border-light);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    aspect-ratio: 16 / 9; /* Dit reserveert ruimte voordat het plaatje geladen is */
}

.card:hover .card-image img {
    transform: scale(1.03); /* Subtiele zoom bij hover */
}

.card:hover::before, 
.card:hover::after {
    opacity: 1; /* Laat de glow zien bij hover */
}

.card-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.badge {
    background-color: rgba(88, 101, 242, 0.1);
    color: var(--primary);
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 15px;
    border: 1px solid rgba(88, 101, 242, 0.25);
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

/* --- FEATURES LIST --- */
.features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.features li::before {
    content: "✓";
    color: var(--green);
    font-weight: 900;
}

.features li.cross::before {
    content: "✖";
    color: #f04747;
}

.features li strong {
    color: #ececec;
    font-weight: 600;
}

/* --- PRIJS & KNOPPEN --- */
.price-row {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.price {
    font-size: 1.7rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
}

.btn {
    background-color: white;
    color: black;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn:hover {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 14px 38px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-outline:hover {
    border-color: white;
    background-color: white;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px rgba(255,255,255,0.3);
}

.btn-large {
    display: block;
    padding: 16px;
    font-size: 1.15rem;
    text-align: center;
}

.btn-primary { 
    background-color: white; 
    color: black; 
    border: 2px solid white; 
}

.btn-primary:hover { 
    background-color: var(--primary); 
    border-color: var(--primary);
    color: white; 
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(88, 101, 242, 0.5);
}

/* --- PRODUCT PAGE LAYOUT (FULL VIBE POLISHED) --- */
.container.product-page-layout {
    max-width: 1200px;
    width: 92%;
    min-height: 80vh; 
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px; 
    align-items: start;
    padding-top: 40px !important;
    padding-bottom: 60px !important;
    margin: auto;
}

.main-image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border: 1px solid #e6e6e6;
    background: #fff;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.product-info-sticky {
    padding: 36px !important;
    background: #17181b !important;
    border-radius: 18px;
    border: 1px solid #2a2c31;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    color: #e9edf1;
}

.product-info-sticky h1 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.15;
    color: #f5f7fa;
}

.product-meta {
    font-size: 0.95rem;
    color: #b7bcc4;
    margin-bottom: 16px;
}
.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: #23252b;
    border: 1px solid #2f3238;
    color: #e9edf1;
    font-size: 0.85rem;
    font-weight: 700;
}
.product-trust {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
    color: #b7bcc4;
    font-size: 0.9rem;
}
.product-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 8px;
    background: #1f2126;
    border: 1px solid #2a2c31;
}
.product-info-sticky .badge {
    background: #23252b !important;
    color: #e9edf1 !important;
    border: 1px solid #2f3238;
}

.description {
    font-size: 1rem;
    line-height: 1.7;
    color: #b7bcc4;
    margin-bottom: 22px;
}

.price-block {
    background: #1f2126; 
    padding: 16px 18px; 
    border: 1px solid #2a2c31;
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    margin-bottom: 18px;
}

.current-price { font-size: 2rem; font-weight: 900; color: #ffffff; letter-spacing: -1px; }
.old-price { text-decoration: line-through; color: #8b8b8b; font-size: 1rem; font-weight: 600; }

#saveBadge {
    background: rgba(35, 165, 89, 0.2);
    color: #23a559;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid rgba(35, 165, 89, 0.35);
    animation: none;
}

.product-info-sticky .price-block {
    background: #1f2126 !important;
    border: 1px solid #2a2c31 !important;
    border-left: none !important;
    border-radius: 10px !important;
    padding: 16px 18px !important;
    gap: 12px;
}
.product-info-sticky .current-price { color: #ffffff !important; font-size: 2rem !important; }
.product-info-sticky .old-price { color: #8b8b8b !important; font-size: 1rem !important; }
#saveBadge {
    background: rgba(35, 165, 89, 0.2) !important;
    color: #23a559 !important;
    border: 1px solid rgba(35, 165, 89, 0.35) !important;
}

.buy-actions {
    margin-top: 30px;
}

.gallery-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 90px;
}

.product-info-sticky .features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.product-info-sticky .features li {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #2a2c31;
    color: #e9edf1;
}
.product-info-sticky .features li:last-child { border-bottom: none; }
.product-info-sticky .features li::before {
    content: "✓";
    color: #22c55e;
    font-weight: 900;
}
.product-info-sticky .features li strong { color: #ffffff; }
.product-info-sticky hr { border-top: 1px solid #2a2c31 !important; }
.product-info-sticky .btn-primary {
    background: #ffffff;
    color: #111;
    border-color: #ffffff;
    box-shadow: none;
}
.product-info-sticky .btn-primary:hover {
    background: #e6e6e6;
    border-color: #e6e6e6;
    box-shadow: none;
    transform: translateY(-2px);
}

/* --- CATEGORY GRID --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    width: 100%;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cat-card {
    position: relative;
    height: 180px; 
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; 
    align-items: center;      
    justify-content: center;  
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cat-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: 0.4s ease;
    z-index: 1;
    filter: grayscale(30%); /* Standaard iets minder kleur */
}

.cat-title {
    position: relative;
    z-index: 2;
    width: fit-content;  
    font-weight: 900;
    font-size: 1.1rem;
    color: white !important;
    text-transform: uppercase;
    background: rgba(15, 16, 18, 0.7); 
    backdrop-filter: blur(5px);
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

/* Thema Kleuren (Verbeterde shadows) */
.theme-fivem { border-color: #00e5ff; }
.theme-gaming { border-color: #bd00ff; }
.theme-cute { border-color: #ff91af; }
.theme-streamer { border-color: #9146FF; }
.theme-crypto { border-color: #FFD700; }
.theme-community { border-color: #ff9900; }
.theme-anime { border-color: #ff0055; }
.theme-developer { border-color: #00ff9d; }
.theme-music { border-color: #d600ff; }

.cat-card:hover {
    transform: translateY(-7px);
}
/* Glow op basis van border color bij hover */
.cat-card:hover.theme-fivem { box-shadow: 0 10px 30px -10px rgba(0, 229, 255, 0.4); }
.cat-card:hover.theme-gaming { box-shadow: 0 10px 30px -10px rgba(189, 0, 255, 0.4); }
.cat-card:hover.theme-cute { box-shadow: 0 10px 30px -10px rgba(255, 145, 175, 0.5); }
.cat-card:hover.theme-streamer { box-shadow: 0 10px 30px -10px rgba(145, 70, 255, 0.4); }
.cat-card:hover.theme-crypto { box-shadow: 0 10px 30px -10px rgba(255, 215, 0, 0.4); }
.cat-card:hover.theme-community { box-shadow: 0 10px 30px -10px rgba(255, 153, 0, 0.4); }
.cat-card:hover.theme-anime { box-shadow: 0 10px 30px -10px rgba(255, 0, 85, 0.4); }
.cat-card:hover.theme-developer { box-shadow: 0 10px 30px -10px rgba(0, 255, 157, 0.4); }
.cat-card:hover.theme-music { box-shadow: 0 10px 30px -10px rgba(214, 0, 255, 0.4); }


.cat-card:hover .cat-bg {
    opacity: 0.6;
    transform: scale(1.05);
    filter: grayscale(0%); /* Kleur terug bij hover */
}
.cat-card:hover .cat-title {
    background: white;
    color: black !important;
    border-color: white;
    transform: scale(1.05);
}

/* --- ZOEKBALK --- */
.search-wrapper {
    position: relative;
    max-width: 550px;
    margin: 30px auto 60px auto;
}

.search-input {
    width: 100%;
    padding: 20px 25px 20px 60px;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 25px var(--primary-glow), inset 0 0 10px rgba(88, 101, 242, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.search-icon-svg {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: 0.3s;
}
.search-input:focus + .search-icon-svg { color: var(--primary); }

/* --- FOOTER --- */
footer {
    width: 100%;
    border-top: 1px solid var(--border-light);
    background-color: #0a0b0c; /* Iets donkerder dan body */
    padding: 40px 0;
    margin-top: auto; 
    flex-shrink: 0;
}

footer .container {
    padding: 0 20px !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

/* --- FAQ & TRUST --- */
.trust-section, .faq-section {
    padding: 80px 0;
    width: 100%;
}

.trust-card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: 0.3s;
}

.trust-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -10px rgba(88, 101, 242, 0.3);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.15); }

.faq-question {
    width: 100%;
    padding: 22px;
    background: transparent; /* Transparant zodat de achtergrond van het item zichtbaar is */
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary); /* Lichte kleurverandering bij hover */
}

.faq-question span {
    display: inline-block; /* Nodig om te kunnen roteren */
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* "Bounce" effect */
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    /* Combineer max-height animatie met opacity voor een 'fade-in' effect */
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.5s ease;
    background: rgba(255, 255, 255, 0.02); /* Zeer lichte achtergrond */
}
.faq-answer p {
    padding: 0 22px 22px 22px; /* Padding alleen aan zijkant en onderkant */
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    transform: translateY(10px); /* Startpositie tekst iets lager */
    transition: transform 0.5s ease;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg); 
    color: var(--primary); /* Kleur het kruisje ook in je themakleur */
}
.faq-item.active .faq-answer {
    /* max-height wordt door JS geregeld, opacity hier */
    opacity: 1;
}
.faq-item.active .faq-answer p {
    transform: translateY(0); /* Tekst glijdt netjes op zijn plek */
}

/* --- LIGHTBOX (ZOOM) --- */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* Donkerder */
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-height: 90vh;
    max-width: 90vw;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    object-fit: contain;
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Mooiere 'pop' animatie */
}

@keyframes zoomIn {
    from {transform:scale(0.9); opacity:0;}
    to {transform:scale(1); opacity:1;}
}

.close-zoom {
    position: absolute;
    top: 25px; right: 40px;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    transition: 0.2s;
}
.close-zoom:hover { color: var(--primary); transform: rotate(90deg); }

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 25px; left: 25px; right: 25px;
    background: rgba(25, 26, 29, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-light);
    padding: 25px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    max-width: 550px;
    margin: 0 auto;
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text p { font-size: 0.95rem; color: #d1d1d1; }
.cookie-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    transition: 0.2s;
}
.cookie-btn:hover { background: #4752c4; transform: translateY(-2px); }

/* --- ANIMATIES --- */
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.03); box-shadow: 0 0 15px rgba(35, 165, 89, 0.3); } 100% { transform: scale(1); } }

/* --- RESPONSIVENESS --- */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
}
.hamburger-menu span {
    width: 26px; height: 2px; background: white; border-radius: 4px; transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.mobile-only-btn { display: none; }

/* Tablet/Laptop Breakpoint (< 1000px) */
@media (max-width: 1000px) {
    .container.product-page-layout {
        display: flex;
        flex-direction: column;
        height: auto;
        padding-top: 50px !important;
        padding-bottom: 60px !important;
        gap: 40px;
    }
    .main-image-container { box-shadow: none; border-radius: 12px; }
    .product-info-sticky { padding: 28px !important; }
    .gallery-wrapper { position: static; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 3rem; }
}

/* Mobiel Breakpoint (< 768px) */
@media (max-width: 768px) {
    .hamburger-menu { display: flex; }
    .nav-actions { display: none; }
    
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 75%; height: 100vh;
        background: rgba(10, 11, 12, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        gap: 35px;
        border-left: 1px solid var(--border-light);
    }
    .nav-menu.active { right: 0; box-shadow: -10px 0 30px rgba(0,0,0,0.5); }
    
    .mobile-only-btn { 
        display: inline-block; 
        background: var(--primary); 
        padding: 12px 28px; 
        border-radius: 50px; 
        color: white; 
        text-decoration: none; 
        font-weight: 800;
    }
    
    .hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .hamburger-menu.active span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
    .hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
    
    footer .container { flex-direction: column; gap: 25px; text-align: center; }
    .category-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .hero { padding-top: 100px; }
    .card-content { padding: 22px; }
}

/* Mobiel: Productpagina layout verfijnen */
@media (max-width: 768px) {
    .container.product-page-layout {
        width: 100%;
        padding: 20px 16px calc(24px + var(--buybar-h, 0px)) 16px !important;
        gap: 24px;
    }

    .gallery-wrapper { gap: 12px; }

    .main-image-container {
        border-radius: 0;
        box-shadow: none;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        width: 100vw;
    }
    .main-image-container img { border-radius: 0; }

    .product-info-sticky {
        padding: 18px 18px calc(18px + var(--buybar-h, 0px)) 18px !important;
        border-radius: 14px;
        background: #17181b !important;
        border: 1px solid #2a2c31;
    }

    .product-info-sticky > div:first-child {
        flex-wrap: wrap;
        justify-content: flex-start !important;
        gap: 8px !important;
    }
    .product-info-sticky > div:first-child span { font-size: 0.85rem; }

    .product-info-sticky h1 {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .description { font-size: 0.98rem; }

    .price-block {
        flex-wrap: wrap;
        gap: 10px !important;
        padding: 12px 14px !important;
    }

    #saveBadge { margin-left: 0 !important; }

    .current-price { font-size: 1.7rem !important; }

    .buy-actions {
        position: fixed;
        left: 12px; right: 12px; bottom: 12px;
        margin: 0 !important;
        padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
        border-radius: 16px;
        background: #17181b;
        border: 1px solid #2a2c31;
        box-shadow: 0 12px 30px rgba(0,0,0,0.35);
        transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.3s ease;
        animation: none;
    }
    .buy-actions:hover { animation: none; }
    .buy-actions.is-hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateY(18px);
    }
    .buy-actions .btn-large { padding: 14px; font-size: 1.05rem; }
    .buy-actions .btn-primary {
        background: #ffffff;
        color: #111;
        border-color: #ffffff;
        box-shadow: none;
    }
    .buy-actions .btn-primary:hover {
        background: #e6e6e6;
        box-shadow: none;
    }
    .buy-actions p { margin-top: 6px !important; font-size: 0.75rem !important; }
}

/* Extra klein: rating en badge compacter */
@media (max-width: 480px) {
    .product-info-sticky > div:first-child {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .product-info-sticky > div:first-child span { font-size: 0.8rem; }
}

@keyframes buyGlow {
    0% { box-shadow: 0 12px 30px rgba(0,0,0,0.45), 0 0 0 rgba(88,101,242,0.0); }
    50% { box-shadow: 0 12px 30px rgba(0,0,0,0.45), 0 0 22px rgba(88,101,242,0.35); }
    100% { box-shadow: 0 12px 30px rgba(0,0,0,0.45), 0 0 0 rgba(88,101,242,0.0); }
}

/* Scrollbar Styling */
::-webkit-scrollbar { width: 8px; background: #0f1012; }
::-webkit-scrollbar-thumb { background: #2b2d31; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* --- THUMBNAIL FIX --- */
.thumbnail-list {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.thumb {
    width: 120px;       /* Forceer klein formaat */
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.5;       /* Iets doorzichtig als hij niet actief is */
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumb:hover, .thumb.active {
    opacity: 1;
    border-color: var(--primary); /* Paars randje bij selectie */
    transform: translateY(-2px);
}

/* --- BLOG --- */
.blog-hero {
    text-align: center;
    padding: 120px 20px 50px 20px;
    background: radial-gradient(circle at 50% 30%, rgba(88, 101, 242, 0.12) 0%, rgba(15, 16, 18, 0) 60%);
}
.blog-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.05;
    background: linear-gradient(to bottom right, #fff, #b5bac1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blog-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 720px; margin: 0 auto; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 22px;
    text-decoration: none;
    color: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.blog-card p { color: var(--text-muted); font-size: 0.95rem; }

.blog-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 20px 80px 20px;
}
.blog-content h2 { margin: 24px 0 10px; font-size: 1.6rem; }
.blog-content p { color: #d7dbe0; margin: 12px 0; }
.blog-content ul { margin: 12px 0 12px 20px; color: #d7dbe0; }
.blog-content li { margin: 6px 0; }
.blog-cta {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(88, 101, 242, 0.08);
}
.blog-cta a { color: white; font-weight: 800; text-decoration: none; }

@media (max-width: 768px) {
    .blog-hero { padding-top: 100px; }
    .blog-hero h1 { font-size: 2.2rem; }
    .blog-content { padding: 30px 18px 70px 18px; }
}
/* --- ETSY STYLE MOBILE LAYOUT (Clean & Overzichtelijk) --- */
@media (max-width: 768px) {

    /* 1. Container aanpassing: We halen de padding weg zodat de foto de rand raakt */
    .container.main-content.product-page {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        margin-top: 60px; /* Zorgt dat het netjes onder je navigatiebalk begint */
    }

    /* 2. De Afbeelding: Rand-tot-rand (Edge-to-Edge) */
    .product-gallery {
        width: 100%;
        margin-bottom: 0;
    }

    .product-image-large {
        width: 100%;
        border-radius: 0; /* Geen ronde hoeken, strak tegen de zijkant */
        border: none;     /* Geen randjes */
        box-shadow: none;
    }

    .product-image-large img {
        width: 100%;
        height: auto;     /* Behoudt de juiste verhouding */
        display: block;
        border-radius: 0;
    }

    /* Thumbnails: Iets kleiner en met wat marge aan de zijkant */
    .thumbnail-list {
        padding: 10px 20px;
        margin-bottom: 10px;
    }

    /* 3. De Info & Beschrijving: Schoon eronder */
    .product-info-sticky {
        padding: 20px 25px 50px 25px; /* Ruimte aan de zijkanten voor de tekst */
        background: transparent;      /* Geen apart blok/kaart meer */
        box-shadow: none;             /* Geen schaduw, blendt in met de pagina */
        border: none;
        position: static;             /* Niet meer sticky op mobiel */
    }

    /* Titel strakker maken */
    .product-info-sticky h1 {
        font-size: 1.5rem;
        margin-bottom: 5px;
        line-height: 1.3;
    }

    /* Prijs iets opvallender */
    .price-block {
        margin-bottom: 20px;
    }

    .current-price {
        font-size: 1.8rem;
    }

    /* Beschrijving leesbaarder maken */
    .description {
        font-size: 1rem;
        line-height: 1.6;
        color: #dcddde;
        margin-top: 15px;
    }
}


/* Toevoegen aan style.css voor mobile only */
@media (max-width: 768px) {
    .buy-actions {
        background: rgba(30, 31, 34, 0.95);
        backdrop-filter: blur(10px);
        z-index: 999;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
}

/* --- CUSTOM BOT REQUEST --- */
.service-highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 24px;
}

.service-highlight-card h2,
.service-highlight-card h3 {
    margin-bottom: 10px;
}

.service-highlight-card p {
    color: var(--text-muted);
}

.bot-request-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    font-weight: 700;
    color: #e8eaee;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    background: #16171a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: white;
    padding: 12px 14px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.18);
}

.form-help-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 16px 0;
}

.form-success-message {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(35, 165, 89, 0.12);
    border: 1px solid rgba(35, 165, 89, 0.35);
    color: #8fe3ad;
    font-weight: 600;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .bot-request-form {
        padding: 18px;
    }
}
