/* Single product — contact buttons (thay Add to cart) */
.hck-product-contact-wrap {
	margin: 20px 0 8px;
}

.hck-product-contact__title {
	margin: 0 0 14px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--fs-color-secondary, #f7d322);
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--fs-color-primary, #002d72);
	line-height: 1.3;
}

.hck-product-contact {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
}

.hck-product-contact__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 12px 14px;
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none !important;
	text-align: center;
	color: #fff !important;
	border: 2px solid transparent;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	box-shadow: 0 8px 22px rgba(0, 45, 114, 0.12);
}

.hck-product-contact__btn:hover {
	transform: translateY(-2px);
	color: #fff !important;
}

.hck-product-contact__icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.hck-product-contact__icon-img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	display: block;
	border-radius: 0;
	box-shadow: none;
}

.hck-product-contact__label {
	line-height: 1.2;
}

.hck-product-contact__btn--zalo {
	background: #0068ff;
	border-color: #0068ff;
}

.hck-product-contact__btn--zalo:hover {
	background: #0056d6;
	box-shadow: 0 12px 28px rgba(0, 104, 255, 0.28);
}

.hck-product-contact__btn--messenger {
	background: #0084ff;
	border-color: #0084ff;
}

.hck-product-contact__btn--messenger:hover {
	background: #006fd6;
	box-shadow: 0 12px 28px rgba(0, 132, 255, 0.28);
}

.hck-product-contact__btn--phone {
	background: var(--fs-color-primary, #002d72);
	border-color: var(--fs-color-primary, #002d72);
}

.hck-product-contact__btn--phone:hover {
	background: #001a45;
	box-shadow: 0 12px 28px rgba(0, 45, 114, 0.28);
}

/* Ẩn form giỏ hàng nếu theme vẫn render */
.single-product form.cart .single_add_to_cart_button,
.single-product form.cart .quantity,
.single-product .sticky-add-to-cart {
	display: none !important;
}

@media (max-width: 767px) {
	.hck-product-contact {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.hck-product-contact {
		grid-template-columns: 1fr 1fr;
	}

	.hck-product-contact__btn--phone {
		grid-column: 1 / -1;
	}
}
