/* JeElementor Promo Banner Styles */

.jepb-banner {
    width: 100%;
    box-sizing: border-box;
}

.jepb-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Left Content */
.jepb-left {
    flex: 1;
    min-width: 300px;
}

/* Badge */
.jepb-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.jepb-badge-icon {
    font-size: 14px;
}

/* Title */
.jepb-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.jepb-title-part1 {
    font-style: normal;
}

.jepb-title-part2 {
    font-style: normal;
}

/* Description */
.jepb-description {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.jepb-description p {
    margin: 0;
}

/* Right Content */
.jepb-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Countdown */
.jepb-countdown {
    display: flex;
    align-items: center;
    gap: 15px;
}

.jepb-countdown-label {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.jepb-countdown-boxes {
    display: flex;
    gap: 8px;
}

.jepb-countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    min-width: 60px;
    text-align: center;
}

.jepb-countdown-number {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.jepb-countdown-unit {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Buttons */
.jepb-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.jepb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.jepb-button2 {
    border: 2px solid;
}

.jepb-button:hover {
    transform: translateY(-2px);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .jepb-content {
        gap: 20px;
    }
    
    .jepb-right {
        gap: 15px;
    }
    
    .jepb-countdown {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .jepb-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .jepb-left {
        min-width: 100%;
    }
    
    .jepb-badge {
        justify-content: center;
    }
    
    .jepb-right {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }
    
    .jepb-countdown {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .jepb-countdown-boxes {
        justify-content: center;
    }
    
    .jepb-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .jepb-button {
        width: 100%;
        justify-content: center;
    }
    
    .jepb-title {
        font-size: 24px;
    }
    
    .jepb-countdown-box {
        min-width: 50px;
        padding: 6px 10px;
    }
    
    .jepb-countdown-number {
        font-size: 20px;
    }
}
