/* ===== CARD SẢN PHẨM ===== */
.product-small.box {
	background: var(--color-white);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	height: 100%;
}

.product-small.box:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgb(6 104 203 / 38%);
}

/* ===== ẢNH SẢN PHẨM ===== */
.product-small.box .box-image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 12px;
}

/* ===== NỘI DUNG ===== */
.product-small.box .box-text {
	padding: 16px;
}

/* TÊN SẢN PHẨM */
.product-small.box .product-title a {
	font-size: 15px;
	font-weight: 600;
	color: var(--color-black);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 3em;
}

/* Hover card thì đổi màu chữ */
.product-small.box:hover .product-title a {
    color: var(--Navy-Blue);
}

/* GIÁ */
.product-small.box .price {
	margin: 8px 0 14px;
	display: block;
}

.product-small.box .price bdi {
	font-size: 18px;
	font-weight: 700;
	color: var(--Navy-Blue);
}

/* ===== NÚT THÊM VÀO GIỎ ===== */
.product-small.box .btn-add-cart-custom {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--Navy-Blue);
	color: var(--color-white);
	font-weight: 600;
	font-size: 14px;
	padding: 12px 14px;
	border-radius: 999px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.product-small.box .btn-add-cart-custom i {
	font-size: 14px;
}

.product-small.box .btn-add-cart-custom:hover {
	transform: scale(1.03);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
	.product-small.box .product-title a {
		font-size: 14px;
	}

	.product-small.box .price bdi {
		font-size: 16px;
	}

	.product-small.box .btn-add-cart-custom {
		font-size: 11px;
		padding: 10px 12px;
	}
}
