/* ================================================
   PROMO BANNER WITH TIMER
   ================================================ */

.promo-banner {
    display: block;
    background: linear-gradient(135deg, #FF9B8A 0%, #DB85C0 100%);
    color: white;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(232, 165, 208, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.promo-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.promo-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.promo-emoji {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.promo-message {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 16px;
    font-weight: 500;
}

.new-price {
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 20px;
    border: 2px solid white;
}

.price-divider {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.discount-badge {
    background: rgba(255, 255, 255, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    backdrop-filter: blur(10px);
    border: 2px solid white;
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.timer-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.promo-cta {
    background: white;
    color: #E8A5D0;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background: #FFF5F3;
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 12px 0;
    }

    .promo-banner-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        text-align: center;
        justify-content: space-between;
        align-items: center;
        max-width: calc(100% - 40px);
        margin: 0 auto;
    }

    .promo-text {
        font-size: 13px;
        display: flex;
        flex-direction: row;
        gap: 6px;
        align-items: center;
        flex: 1;
        justify-content: flex-start;
    }

    .promo-emoji {
        font-size: 16px;
        display: none;
    }

    .promo-message {
        display: flex;
        flex-direction: row;
        gap: 6px;
        flex-wrap: nowrap;
        align-items: center;
    }

    .promo-message strong {
        display: none;
    }

    .old-price {
        font-size: 11px;
    }

    .new-price {
        font-size: 14px;
        padding: 3px 8px;
    }

    .price-divider {
        display: none;
    }

    .discount-badge {
        font-size: 14px;
        padding: 2px 8px;
    }

    .promo-timer {
        font-size: 14px;
        padding: 6px 12px;
        flex-shrink: 0;
    }

    .timer-icon {
        width: 14px;
        height: 14px;
    }

    .promo-cta {
        width: 100%;
        padding: 9px 16px;
        font-size: 13px;
        white-space: nowrap;
        margin-top: 4px;
    }
}

/* ================================================
   PRICING SECTION TIMER
   ================================================ */

.pricing-timer-block {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.pricing-timer-content {
    background: linear-gradient(135deg, #FFB4A8 0%, #E8A5D0 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 8px 24px rgba(232, 165, 208, 0.3);
}

.timer-label {
    font-size: 18px;
    font-weight: 600;
}

.pricing-countdown {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.timer-digits {
    font-family: 'Courier New', monospace;
    font-size: 28px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .pricing-timer-content {
        flex-direction: column;
        padding: 16px 24px;
        gap: 12px;
        text-align: center;
    }

    .timer-label {
        font-size: 16px;
    }

    .timer-digits {
        font-size: 24px;
    }

    .pricing-countdown {
        padding: 10px 20px;
    }
}

/* ================================================
   ENHANCED WELCOME POPUP
   ================================================ */

.welcome-popup-special .popup-content {
    max-width: 650px !important;
    background: white;
    border-radius: 32px;
    overflow: visible;
}

.popup-content-large {
    max-width: 650px;
    padding: 0;
}

.popup-content-large .popup-inner {
    padding: 48px 40px;
}

.popup-promo-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.badge-text {
    background: linear-gradient(135deg, #FFB4A8 0%, #E8A5D0 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(232, 165, 208, 0.4);
    display: inline-block;
    animation: wiggle 3s infinite;
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-3deg);
    }
    75% {
        transform: rotate(3deg);
    }
}

.popup-hero {
    text-align: center;
    margin-bottom: 32px;
}

.popup-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-title-large {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFB4A8 0%, #E8A5D0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.2;
}

.popup-subtitle-enhanced {
    font-size: 20px;
    color: #666;
    font-weight: 500;
}

.popup-benefits {
    background: linear-gradient(135deg, #FFF5F3 0%, #F8E8F5 100%);
    border-radius: 20px;
    padding: 24px;
    margin: 24px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #FFB4A8 0%, #E8A5D0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-text {
    color: #333;
    font-weight: 500;
}

.popup-discount {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    margin: 24px 0;
    box-shadow: 0 8px 24px rgba(255, 165, 0, 0.3);
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(255, 165, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 165, 0, 0.5);
    }
}

.discount-label {
    display: block;
    color: #8B4513;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.discount-value {
    display: block;
    color: white;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
}

.discount-desc {
    display: block;
    color: #8B4513;
    font-size: 14px;
    font-weight: 500;
}

.popup-form-enhanced {
    margin: 28px 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.popup-submit-large {
    width: 100%;
    padding: 18px 32px;
    font-size: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FFB4A8 0%, #E8A5D0 100%);
    border: none;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(232, 165, 208, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.popup-submit-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(232, 165, 208, 0.5);
}

.popup-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E0E0E0;
    flex-wrap: wrap;
}

.trust-item {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .popup-content-large {
        max-width: 95%;
        margin: 20px auto;
    }

    .popup-content-large .popup-inner {
        padding: 28px 20px;
    }

    .popup-promo-badge {
        top: -12px;
    }

    .badge-text {
        font-size: 12px;
        padding: 6px 18px;
    }

    .popup-icon-large {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }

    .popup-icon-large svg {
        width: 60px;
        height: 60px;
    }

    .popup-title-large {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .popup-subtitle-enhanced {
        font-size: 16px;
    }

    .popup-hero {
        margin-bottom: 20px;
    }

    .popup-benefits {
        padding: 16px;
        margin: 16px 0;
    }

    .benefit-item {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .benefit-icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .popup-discount {
        padding: 16px;
        margin: 16px 0;
    }

    .discount-label {
        font-size: 12px;
    }

    .discount-value {
        font-size: 24px;
    }

    .discount-desc {
        font-size: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 12px;
    }

    .popup-form-enhanced input {
        font-size: 15px;
        padding: 12px 16px;
    }

    .popup-submit-large {
        font-size: 15px;
        padding: 14px 24px;
    }

    .submit-text {
        font-size: 15px;
    }

    .popup-trust {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        margin-top: 16px;
        padding-top: 16px;
    }

    .trust-item {
        font-size: 13px;
    }

    .popup-form-enhanced {
        margin: 20px 0;
    }

    .form-privacy {
        font-size: 11px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .popup-content-large .popup-inner {
        padding: 24px 16px;
    }

    .popup-title-large {
        font-size: 22px;
    }

    .popup-subtitle-enhanced {
        font-size: 15px;
    }

    .benefit-text {
        font-size: 13px;
    }

    .discount-value {
        font-size: 22px;
    }

    .popup-submit-large {
        font-size: 14px;
        padding: 12px 20px;
    }
}
