body {
    font-family: 'Fredoka', sans-serif;
    background: #fffdf7;
    color: #333;
}

h1, h2, h3 {
    font-weight: 600;
}

.sjette-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1rem;
}

.sjette-card img {
    max-width: 150px;
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.sjette-title {
    font-size: 1.3rem;
    color: #be1e2d;
}

.sjette-price {
    color: #28a745;
    font-weight: 500;
}

.badge-uitpas {
    background-color: #ff69b4;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    margin-left: 0.5rem;
}

a {
    color: #be1e2d;
}

a:hover {
    text-decoration: underline;
}

.sjette-hero {
    background: linear-gradient(135deg, #f72585, #7209b7, #3a0ca3);
    background-size: 600% 600%;
    animation: gradientShift 15s ease infinite;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.sjette-hero h1 {
    font-family: 'Fredoka', sans-serif;
    color: #fff;
    letter-spacing: 1px;
}

.sjette-hero p {
    font-size: 1.25rem;
    font-weight: 400;
    color: #fbeeff;
}
