/**
 * Softzap Single Deal Page CSS
 * Version: 5.0.0
 */

/* Single Deal CTA Section */
.softzap-deal-cta-section {
    margin: 40px 0;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

/* Expired Notice */
.deal-expired-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.deal-expired-notice p {
    color: #d63638;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin-bottom: 0;
}

/* Large Deal Button */
.deal-button-large {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.deal-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    color: white !important;
}

/* Disclaimer Text */
.deal-disclaimer {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .softzap-deal-cta-section {
        padding: 20px;
    }
    
    .deal-button-large {
        font-size: 16px;
        padding: 15px 30px;
        display: block;
        width: 100%;
    }
    
    .deal-expired-notice p {
        font-size: 16px;
    }
}
