body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero-section {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: cover;
    padding: 100px 0;
}

.main-hero-img {
    max-height: 400px;
    transition: transform 0.3s ease;
}

.main-hero-img:hover {
    transform: scale(1.05);
}

.product-section {
    transition: background-color 0.3s ease;
}

.product-section:hover {
    background-color: #f8f9fa;
}

.gallery-container {
    position: relative;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 500px;
}

.gallery-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
}

.gallery-thumbnails img.active {
    border-color: #0d6efd;
}

.badge {
    font-size: 0.9rem;
    padding: 0.5em 1em;
}

.table th {
    background-color: #212529;
    color: white;
}

.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

#fazit {
    border-left: 5px solid #0d6efd;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
}
