/**
 * Softzap Single Coupon Page CSS
 * Version: 1.0.0
 */

/* Single Coupon Section */
.softzap-single-coupon-section {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

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

.coupon-expired-notice p {
    color: #d63638;
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}

/* Coupon Highlight Box */
.coupon-highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 25px;
}

.coupon-discount-large {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.verified-badge-large {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
}

/* Code Reveal Box */
.coupon-code-reveal-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
    border: 3px dashed #2271b1;
}

.coupon-code-reveal-box h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 24px;
}

.code-display-large {
    margin-bottom: 20px;
}

.code-hidden-large {
    background: #f0f0f0;
    border: 2px dashed #999;
    border-radius: 10px;
    padding: 30px;
}

.code-placeholder {
    font-size: 20px;
    color: #999;
    font-weight: bold;
}

.code-revealed-large {
    background: #e7f3ff;
    border: 3px solid #2271b1;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.code-text {
    font-size: 36px;
    font-weight: bold;
    color: #2271b1;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
}

.copy-code-btn {
    background: #00a32a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.copy-code-btn:hover {
    background: #008a24;
}

.copy-code-btn.copied {
    background: #666;
}

.reveal-code-btn-large {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.reveal-code-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.reveal-code-btn-large.revealed {
    background: #00a32a;
    box-shadow: 0 5px 15px rgba(0, 163, 42, 0.4);
}

.btn-icon {
    font-size: 24px;
}

/* Coupon Info Box */
.coupon-info-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.coupon-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.coupon-info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.info-value {
    color: #666;
    font-size: 16px;
}

/* Shop Now Button */
.shop-now-btn-large {
    display: inline-block;
    width: 100%;
    padding: 18px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    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);
}

.shop-now-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

/* Disclaimer */
.redirect-disclaimer {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .softzap-single-coupon-section {
        padding: 20px;
    }
    
    .coupon-highlight-box {
        padding: 20px;
    }
    
    .coupon-discount-large {
        font-size: 36px;
    }
    
    .coupon-code-reveal-box {
        padding: 20px;
    }
    
    .code-text {
        font-size: 24px;
    }
    
    .reveal-code-btn-large {
        font-size: 16px;
        padding: 15px 30px;
        width: 100%;
    }
    
    .shop-now-btn-large {
        font-size: 16px;
        padding: 15px 0;
    }
    
    .coupon-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
