.yt-flashsale-wrapper {
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(255, 107, 0, .4);
}

.flashsale-countdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #fff
}

.flashsale-countdown-title {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    justify-content: start;
}

.flashsale-title {
    font-size: 2.5rem;
    color: #FFF;
    margin-bottom: 0;
    line-height: 1;
}

#yt-countdown {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 3px
}

.flashsale-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap
}

.tab-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all .3s;
    font-size: 14px;
    margin: 0;
}

.tab-btn.active,
.tab-btn:hover {
    background: #fff;
    color: #ff6b35;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3)
}


.flash-sale-info {
    display: flex;
    align-items: center;
    position: relative;
    background-color: #e5e5e5;
    border-radius: 10px;
    height: 15px;
    margin: 10px 0;
    justify-content: center;
    font-size: 12px;
    font-weight: 400;
}

.flash-sale-info img {
    max-width: 20px;
    height: auto;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.flash-sale-info span {
    background: linear-gradient(90deg, #ffecb3 0%, #ffb200 100%);
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 100%;
    border-radius: 10px;

}

.flash-sale-info strong {
    position: relative;
    z-index: 10;
}


@media(max-width:768px) {
    .flashsale-countdown-title {
        flex-wrap: wrap;
    }

    .flashsale-title {
        width: 100%;
        font-size: 1.4rem;
    }

    #yt-countdown {
        font-size: 14px;
        padding: 1px 10px;
    }
}