/* Khối sản phẩm */
.single-shop-product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
  }
  
  .single-shop-product:hover {
    transform: translateY(-5px);
  }
  
  .product-upper img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
  }
  
  /* Tiêu đề sản phẩm */
  .single-shop-product h2 {
    font-size: 16px;
    margin: 10px 0 6px;
    min-height: 44px; /* cố định chiều cao để căn đều */
  }
  
  /* Giá */
  .product-carousel-price {
    margin-bottom: 10px;
  }
  
  /* Nút mua hàng */
  .buy-btn {
    margin-top: auto;
    padding: 8px 15px;
    background-color: #ff5722;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .buy-btn:hover {
    background-color: #e64a19;
  }
  
  .cart-tet-icon {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
}

.cart-tet-icon img {
    width: 100%;
    height: auto;
    display: block;
}
.product-price-box {
    margin-top: 20px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: #d10000;
    margin-bottom: 15px;
}

.product-price span {
    color: #e60000;
}

.product-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-buy-now,
.btn-add-cart-detail {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn-buy-now {
    background-color: #ff6600;
    color: #fff;
}

.btn-buy-now:hover {
    background-color: #cc5200;
}

.btn-add-cart-detail {
    background-color: #00b300;
    color: #fff;
}

.btn-add-cart-detail:hover {
    background-color: #009900;
}

.price-contact {
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
    text-decoration: underline;
}


.product-thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 10px;
    max-width: 100%;
    margin-top: 15px;
}

@media (min-width: 576px) {
    .product-thumbnail-gallery {
        grid-template-columns: repeat(3, 70px); /* 3 cột trên màn nhỏ */
    }
}

@media (min-width: 768px) {
    .product-thumbnail-gallery {
        grid-template-columns: repeat(6, 70px); /* 6 cột trên màn lớn */
    }
}

.thumbnail-image {
    width: 70px;
    /*height: 70px;*/
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.thumbnail-image:hover {
    border-color: #ff6600;
}

