/* Offers Page Styles */
.offers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
}

.offers-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.offers-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.offers-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

/* Featured Offers */
.featured-offers {
    margin-bottom: 50px;
}

.featured-offers h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.offer-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.offer-card.featured {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.offer-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.offer-content p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 16px;
}

.offer-code {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.code-text {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.copy-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.copy-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
}

.offer-expiry {
    font-size: 12px;
    opacity: 0.8;
    font-style: italic;
}

/* All Coupons Section */
.all-coupons {
    margin-bottom: 50px;
}

.all-coupons h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
}

.coupons-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: #666;
    border: 2px solid #e9ecef;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.filter-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.coupon-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coupon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.coupon-card.featured {
    border: 2px solid #667eea;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #667eea;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.coupon-header h3 {
    color: #333;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.coupon-value {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
}

.coupon-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.coupon-terms {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.coupon-terms span {
    font-size: 12px;
    color: #999;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.coupon-code-section {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
}

.coupon-code {
    flex: 1;
    background: white;
    border: 2px dashed #667eea;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
}

.code-text {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    font-size: 16px;
    color: #667eea;
    letter-spacing: 1px;
}

.no-coupons {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    grid-column: 1 / -1;
}

.no-coupons i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ccc;
}

/* How to Use Section */
.how-to-use {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.how-to-use h2 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 600;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .offers-container {
        padding: 10px;
    }
    
    .offers-header {
        padding: 30px 20px;
    }
    
    .offers-header h1 {
        font-size: 28px;
    }
    
    .offers-grid,
    .coupons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .coupons-filter {
        justify-content: center;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .how-to-use {
        padding: 30px 20px;
    }
    
    .offer-code,
    .coupon-code-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
    }
}
