.wpt-flash-sale-section {
    margin: 0;
}

.wpt-flash-sale-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.wpt-flash-sale-image {
    flex-shrink: 0;
    width: 400px;
    margin-top: -93px;
}

.wpt-flash-sale-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wpt-flash-sale-content {
    flex: 1;
    min-width: 0;
}

.wpt-flash-sale-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.wpt-flash-sale-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.wpt-flash-icon {
    width: 36px;
    height: 36px;
    animation: flash-pulse 2s ease-in-out infinite;
}

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

.wpt-flash-sale-countdown {
    display: flex;
    gap: 11px;
    align-items: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    background: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.countdown-value {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.countdown-label {
    font-size: 12px;
    color: #666;
    margin-top: 0;
    line-height: 12px;
}

.countdown-separator {
    font-size: 21px;
    font-weight: 700;
    color: #333;
    padding: 0;
    display: flex;
    align-items: center;
}

.wpt-flash-sale-slider {
    position: relative;
    padding: 10px 0 50px 0;
    overflow: hidden;
}

.wpt-flash-sale-swiper {
    overflow: hidden;
}

.wpt-flash-sale-swiper .swiper-wrapper {
    padding: 10px 0;
}

.wpt-flash-sale-swiper .swiper-button-next,
.wpt-flash-sale-swiper .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.wpt-flash-sale-swiper .swiper-button-next:after,
.wpt-flash-sale-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700;
}

.wpt-flash-sale-swiper .swiper-button-next:hover,
.wpt-flash-sale-swiper .swiper-button-prev:hover {
    background: #fff;
    transform: scale(1.1);
}

.wpt-flash-sale-swiper .swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.wpt-flash-sale-swiper .swiper-pagination {
    position: relative;
    bottom: auto;
    margin-top: 20px;
}

.wpt-flash-sale-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.wpt-flash-sale-swiper .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 5px;
}



.wpt-flash-sale-product:hover .product-image img {
    transform: scale(1.05);
}



@media (max-width: 768px) {
    .wpt-flash-sale-section {
        margin: 0;
        overflow: hidden;
    }

    .wpt-flash-sale-container {
        flex-direction: column;
    }

    .wpt-flash-sale-image {
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px 0;
    }

    .wpt-flash-sale-content {
        width: 100%;
        overflow: hidden;
    }

    .wpt-flash-sale-slider {
        width: 100%;
        overflow: hidden;
    }

    .wpt-flash-sale-header {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .wpt-flash-sale-title {
        font-size: 20px;
        flex-shrink: 0;
    }

    .wpt-flash-sale-countdown {
        gap: 8px;
    }

    .wpt-flash-icon {
        width: 28px;
        height: 28px;
    }

    .countdown-value {
        font-size: 18px;
    }

    .countdown-item {
        min-width: 45px;
        padding: 6px 8px;
    }

    .countdown-label {
        font-size: 10px;
    }

    .countdown-separator {
        font-size: 18px;
    }

    .wpt-flash-sale-swiper .swiper-button-next,
    .wpt-flash-sale-swiper .swiper-button-prev {
        display: none;
    }
}
