/* Loyalty Rewards Page Styles */

/* Hero Section */
.loyalty-hero {
    background: linear-gradient(135deg, #f8fdf9 0%, #e8f5e9 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.loyalty-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.loyalty-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.loyalty-hero-content .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4a7c59 0%, #3d6649 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.loyalty-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C3E2E;
    margin-bottom: 16px;
    line-height: 1.2;
}

.loyalty-hero p {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 40px;
}

/* CTA Section */
.loyalty-cta-section {
    background: linear-gradient(135deg, #4a7c59 0%, #3d6649 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.loyalty-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.loyalty-cta-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.loyalty-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: white;
}

.btn-loyalty-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: #4a7c59;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-loyalty-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.btn-loyalty-cta i {
    transition: transform 0.3s ease;
}

.btn-loyalty-cta:hover i {
    transform: translateX(4px);
}

/* Bonus Card Helper Text - Black Font */
.bonus-card p {
    color: #000000 !important;
}

/* Partner Delivery Info - Ensure White Text */
.partner-delivery-info h3,
.partner-delivery-info p {
    color: white !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .loyalty-hero {
        padding: 60px 0 40px;
    }

    .loyalty-hero h1 {
        font-size: 2.5rem;
    }

    .loyalty-hero p {
        font-size: 1.125rem;
    }

    .loyalty-cta-content h2 {
        font-size: 2rem;
    }

    .loyalty-cta-content p {
        font-size: 1.125rem;
    }

    .btn-loyalty-cta {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .loyalty-hero h1 {
        font-size: 2rem;
    }

    .loyalty-hero p {
        font-size: 1rem;
    }

    .loyalty-cta-content h2 {
        font-size: 1.75rem;
    }

    .loyalty-cta-content p {
        font-size: 1rem;
    }
}
