/* ---------- Basis ---------- */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0349ab, #086ab5);
    font-family: "Montserrat", sans-serif;
    color: #fff;
    overflow-x: hidden;
}

/* ---------- Logo ---------- */
#main-content {
    position: absolute;
    top: 20px;
    left: 20px;
}

#main-content img {
    width: 180px;
}

/* ---------- Navigatie ---------- */
.top-right-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.top-right-buttons button {
    font-family: "Oswald", sans-serif;
    padding: 6px 14px;
    background: #0349ab;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.top-right-buttons button:hover {
    background: #0a7bd6;
}

/* ---------- Actie Wrapper ---------- */
.actie-wrapper {
    max-width: 1200px;
    margin: 160px auto 80px;
    padding: 0 30px;
}

/* ---------- Header ---------- */
.actie-header {
    text-align: center;
    margin-bottom: 60px;
}

.actie-header h1 {
    font-family: "Oswald", sans-serif;
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.actie-header p {
    opacity: 0.8;
    font-size: 1.05rem;
}

/* ---------- Grid ---------- */
.producten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

/* ---------- Product Card ---------- */
.product-card {
    position: relative;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* ---------- Badge ---------- */
.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #ffb347, #ff7b00);
    color: #041c2c;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 20px;
}

/* ---------- Image ---------- */
.product-card img {
    width: 130px;
    margin: 10px auto 15px;
}

/* ---------- Text ---------- */
.product-card h3 {
    font-family: "Oswald", sans-serif;
    font-size: 1.1rem;
}

.gewicht {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 12px;
}

/* ---------- Prijs ---------- */
.prijs {
    margin-bottom: 18px;
}

.prijs .oud {
    text-decoration: line-through;
    opacity: 0.5;
    margin-right: 6px;
}

.prijs .nieuw {
    font-size: 1.3rem;
    font-weight: 700;
}

/* ---------- Buttons ---------- */
.actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

button.primary {
    padding: 8px 16px;
    background: linear-gradient(135deg, #0a7bd6, #0349ab);
    border: none;
    border-radius: 10px;
    font-family: "Oswald", sans-serif;
    color: #fff;
    cursor: pointer;
}

button.icon {
    padding: 8px 12px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

button:hover {
    transform: scale(1.05);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .actie-wrapper {
        margin-top: 200px;
    }
}
