/* Promo Page Styles - High Conversion Design */

/* Hero Section */
.promo-hero {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #f5f1e8 70%, #e8d5a0 85%, #D4AF37 100%);
    padding: 140px 0 100px;
    text-align: center;
    color: #2c1810;
    position: relative;
    overflow: hidden;
}

.promo-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.15));
    pointer-events: none;
}

.promo-hero .container {
    position: relative;
    z-index: 1;
}

.promo-hero .hero-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #D4AF37;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.promo-hero .hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c1810;
    text-shadow: none;
}

.promo-hero .hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    color: #4a2817;
    opacity: 0.85;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Promo Grid Section */
.promo-grid-section {
    padding: 80px 0;
    background: var(--color-light);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

/* Promo Card */
.promo-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Badge */
.promo-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.badge-best {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
    color: var(--color-white);
}

.badge-hot {
    background: linear-gradient(135deg, #FF9D00 0%, #FF7A00 100%);
    color: var(--color-white);
}

.badge-save {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--color-white);
}

.badge-custom {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: var(--color-white);
}

/* Image */
.promo-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promo-card:hover .promo-image img {
    transform: scale(1.1);
}

.promo-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
}

.discount-badge {
    background: rgba(0,0,0,0.8);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

/* Content */
.promo-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.promo-type {
    font-size: 13px;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 58px;
}

.promo-description {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 67px;
    flex-grow: 1;
}

/* Price Section */
.price-section {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF5D6 100%);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    margin-top: auto;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.original-price {
    font-size: 16px;
    color: var(--color-gray);
    text-decoration: line-through;
}

.savings-label {
    background: #10B981;
    color: var(--color-white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.final-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: var(--font-heading);
}

/* CTA Button */
.btn-claim {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #25D366 0%, #22C55E 100%);
    color: var(--color-white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-claim svg {
    width: 20px;
    height: 20px;
}

/* No Promo State */
.no-promo {
    text-align: center;
    padding: 80px 20px;
}

.no-promo svg {
    color: var(--color-gray);
    opacity: 0.3;
    margin-bottom: 24px;
}

.no-promo h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.no-promo p {
    font-size: 16px;
    color: var(--color-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #D4AF37 0%, #c9a02c 100%);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .promo-hero {
        padding: 100px 0 60px;
    }

    .promo-hero .hero-title {
        font-size: 36px;
    }

    .promo-hero .hero-description {
        font-size: 16px;
    }

    .hero-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 28px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .promo-grid-section {
        padding: 60px 0;
    }

    .final-price {
        font-size: 28px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Accordion Styles */
.variants-accordion {
    margin-top: 16px;
    border-radius: 12px;
    background: var(--color-gray-50);
}

.accordion-toggle {
    width: 100%;
    padding: 14px 16px;
    background: var(--color-gray-100);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.accordion-toggle:hover {
    background: var(--color-gray-200);
}

.accordion-icon {
    transition: transform 0.3s ease;
    stroke: var(--primary-gold);
}

.variants-accordion.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: white;
    border-radius: 0 0 12px 12px;
}

.variants-accordion.active .accordion-content {
    max-height: 800px;
    overflow-y: auto;
    border: 2px solid var(--primary-gold);
    border-top: none;
}

.variant-item {
    padding: 16px;
    border-bottom: 1px solid var(--color-gray-200);
    background: white;
    transition: background 0.2s ease;
}

.variant-item:hover {
    background: var(--color-gray-50);
}

.variant-item:last-child {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
}

.variant-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.variant-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
}

.variant-duration {
    font-size: 13px;
    color: var(--color-gray-600);
    font-weight: 400;
}

.variant-pricing {
    margin-bottom: 12px;
}

.variant-pricing .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.original-price-small {
    font-size: 13px;
    color: var(--color-gray-500);
    text-decoration: line-through;
}

.savings-small {
    font-size: 12px;
    padding: 3px 8px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    border-radius: 6px;
    font-weight: 600;
}

.final-price-small {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-gold);
}

.btn-claim-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, #25D366 0%, #22C55E 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.btn-claim-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn-claim-small svg {
    width: 16px;
    height: 16px;
}
