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

.btn {
    background-color: var(--accent);
    color: white;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: linear-gradient(135deg, #9b0000, #d10000);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,0,0,0.3);
}

.produkter {
    padding: 80px 8%;
    background-color: var(--bg-dark);
}

#product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

#product-list li {
    display: flex;
    flex-direction: column;
    background-color: var(--card-bg);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
}

#product-list li:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px var(--shadow);
}

#product-list li:hover::after {
    opacity: 1;
}

#product-list img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

#product-list li:hover img {
    transform: scale(1.08);
}

.product-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.name {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

.price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #d10000;
}

.bilBtn {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .produkter {
        padding: 60px 5%;
    }

    #product-list {
        gap: 30px;
    }

    #product-list img {
        height: 200px;
    }
}
