.flash-sale-container {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.flash-sale-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.flash-sale-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.sale-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #dc3545;
    color: white;
    padding: 5px 15px;
    font-weight: bold;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.flash-sale-progress {
    height: 12px;
    border-radius: 10px;
    background-color: #e9ecef;
}

.timer-box {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 8px;
    font-family: "Courier New", Courier, monospace;
    font-size: 1.1rem;
    color: #0d6efd;
}

.flash-sale-card .product-image-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #fff;
}

.flash-sale-card .product-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
