/* assets/css/style.css */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-color: #e0e0e0;
    --accent: #00d4ff;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
.navbar {
    background-color: rgba(30, 30, 30, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}
.navbar-brand {
    font-weight: bold;
    color: var(--accent) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-link {
    color: #fff !important;
    transition: 0.3s;
}
.nav-link:hover {
    color: var(--accent) !important;
}

/* Hero Slider */
.carousel-item {
    height: 60vh;
    min-height: 400px;
    background: no-repeat center center scroll;
    background-size: cover;
}
.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}

/* Cards (Producten) */
.product-card {
    background-color: var(--card-bg);
    border: 1px solid #333;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.1);
    border-color: var(--accent);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #333;
}
.card-body {
    padding: 1.5rem;
}
.price-tag {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: #0f0f0f;
    border-top: 1px solid #333;
    color: #aaa;
    margin-top: 50px;
    padding: 40px 0;
}
footer h5 {
    color: #fff;
    margin-bottom: 20px;
}
footer a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}
footer a:hover {
    color: var(--accent);
}
.social-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}
/* assets/css/style.css - Update */

/* Zorg dat standaard tekst altijd licht is */
body {
    color: #e0e0e0;
}

/* Forceer kaart teksten naar wit/lichtgrijs */
.card-text, .text-muted, .product-description {
    color: #cccccc !important;
}

/* De 'muted' tekst mag iets donkerder, maar wel leesbaar */
small.text-muted {
    color: #a0a0a0 !important;
}

/* Product Detail Indeling */
.main-image-container {
    position: relative;
    border: 1px solid #444;
    border-radius: 5px;
    overflow: hidden;
}

/* Verticale thumbnails strip */
.thumb-strip {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 500px;
    overflow-y: auto;
}

.gallery-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
    opacity: 0.6;
}

.gallery-thumb:hover, .gallery-thumb.active {
    border-color: var(--primary-color);
    opacity: 1;
}

/* Checkout Box styling */
.checkout-warning {
    background: #2a2a2a;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-bottom: 20px;
}