/* Black Friday Deals Section */
.black-friday-deals {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.deal-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.deal-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.deal-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.deal-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.deal-badge {
    display: inline-block;
    background: #FF0000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    width: fit-content;
}

.deal-content h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin: 0;
}

.deal-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.price-was {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.price-now {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-indigo);
}

.price-save {
    background: #10B981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.deal-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.deal-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.deal-features i {
    color: #10B981;
    font-size: 1.1rem;
}

.deal-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

.spec {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.spec strong {
    color: var(--text-primary);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    margin: 1rem 0;
}

.deal-benefits {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.deal-benefits span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.deal-benefits i {
    color: var(--accent-indigo);
}

/* Email Capture Section */
.email-capture-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--accent-indigo) 0%, var(--accent-purple) 100%);
}

.email-capture-box {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.email-capture-box h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: white;
}

.email-capture-box p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    opacity: 0.95;
}

.email-capture-form {
    display: flex;
    gap: 0.5rem;
    max-width: 450px;
    margin: 0 auto 0.75rem;
}

.email-capture-form input {
    flex: 1;
    padding: 0.85rem 1rem;
    border-radius: 50px;
    border: none;
    font-size: 0.95rem;
}

.email-capture-form button {
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    white-space: nowrap;
    font-size: 0.95rem;
}

.privacy-note {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.affiliate-notice {
    background: #FFF3CD;
    border: 1px solid #FFC107;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #856404;
}

/* Creator Gear Section */
.creator-gear {
    padding: 60px 0;
    background: #f8fafc;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gear-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.gear-badge {
    display: inline-block;
    background: var(--accent-indigo);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gear-card h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.gear-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.gear-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.gear-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.gear-features i {
    color: #10B981;
    font-size: 0.9rem;
}

.btn-small {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .deal-featured {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .deal-content h3 {
        font-size: 1.5rem;
    }
    
    .price-now {
        font-size: 2rem;
    }
    
    .deal-specs {
        grid-template-columns: 1fr;
    }
    
    .gear-grid {
        grid-template-columns: 1fr;
    }
    
    .email-capture-section {
        padding: 30px 0;
    }
    
    .email-capture-box h2 {
        font-size: 1.4rem;
    }
    
    .email-capture-box p {
        font-size: 0.9rem;
    }
    
    .email-capture-form {
        flex-direction: column;
    }
}
