/* ==========================
   Reset voor witte randen
========================== */
html, body {
    margin: 0;
    padding: 0;
    background-color: #000;
    font-family: 'Inter', sans-serif;
}

/* ==========================
   SHOP SECTIE
========================== */
#shop {
    background-color: #111;
    background-image: url("../fotos_map/background1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

#shop h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

/* ==========================
   Discount banner
========================== */
.discount-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    background-color: #d40000;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(212, 0, 0, 0.6);
    text-align: center;
    margin-bottom: 40px;
    display: inline-block;
}

/* ==========================
   Grid van producten
========================== */
.shop-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================
   Product cards
========================== */
.product-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* afbeelding automatisch hoogte en breedte */
.product-card img {
    width: 100%;
    height: auto;          /* hoogte past zich aan de originele verhouding aan */
    object-fit: contain;    /* hele afbeelding zichtbaar, geen inzoomen */
    display: block;
    background-color: #000; /* lege ruimte zwart */
}

/* Product info */
.product-card .product-info {
    padding: 15px;
}

.product-card h3 {
    font-size: 18px;
    margin: 0 0 10px 0;
    color: #fff;
}

.product-card p {
    font-size: 16px;
    color: #d40000;
    font-weight: 700;
}

/* Actieve product kaart */
.product-card.active {
    transform: scale(1.02); /* subtiele vergroting */
    z-index: 10;
    box-shadow: 0 8px 20px rgba(212, 0, 0, 0.4);
}

/* ==========================
   Terug naar home knop
========================== */
#shop-back-section {
    background-color: #111;
    padding: 40px 0;
    text-align: center;
}

.btn-back {
    padding: 12px 25px;
    background-color: #d40000;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s ease, transform 0.3s ease;
}

.btn-back:hover {
    background-color: #ff0000;
    box-shadow: 0 0 12px rgba(212, 0, 0, 0.5);
    transform: translateY(-2px);
}

/* ==========================
   Responsive
========================== */
@media (max-width: 768px) {
    #shop h2 {
        font-size: 28px;
    }

    .product-card img {
        width: 100%;
        height: auto; /* behoud verhouding */
    }
}



