﻿.product-item {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

    .product-item img {
        width: 100%;
        height: 350px; /* Đặt chiều cao cố định cho hình ảnh */
        object-fit: cover; /* Đảm bảo hình ảnh không bị biến dạng */
        border-radius: 8px;
    }

    .product-item:hover {
        transform: translateY(-10px);
    }

    .product-item .bg-white {
        min-height: 150px; /* Đặt chiều cao tối thiểu cho phần mô tả sản phẩm */
    }

    .product-item h4 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .product-item span {
        font-size: 1rem;
        color: #555;
    }

/*.custom-carousel .carousel-control-prev,
.custom-carousel .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.custom-carousel .carousel-control-prev {
    left: -5%;*/ /* Di chuyển nút Previous ra ngoài */
/*}

.custom-carousel .carousel-control-next {
    right: -5%;*/ /* Di chuyển nút Next ra ngoài */
/*}

.custom-carousel .carousel-control-prev-icon,
.custom-carousel .carousel-control-next-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 5px;
}*/

.custom-hr {
    width: 100%; /* Chiều rộng của thẻ hr */
    margin: 0 auto; /* Giữa màn hình */
    border: 1px solid #88b44e; /* Màu và độ dày của đường kẻ */
    margin-top: 10px; /* Khoảng cách phía trên */
    margin-bottom: 10px; /* Khoảng cách phía dưới */
}