/* Fast Moving Section */
.fast-moving-section {
    padding: 20px 0 20px 0;
    background-color: #F2F4F7;
    overflow: hidden;
}

.fast-moving-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #D5D5D5;
    position: relative;
}

.fast-moving-section .section-header::after {
    content: '';
    position: absolute;
    bottom: -0.5px;
    left: 0;
    width: 5%;
    height: 1.5px;
    background-color: #212529;
}

.fast-moving-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1D2939;
    margin: 0;
}

.fast-moving-section .view-all {
    font-size: 12px;
    font-weight: 700;
    color: #344054;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fast-moving-section .view-all:hover {
    color: #2D7A4D;
}

.fast-moving-section .view-all span {
    margin-left: 4px;
}

.fast-moving-section .arrow-right {
    margin-left: 8px;
    height: 10px;
    object-fit: contain;
}

/* Products Carousel */
.fast-moving-section .products-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-right: -60vw;
    padding-right: 60vw;
}

.fast-moving-section .products-carousel::-webkit-scrollbar {
    display: none;
}

.fast-moving-section .products-wrapper {
    display: flex;
    gap: 20px;
    min-width: min-content;
    padding: 0;
    margin-right: 0;
}

/* Product Card */
.fast-moving-section .product-card {
    flex: 0 0 250px;
    background-color: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fast-moving-section .product-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.fast-moving-section .product-image {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fast-moving-section .product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.fast-moving-section .discount-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #288CCB, #49A644);
    color: white;
    padding: 4px 10px;
    border-radius: 4px 0 4px 0;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.fast-moving-section .product-slider {
    position: relative;
}

.fast-moving-section .slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fast-moving-section .slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fast-moving-section .slider-image.active {
    opacity: 1;
    z-index: 5;
}

.fast-moving-section .slider-dots {
    position: absolute;
    bottom: 10px;
    left: 30px;
    display: flex;
    gap: 6px;
    z-index: 10;
}

.fast-moving-section .slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #D0D5DD;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.fast-moving-section .slider-dots .dot.active {
    background-color: #FFCB3B;
}

.fast-moving-section .product-info {
    padding: 16px;
    position: relative;
    border-top: 1px solid #D0D5DD;
}

.fast-moving-section .product-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1D2939;
    margin-bottom: 5px;
    line-height: 1.4;
    min-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fast-moving-section .product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.fast-moving-section .stars {
    display: flex;
    gap: 2px;
}

.fast-moving-section .star {
    font-size: 2vh;
    color: #FFCB3B;
}

.fast-moving-section .star.empty {
    color: #E4E7EC;
}

.fast-moving-section .review-count {
    font-size: 12px;
    color: #475467;
}

.fast-moving-section .product-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 5px;
}

.fast-moving-section .original-price {
    font-size: 14px;
    font-weight: 500;
    color: #667085;
    text-decoration: line-through;
}

.fast-moving-section .sale-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    color: #F23434;
}

.fast-moving-section .sale-price .currency {
    font-size: 20px;
    font-weight: 500;
}

.fast-moving-section .sale-price .price-amount {
    font-size: 25px;
    font-weight: 700;
}

.fast-moving-section .add-to-cart {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    border: 1px solid #E4E7EC;
    background-color: #E4E7EC;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fast-moving-section .add-to-cart:hover {
    background-color: rgb(103, 105, 107);
}

.fast-moving-section .add-to-cart img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.fast-moving-section .add-to-cart:hover img {
    filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .fast-moving-section {
        padding: 40px 0 40px 40px;
    }

    .fast-moving-section .section-header {
        margin-bottom: 30px;
    }

    .fast-moving-section .section-header h2 {
        font-size: 24px;
    }

    .fast-moving-section .view-all {
        font-size: 13px;
    }

    .fast-moving-section .product-card {
        flex: 0 0 180px;
    }

    .fast-moving-section .product-image {
        height: 180px;
    }

    .fast-moving-section .product-info {
        padding: 12px;
    }

    .fast-moving-section .product-info h3 {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .fast-moving-section {
        padding: 30px 0 30px 30px;
    }

    .fast-moving-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 25px;
    }

    .fast-moving-section .section-header h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .fast-moving-section .view-all {
        font-size: 12px;
    }

    .fast-moving-section .product-card {
        flex: 0 0 160px;
    }

    .fast-moving-section .product-image {
        height: 160px;
    }

    .fast-moving-section .product-info {
        padding: 10px;
    }

    .fast-moving-section .product-info h3 {
        font-size: 11px;
        min-height: 30px;
    }

    .fast-moving-section .product-price {
        margin-bottom: 12px;
    }

    .fast-moving-section .sale-price {
        font-size: 14px;
    }

    .fast-moving-section .add-to-cart {
        width: 36px;
        height: 36px;
    }

    .fast-moving-section .add-to-cart img {
        width: 18px;
        height: 18px;
    }
}
