body {
    background-color: var(--bg-dark);
    color: var(--text);
}

.btn {
    background-color: var(--accent);
    color: var(--text);
    border: none;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 1rem;
    transition: 0.3s;
}

.btn:hover {
    color: var(--text-other);
    cursor: pointer;
}

.hero {
    height: 80vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    background-color: rgba(0,0,0,0.5);
    padding: 15px;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
}

.produkter {
    padding: 25px;
    background-color: var(--bg-dark);
    border: 1px solid black;
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

#product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

#product-list li {
    display: flex;
    flex-direction: column;
    background-color: var(--primary);
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

#product-list li:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

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

#product-list li:hover img {
    transform: scale(1.05);
    cursor: pointer;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.name {
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

.bilBtn {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.bilBtn:hover {
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    #product-list {
        grid-template-columns: 1fr;
    }
}
