.jg-offer-container {
    max-width: 900px;
    margin: 40px auto;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    font-family: 'Montserrat', sans-serif;
    border: 2px solid #333;
}

.jg-offer-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ffde00; /* Fel geel voor Joy Gym energie */
    color: #000;
    padding: 10px 40px;
    transform: rotate(45deg);
    font-weight: 900;
    font-size: 0.8rem;
    z-index: 10;
}

.jg-offer-content {
    display: flex;
    flex-wrap: wrap;
}

.jg-offer-video {
    flex: 1;
    min-width: 300px;
    position: relative;
    background: #000;
}

.jg-offer-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jg-video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, #111 95%);
}

.jg-offer-details {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jg-offer-details h2 {
    font-size: 2.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #ffde00;
}

.jg-tagline {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
}

.jg-price-tag {
    margin: 20px 0;
    display: flex;
    align-items: baseline;
}

.jg-currency { font-size: 2rem; font-weight: bold; }
.jg-amount { font-size: 5rem; font-weight: 900; line-height: 1; color: #fff; }
.jg-per-lesson { font-size: 1rem; margin-left: 10px; color: #888; text-transform: uppercase; }

.jg-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.jg-features li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #aaa;
}

.jg-cta-button {
    display: inline-block;
    background: #ffde00;
    color: #000;
    text-align: center;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.jg-cta-button:hover {
    transform: scale(1.05);
    background: #fff;
}

/* Mobiel vriendelijk */
@media (max-width: 768px) {
    .jg-video-overlay {
        background: linear-gradient(0deg, #111 20%, transparent 100%);
    }
    .jg-offer-details { padding: 20px; }
    .jg-amount { font-size: 4rem; }
}