.product-sale03 {
    padding: 0;
    margin-bottom: 50px;
}

.product-sale03-inner {
    background: #ED6C3A;
    /* Vibrant orange from design */
    padding: 20px;
    border-radius: 4px;
}

.product-sale03-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.sale03-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

.sale03-countdown {
    background: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.sale03-countdown .cd-number span {
    color: #EF4444;
    /* Red numbers */
    font-size: 24px;
    font-weight: 700;
}

.sale03-countdown .cd-text {
    color: #EF4444;
    font-size: 11px;
    font-weight: 600;
    margin-left: 2px;
}

.sale03-countdown .cd-colon {
    color: #EF4444;
    font-size: 20px;
    font-weight: 700;
    margin: 0 4px;
}

/* Slider Customizations */
.product-sale03-slider .slick-list {
    margin: 0 -8px;
}

.flash03-product-card {
    padding: 0 8px;
}

.flash03-product-card .product-item {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.flash03-product-card .product-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.flash03-product-card .discount-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #FF4D4F;
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.flash03-product-card .product-image {
    aspect-ratio: 1/1;
    position: relative;
    padding-top: calc((4 / 3) * 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.flash03-product-card .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.5s ease;
    height: 100%;
    width: 100%;
}

.flash03-product-card .product-item:hover .product-image img {
    transform: scale(1.05);
}

.flash03-product-card .product-name {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* Added for standard compatibility */
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
    font-weight: 500;
}

.flash03-product-card .product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.flash03-product-card .product-name a:hover {
    color: #ED6C3A;
}

.flash03-product-card .price-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.flash03-product-card .curr-price {
    font-size: 15px;
    font-weight: 700;
    color: #FF4D4F;
}

.flash03-product-card .old-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

.flash03-product-card .sold-box {
    margin-top: auto;
}

.flash03-product-card .progress-bar {
    height: 18px;
    background: #FAD2D2;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.flash03-product-card .progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #FF4D4F;
    border-radius: 20px;
}

.flash03-product-card .fire-icon {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    z-index: 2;
}

.flash03-product-card .progress-text {
    position: relative;
    z-index: 2;
    font-size: 10px;
    color: #fff;
    font-weight: 600;
    padding-left: 14px;
}

/* Media Queries */
@media (max-width: 767px) {
    .product-sale03-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .sale03-countdown {
        padding: 5px 12px;
    }

    .sale03-countdown .cd-number span {
        font-size: 18px;
    }

    .sale03-countdown .cd-colon {
        font-size: 16px;
    }

    .flash03-product-card .curr-price {
        font-size: 14px;
    }

    .flash03-product-card .progress-bar {
        height: 16px;
    }

    .flash03-product-card .progress-text {
        font-size: 9px;
    }
}