/* Promo Page Specific Styles */

.promo-page {
    background-color: white;
}

/* Hero Section */
.promo-hero {
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), 
                url(../images/hero-bg.jpg) no-repeat center center/cover;
    padding: 60px 0;
    text-align: center;
    color: white;
}

.promo-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.limited-offer {
    display: inline-block;
    background-color: #FFD600;
    color: #1A1A1A;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.promo-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.promo-hero h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Countdown Timer */
.countdown-timer {
    margin: 0 auto 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 10px 20px;
    display: inline-block;
}

.countdown-text {
    color: #FFD600;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1rem;
}

.countdown-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.countdown-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-segment span:first-child {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    color: white;
}

.countdown-label {
    font-size: 0.8rem;
    color: #FFD600;
    margin-top: 2px;
}

.countdown-separator {
    font-size: 2rem;
    color: white;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}

/* Expiring state */
.countdown-expiring .countdown-segment span:first-child {
    color: #ff4545;
    animation: pulse 1s infinite;
}

/* Price Tag */
.price-tag {
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #ccc;
    font-size: 1.5rem;
}

.sale-price {
    font-size: 3rem;
    font-weight: bold;
    color: #FFD600;
    position: relative;
}

.savings {
    background-color: #9C1F2F;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 10px;
}

.buy-now-button {
    margin-top: 10px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.buy-now-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Offer Section */
.promo-offer {
    padding: 60px 0;
    background-color: #F5E8C3;
}

.offer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.product-showcase,
.offer-details {
    flex: 1;
    min-width: 300px;
}

.product-showcase {
    text-align: center;
}

.promo-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.promo-image:hover {
    transform: scale(1.05);
}

.product-features {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.offer-details h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.what-you-get {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefits-short {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.benefit-item {
    text-align: center;
    flex: 1;
}

.benefit-item .icon {
    font-size: 2rem;
    color: #9C1F2F;
    margin-bottom: 10px;
}

.cta-container {
    margin: 30px 0;
    text-align: center;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.2rem;
    width: 100%;
    max-width: 400px;
}

.countdown {
    margin-top: 10px;
    font-style: italic;
    color: #9C1F2F;
    font-weight: 500;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
}

.guarantee-badge-small {
    width: 80px;
    margin-right: 15px;
}

/* Testimonials Section */
.promo-testimonials {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.promo-testimonials h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.testimonial-grid .testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: #F5E8C3;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
    display: block; /* Override any display: none from main styles */
}

.customer-name {
    font-weight: bold;
    text-align: right;
    margin-top: 15px;
}

/* How to Use Section */
.how-to-use-short {
    padding: 60px 0;
    background-color: #F5E8C3;
    text-align: center;
}

.how-to-use-short h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.steps-short {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.steps-short .step {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    background: white;
    padding: 20px 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.steps-short .step::after {
    display: none; /* Remove the connector line */
}

/* Simple Footer */
.promo-footer {
    background: #1A1A1A;
    color: white;
    padding: 40px 0 20px;
}

.footer-content-simple {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-links-simple ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .promo-hero h1 {
        font-size: 2.5rem;
    }

    .offer-grid {
        flex-direction: column;
    }
    
    .benefits-short {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content-simple {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links-simple {
        margin-top: 20px;
    }
    
    .footer-links-simple ul {
        justify-content: center;
    }
}
