/* ==============================
PRODUCT CARDS
============================== */

.hk-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	width: 100%;
}

.hk-product-card {
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--hk-line);
	border-radius: 10px;
	box-shadow: var(--hk-shadow);
}

.hk-product-card__image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f5f7f8;
}

.hk-product-card__image img,
.hk-product-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hk-product-placeholder {
	background: linear-gradient(135deg, #edf1f4, #fafbfc);
}


/* ==============================
PRODUCT BODY
============================== */

.hk-product-card__body {
	padding: 0;
	text-align: left;
}


/* ==============================
MOLECULE
============================== */

.hk-product-card__molecule {
	margin: 12px 10px 0;
	color: #1e1f21;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
}


/* ==============================
PRODUCT TITLE
============================== */

.hk-product-card h3.hk-product-card__title {
	margin: 12px 10px 0;
	color: var(--hk-navy-deep);
	font-size: 24px;
	font-weight: 800;
	line-height: 1.35;
	text-align: left;
}

/* Molecule hoy to title eni immediately niche */
.hk-product-card__molecule + .hk-product-card__title {
	margin-top: 3px;
}


/* ==============================
PRODUCT PRICE
============================== */

.hk-product-card__price {
	margin: 8px 10px 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	color: #111;
	text-align: left;
}

.hk-product-card__price span {
	color: #111;
	font-size: 16px;
	font-weight: 500;
}

.hk-product-card__price strong {
	margin-left: 4px;
	color: #36b82a;
	font-size: 18px;
	font-weight: 800;
}

/* ==============================
PRODUCT CARD OFFER
============================== */
.hk-product-card__offer {
	margin: 4px 10px 0;
	font-size: 16px;
	font-weight: 500;
	color: #111;
	text-align: left;
}

.hk-product-card__offer strong {
	color: #c10808;
	font-weight: 800;
}

/* ==============================
BUY NOW BUTTON
============================== */

.hk-buy-button {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-top: 12px;
	margin-bottom: 12px;
	margin-left: auto;
	margin-right: auto;
	width: calc(100% - 24px);
	box-sizing: border-box;
	padding: 6px 24px 8px 20px;
	border-radius: 12px;
	background: #c10808;
	color: #fff !important;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
}

.hk-buy-button:hover,
.hk-buy-button:focus {
	color: #fff;
	text-decoration: none;
}


/* ==============================
FULL PRODUCT CARD CLICKABLE
============================== */

.hk-product-card__full-link {
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
}


/* ==============================
INLINE PRODUCT SECTION
============================== */

.hk-inline-products {
	margin: 36px 0;
}


/* ==============================
TABLET
2 CARDS
============================== */

@media (max-width: 960px) {

	.hk-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

}


/* ==============================
MOBILE
1 CARD
============================== */

@media (max-width: 640px) {

	.hk-product-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

}
/* ==============================
 Blink
============================== */
.hk-product-card__offer strong {
	display: inline-block;
	margin-left: 4px;
	padding: 2px 8px;
	border-radius: 6px;
	background: #eaf8e6;
	color: #c10808;
	font-weight: 800;
	animation: hk-offer-pulse 1.8s ease-in-out infinite;
}

@keyframes hk-offer-pulse {
	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.06);
	}
}