﻿/* ==== Home Products Section ==== */
.home-products-section {
    padding: 80px 20px;
    background: #1A1A1A;
    font-family: "Montserrat", sans-serif;
    color: #fff;
}

/* ==== Container (giới hạn đúng 1170px như Offer) ==== */
.home-products-container {
    max-width: 1170px;
    margin: 0 auto;
    text-align: center;
}

/* ==== Title ==== */
.home-products-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #fff;
}

.home-products-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #ccc;
}

/* ==== Carousel Wrapper ==== */
.home-products-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

/* ==== Track: dùng min-width để JS không lỗi ==== */
.home-products-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* ==== Card ==== */
.home-products-card {
    min-width: calc(33.333% - 20px); /* chính xác 3 card */
    margin-right: 20px;
    background: #2a2a2a;
    border: 2px solid #D4A017;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.15);
    cursor: pointer;
    text-align: center;
    transition: 0.3s ease;
}

    .home-products-card:last-child {
        margin-right: 0; /* tránh dư khoảng trắng cuối */
    }

    .home-products-card img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .home-products-card h3 {
        font-size: 1rem;
        font-weight: 600;
        color: #D4A017;
        margin: 0;
    }

    .home-products-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(212, 160, 23, 0.25);
        border-color: #FFD700;
    }

/* ==== Navigation Buttons ==== */
.home-products-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #D4A017;
    color: #111;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(212,160,23,0.4);
    transition: all 0.3s ease;
    z-index: 5;
}

    .home-products-btn:hover {
        background: #b98a13;
        color: #fff;
        transform: translateY(-50%) scale(1.1);
    }

    .home-products-btn.prev {
        left: 15px;
    }

    .home-products-btn.next {
        right: 15px;
    }

/* ==== Tablet ==== */
@media (max-width: 1024px) {
    .home-products-card {
        min-width: calc(50% - 20px);
    }
}

/* ==== Mobile ==== */
@media (max-width: 600px) {
    .home-products-card {
        min-width: 100%;
    }

    .home-products-title {
        font-size: 1.8rem;
    }

    .home-products-subtitle {
        font-size: 0.95rem;
    }

    .home-products-btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
}
