﻿/* ========================================
   PROMO BANNER SECTION
   ======================================== */

.promo-banner {
    width: 100%;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

/* Optional Background Image */
.promo-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
}

    .promo-banner-bg[style*="url('')"],
    .promo-banner-bg[style*="url()"] {
        display: none;
    }

/* Container */
.promo-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

/* Left Side - Discount Display */
.promo-banner-left {
    display: flex;
    align-items: center;
}

.promo-discount {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.promo-discount-number {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.promo-discount-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.promo-de {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.2;
}

.promo-descuento {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.1;
}

/* Right Side - Conditions */
.promo-banner-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.promo-condition {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

    /* Highlight the price amount */
    .promo-condition strong,
    .promo-condition b {
        font-weight: 600;
    }

.promo-automatic {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1200px) {
    .promo-banner-container {
        gap: 60px;
        padding: 24px 40px;
    }

    .promo-discount-number {
        font-size: 60px;
    }

    .promo-descuento {
        font-size: 24px;
    }

    .promo-de {
        font-size: 18px;
    }

    .promo-condition {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .promo-banner-container {
        gap: 40px;
        padding: 22px 30px;
    }

    .promo-discount-number {
        font-size: 52px;
    }

    .promo-descuento {
        font-size: 22px;
    }

    .promo-de {
        font-size: 16px;
    }

    .promo-condition {
        font-size: 14px;
    }

    .promo-automatic {
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .promo-banner-container {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
        text-align: center;
    }

    .promo-banner-left,
    .promo-banner-right {
        align-items: center;
    }

    .promo-discount {
        gap: 10px;
    }

    .promo-discount-number {
        font-size: 56px;
    }

    .promo-discount-label {
        align-items: flex-start;
    }

    .promo-descuento {
        font-size: 20px;
    }

    .promo-de {
        font-size: 14px;
    }

    .promo-condition {
        font-size: 14px;
        text-align: center;
    }

    .promo-automatic {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .promo-banner-container {
        padding: 20px 16px;
    }

    .promo-discount-number {
        font-size: 48px;
    }

    .promo-descuento {
        font-size: 18px;
    }

    .promo-de {
        font-size: 13px;
    }

    .promo-condition {
        font-size: 13px;
    }
}
