/* --- Sidebar Cart --- */
.sidebar-cart-box {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    text-align: center;
}

.cart-title {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.cart-empty-state {
    margin-bottom: 30px;
}

.cart-icon svg {
    margin-bottom: 10px;
    opacity: 0.3;
}

.cart-text {
    color: #999;
    font-size: 14px;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* FIX XUNG ĐỘT: Thêm .cart-actions vào trước để tăng độ ưu tiên */
.cart-actions .btn-outline-cart {
    border: 1px solid #333 !important;
    color: #333 !important;
    background-color: transparent;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    display: block;
    width: 100%;
}

.cart-actions .btn-outline-cart:hover {
    background: #f5f5f5;
    color: #000 !important;
}

/* FIX XUNG ĐỘT: Tương tự cho nút thanh toán */
.cart-actions .btn-solid-cart {
    background: #666 !important;
    color: #fff !important;
    border: 1px solid #666;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    display: block;
    width: 100%;
}

.cart-actions .btn-solid-cart:hover {
    background: #444 !important;
    border-color: #444;
}

/* --- Product List Header --- */
.category-title {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}
/* --- Product List Header --- */
.category-title-mobile {
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    margin-botom: 10px;
}

.fs-14 {
    font-size: 14px;
}

/* --- Product Grid --- */
.product-grid {
    display: grid;
    /* Grid 3 cột như hình mẫu */
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* --- Product Card --- */
.product-card {
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 20px;
    background: #fff;
    transition: box-shadow 0.3s, border-color 0.3s; /* Thêm hiệu ứng viền */
    position: relative;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-color: #bfa288; /* Đổi màu viền sang vàng nâu khi hover */
}

.product-img-wrap {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
}

.product-img {
    max-height: 160px;
    max-width: 160px;
    width: auto;
    height: auto;
    
    /* Đảm bảo ảnh luôn hiển thị trọn vẹn */
    object-fit: contain; 
    object-position: center;
}

/* BỎ HIỆU ỨNG ZOOM KHI HOVER ĐỂ KHÔNG BỊ MẤT HÌNH */
.product-card:hover .product-img {
    /* transform: scale(1.05);  <-- XÓA hoặc COMMENT dòng này */
    transform: none;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.product-sub {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
    height: 18px;
    overflow: hidden;
}

/* --- Price & Action Button (MỚI) --- */
.price-action-wrap {
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
}

.product-price {
    font-family:'Roboto', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

/* Nút Thêm vào giỏ hàng */
.btn-add-to-cart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 0;
    background: linear-gradient(to bottom, #3e1515 0%, #0f0505 100%);
    
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.btn-add-to-cart:hover {
    background: linear-gradient(to bottom, #5c1e1e 0%, #1a0a0a 100%);
    color: #fff;
}

/* --- Hiệu ứng Hover Card --- */
.product-card:hover .product-price {
    opacity: 0;
    transform: translateY(-10px);
}

.product-card:hover .btn-add-to-cart {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- Product Links (remove underline) --- */
.product-title-link,
.product-img-link {
    text-decoration: none;
    color: inherit;
}

.product-title-link:hover,
.product-img-link:hover {
    text-decoration: none;
    color: inherit;
}

.text-muted-mobile{
    display: block;
    text-align: center;
    margin: 10px 0;

}

/* --- Responsive --- */
@media (min-width: 1200px) {
    .category-title-mobile{ 
        display: none;
    }

    .text-muted-mobile{
        display: none;
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 2, 1fr;
        gap: 10px;
    }

    .category-cart-sidebar{
        display: none;
    }

    .text-muted{
        display: none;
    }
    .category-title{
        display: none;
    }
    
    .btn-add-to-cart {
        font-size: 13px;
    }

    .product-img-wrap{
        padding: 50px;
    }

    .product-img{
        max-height: 100%;
        max-width: 100%;
    }
}
