
/* SWINN DEAL STYLE SHEET
   Focus: #ffc400 (Geel) op #0a0a0a (Zwart)
*/

/* Reset & Basis */
.sw-deal-body {
    margin: 0;
    padding: 0;
    background-color: #0a0a0a !important;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    line-height: 1.6;
}

.sw-deal-page {
    padding: 40px 20px 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Navigatie */
.sw-deal-nav {
    margin-bottom: 40px;
}

.sw-deal-backlink {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: 0.3s;
}

.sw-deal-backlink:hover {
    color: #ffc400;
}

/* Header Sectie */
.sw-deal-header {
    text-align: center;
    margin-bottom: 60px;
}

.sw-deal-badge {
    background: #ffc400;
    color: #000;
    padding: 6px 16px;
    font-weight: 900;
    border-radius: 4px;
    font-size: 0.8rem;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sw-deal-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    margin: 25px 0;
    line-height: 1.1;
}

.sw-deal-yellow {
    color: #ffc400 !important;
}

.sw-deal-subtitle {
    color: #888;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Grid Systeem */
.sw-deal-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 35px;
}

/* Kaart Ontwerp */
.sw-deal-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 24px;
    padding: 40px;
}

.sw-deal-featured {
    border: 2px solid #ffc400;
    position: relative;
    box-shadow: 0 15px 40px rgba(255, 196, 0, 0.05);
}

.sw-deal-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 30px;
}

/* De Lijst met Voordelen */
.sw-deal-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.sw-deal-list li {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #222;
}

.sw-deal-list strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.sw-deal-list span {
    color: #666;
    font-size: 0.95rem;
}

.sw-deal-list-accent strong {
    color: #ffc400 !important;
}

/* Prijsbox Styling */
.sw-deal-price-box {
    background: #000;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #222;
}

.sw-deal-old-price {
    color: #444;
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
}

.sw-deal-amount {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffc400;
    line-height: 1;
    margin: 10px 0;
    display: block;
}

.sw-deal-tax-info {
    color: #666;
    font-size: 1rem;
    display: block;
}

.sw-deal-save-badge {
    background: #ffc400;
    color: #000;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 900;
    margin-top: 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Support Box */
.sw-deal-support-box {
    background: rgba(255, 196, 0, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #ffc400;
    margin: 30px 0;
}

.sw-deal-support-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffc400;
    font-weight: 900;
    margin-bottom: 10px;
}

.sw-deal-pulse {
    width: 10px;
    height: 10px;
    background: #ffc400;
    border-radius: 50%;
    animation: sw-pulse-ring 2s infinite;
}

@keyframes sw-pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(255,196,0,0.7); }
    100% { box-shadow: 0 0 0 12px rgba(255,196,0,0); }
}

/* Details & Status */
.sw-deal-details {
    margin: 30px 0;
    font-size: 0.95rem;
    color: #ccc;
}

.sw-deal-details p {
    margin-bottom: 10px;
}

.sw-deal-btn {
    background: #ffc400;
    color: #000 !important;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    transition: 0.3s;
}

.sw-deal-btn:hover {
    background: #fff;
    transform: translateY(-3px);
}

.sw-deal-status {
    text-align: center;
    margin-top: 15px;
    color: #ffc400;
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.8;
}

/* Mobiel */
@media (max-width: 850px) {
    .sw-deal-grid {
        grid-template-columns: 1fr;
    }
    
    .sw-deal-title {
        font-size: 2.2rem;
    }
}


/*--------------------------------------------------------*/



/* SWINN TEASER SECTION 
   Kleur: #ffc400
*/

.sw-teaser-section {
    background-color: #111111; /* Iets lichter dan de zwarte body voor diepte */
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
}

.sw-teaser-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Tekst kant */
.sw-teaser-content {
    flex: 1;
}

.sw-teaser-eyebrow {
    color: #ffc400;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.sw-teaser-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
}

.sw-teaser-yellow {
    color: #ffc400;
}

.sw-teaser-text {
    color: #888;
    font-size: 1.1rem;
    max-width: 500px;
}

/* Knop kant */
.sw-teaser-action {
    flex-shrink: 0;
}

.sw-teaser-btn {
    background-color: #ffc400;
    color: #000000 !important;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 196, 0, 0.1);
}

.sw-teaser-btn svg {
    transition: transform 0.3s ease;
}

.sw-teaser-btn:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.sw-teaser-btn:hover svg {
    transform: translateX(5px);
}

/* Mobiel weergave */
@media (max-width: 850px) {
    .sw-teaser-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .sw-teaser-title {
        font-size: 2rem;
    }

    .sw-teaser-text {
        margin: 0 auto;
    }

    .sw-teaser-btn {
        width: 100%;
        justify-content: center;
    }
}
