.navbar {
    background-color: #3b2314; 
}
  
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: 56px;
    padding: 0 1.5rem;
}
  
.logo {
    font-family: "Raleway", sans-serif; 
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}
  
.nav-menu {
    font-family: "Raleway", sans-serif;
    display: flex;
    align-items: center;
    list-style: none;
}
  
.nav-menu a {
    display: block;
    color: #e0cfc5;
    text-decoration: none;
    font-size: 0.88rem;
    padding: 0 1rem;
    line-height: 56px;
    transition: color 0.2s;
}
  
.nav-menu a:hover { 
    color: #fff; 
}
  
.nav-menu a.active {
    color: #fff;
    border-bottom: 2px solid #c8956c; /* gạch chân */
}
.cart-icon {
    position: relative;
    font-size: 1.1rem;
}
  
.cart-count {
    background: #c0392b;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 4px;
}
.main-section{
   position: relative;
   background-color: #f8f6f0; 
   padding: 60px 0; 
}
/* Lưới sản phẩm: 4 cột trên Desktop */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Thẻ sản phẩm */
.product-card {
    background-color: #fff;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/* Nhãn giảm giá màu đỏ đô */
.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #8d494a; /* Màu đỏ đô giống trong hình */
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

/* Khu vực ảnh */
.product-image {
    width: 100%;
    aspect-ratio: 1 / 1; /* Ép ảnh luôn vuông góc */
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05); /* Zoom nhẹ ảnh khi hover */
}

/* Thông tin sản phẩm */
.product-info {
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Đẩy giá và nút xuống đáy nếu tên sản phẩm ngắn */
}

.brand-name {
    font-size: 11px;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-family: sans-serif;
}

.product-title a{
    text-decoration: none;
    font-size: 14px;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
    font-family: sans-serif;
}

/* Khu vực giá cả */
.price-box {
    margin-top: auto; /* Luôn ép giá nằm ở dưới cùng */
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.current-price {
    color: #8d494a;
    font-weight: bold;
    font-size: 16px;
}

.old-price {
    color: #aaa;
    font-size: 13px;
    text-decoration: line-through; /* Gạch ngang giá cũ */
}

/* Nút thêm vào giỏ hàng (+) */
.add-to-cart-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background-color: #8d494a;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.add-to-cart-btn:hover {
    background-color: #6a3536; /* Đậm hơn khi hover */
}
.footer{
    background: #3e2723; 
    color: #fff; 
    padding: 55px 0; 
    text-align: center;
}
/* --- Responsive (Cho điện thoại & Tablet) --- */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 cột cho máy tính bảng */
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cột cho điện thoại */
        gap: 15px;
    }
    .product-info {
        padding: 15px;
    }
}