/* ============================================================
   Card sản phẩm DÙNG CHUNG (.aq-product-item) — chuẩn e-commerce chuyển đổi cao.
   Áp cho: trang Cửa hàng, trang Danh mục, "Sản phẩm tương tự"... (mọi nơi dùng _ProductCard).
   ============================================================ */
.aq-product-item.aq-product-main {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s ease, border-color .28s ease;
}
.aq-product-item.aq-product-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(17, 17, 17, .10);
    border-color: #e8e8e8;
}

/* Khu ảnh: vuông, lấp đầy, zoom nhẹ + đổi ảnh hover */
.aq-product-item .aq-product-thumb {
    position: relative;
    margin-bottom: 0 !important;
    border-radius: 0;
    overflow: hidden;
    background: #f6f6f6;
    aspect-ratio: 1 / 1;
}
.aq-product-item .aq-product-thumb > a { display: block; width: 100%; height: 100%; }
.aq-product-item .aq-product-img,
.aq-product-item .aq-img-hover {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: opacity .35s ease, transform .5s ease;
}
.aq-product-item .aq-img-hover { position: absolute; inset: 0; opacity: 0; }
.aq-product-item:hover .aq-img-hover { opacity: 1; }
.aq-product-item:hover .aq-product-img { transform: scale(1.05); }

/* Badge: -% giảm (đỏ) / Mới (xanh) góc trái trên */
.aq-product-item .aq-product-badge {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}
.aq-product-item .aq-product-badge span {
    display: inline-block; font-size: 12px; font-weight: 800; line-height: 1.5; letter-spacing: .2px;
    padding: 4px 10px; border-radius: 999px; color: #fff;
}
.aq-product-item .aq-product-badge .clr-sale { background: #e11d2a; }
.aq-product-item .aq-product-badge .clr-new { background: #16a34a; }

/* Nội dung */
.aq-product-item .aq-product-content { padding: 16px 16px 18px; }
.aq-product-item .aq-product-title {
    font-size: 15px; line-height: 1.45; font-weight: 600; margin: 0 0 8px; min-height: 2.9em;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.aq-product-item .aq-product-title a { color: #1a1a1a; transition: color .15s ease; }
.aq-product-item .aq-product-title a:hover { color: #e11d2a; }
/* Tag/nhãn màu của sản phẩm (tag group_code = "label") — pill tô màu theo cấu hình tag.
   Đặt TRÊN tên; luôn chừa chiều cao 1 hàng tag (min-height) để card không/có tag đều
   giữ tên & giá cùng vị trí. */
.aq-product-item .aq-product-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; min-height: 20px; margin: 0 0 8px; }
.aq-product-item .aq-product-tag {
    display: inline-block; font-size: 11px; font-weight: 700; line-height: 1.4; letter-spacing: .2px;
    padding: 2px 9px; border-radius: 999px; color: #fff; background: #6b7280; white-space: nowrap;
}
/* Mobile căn giữa cho khớp .text-center của card; từ md trở lên căn trái theo .text-md-start. */
@media (max-width: 767px) { .aq-product-item .aq-product-tags { justify-content: center; } }

.aq-product-item .aq-product-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.aq-product-item .aq-product-new-price { font-size: 19px; font-weight: 800; color: #e11d2a; line-height: 1.1; }
.aq-product-item .aq-product-old-price { font-size: 14px; font-weight: 500; color: #9a9a9a; text-decoration: line-through; }

/* Khoảng cách lưới đều (thay vì dựa vào margin-bottom của card) */
.aq-grid-layout { row-gap: 25px; }
.aq-grid-layout .aq-product-item.aq-product-main { margin-bottom: 0; }
