
/* ===== DEALS PAGE STYLES ===== */

.deals-hero {
    background: linear-gradient(135deg, #e62e04 0%, #ff6b35 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.deals-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="deals-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect x="10" y="10" width="2" height="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23deals-pattern)"/></svg>');
    opacity: 0.3;
}

.deals-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.deals-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.deals-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.deals-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.deals-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.deals-btn.primary {
    background: white;
    color: #e62e04;
}

.deals-btn.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.deals-btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.deals-btn.secondary:hover {
    background: white;
    color: #e62e04;
    transform: translateY(-2px);
}

.deals-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.deals-section {
    margin: 80px 0;
}

.deals-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    position: relative;
}

.deals-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e62e04, #ff6b35);
    border-radius: 2px;
}

.deals-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.deals-intro h2 {
    font-size: 2rem;
    color: #e62e04;
    margin-bottom: 20px;
}

.deals-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.deals-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.deals-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.deals-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #e62e04;
}

.deals-card.featured {
    border-color: #ffd700;
    transform: scale(1.05);
}

.deals-card-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ffd700;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.deals-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.deals-card-discount {
    font-size: 3rem;
    font-weight: 700;
    color: #e62e04;
    margin-bottom: 10px;
}

.deals-card-type {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.deals-card-body {
    margin-bottom: 25px;
}

.deals-card-body p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

.deals-card-body ul {
    list-style: none;
    padding: 0;
}

.deals-card-body li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.deals-card-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e62e04;
    font-weight: bold;
}

.deals-card-footer {
    text-align: center;
}

.deals-card-btn {
    background: linear-gradient(135deg, #e62e04, #ff6b35);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deals-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 46, 4, 0.4);
}

.deals-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.deals-step {
    text-align: center;
    padding: 30px 20px;
}

.deals-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e62e04, #ff6b35);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
}

.deals-step-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.deals-step-content p {
    color: #666;
    line-height: 1.6;
}

.deals-rules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.deals-rule {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.deals-rule:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.deals-rule-icon {
    font-size: 3rem;
}

.deals-rule-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.deals-rule-content p {
    color: #666;
    line-height: 1.6;
}

.deals-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.deals-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.deals-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.deals-feature-icon {
    font-size: 3rem;
}

.deals-feature-text h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.deals-feature-text p {
    color: #666;
    line-height: 1.6;
}

.deals-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    padding: 80px 40px;
    border-radius: 20px;
    margin: 80px 0;
}

.deals-cta h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.deals-cta p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.deals-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.deals-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.deals-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.deals-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.deals-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.deals-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.deals-gallery-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .deals-hero h1 {
        font-size: 2.5rem;
    }
    
    .deals-hero p {
        font-size: 1.1rem;
    }
    
    .deals-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .deals-cards {
        grid-template-columns: 1fr;
    }
    
    .deals-steps {
        grid-template-columns: 1fr;
    }
    
    .deals-rules {
        grid-template-columns: 1fr;
    }
    
    .deals-features {
        grid-template-columns: 1fr;
    }
    
    .deals-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .deals-gallery {
        grid-template-columns: 1fr;
    }
}
