/**
 * ElevateWP - New Product Grid widget styles.
 */

.npg-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.npg-item {
	display: flex;
	flex-direction: column;
}

/* ---- Card ---- */
.npg-card {
	position: relative;
	background-color: #ece9e1;
	border-radius: 10px;
	padding: 24px;
	aspect-ratio: 100 / 92;
	overflow: hidden;
	box-sizing: border-box;
}

/* Whole-card click target. */
.npg-card__link {
	position: absolute;
	inset: 0;
	z-index: 3;
	text-indent: -9999px;
}

/* ---- Brand wordmark ---- */
.npg-card__brand {
	position: relative;
	z-index: 1;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: -0.01em;
	line-height: 1;
	color: #1a1a1a;
	margin-bottom: 18px;
}

.npg-card__brand-dot {
	color: #c08a3e;
}

/* ---- Compounds / CAS ---- */
.npg-card__compounds {
	position: relative;
	z-index: 1;
	max-width: 70%;
}

.npg-compound {
	margin-bottom: 12px;
}

.npg-compound__name {
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
}

.npg-compound__cas {
	display: block;
	font-size: 12px;
	line-height: 1.4;
	color: #9a958b;
	margin-top: 2px;
}

.npg-card__compounds--fallback {
	font-size: 13px;
	color: #6f6a61;
}

.npg-card__compounds--fallback p {
	margin: 0 0 6px;
}

/* ---- Bottle (product image) ---- */
.npg-card__bottle {
	position: absolute;
	right: 18px;
	bottom: 14px;
	width: 38%;
	max-width: 150px;
	z-index: 2;
	line-height: 0;
}

.npg-card__bottle img {
	width: 100%;
	height: auto;
	display: block;
}

/* ---- Disclaimer ---- */
.npg-card__disclaimer {
	position: absolute;
	left: 24px;
	bottom: 18px;
	z-index: 1;
	font-size: 11px;
	color: #a39e94;
	max-width: 55%;
	line-height: 1.3;
}

/* ---- Meta below card ---- */
.npg-meta {
	padding: 14px 2px 0;
}

.npg-title {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
}

.npg-title a {
	color: #1a1a1a;
	text-decoration: none;
}

.npg-title a:hover {
	text-decoration: underline;
}

.npg-wishlist {
	flex: 0 0 auto;
	line-height: 1;
}

.npg-wishlist a {
	color: #b9b4aa;
	font-size: 16px;
	text-decoration: none;
}

.npg-wishlist a:hover,
.npg-wishlist a.added {
	color: #c08a3e;
}

.npg-price {
	font-size: 14px;
	color: #9a958b;
}

.npg-price .amount,
.npg-price del,
.npg-price ins {
	color: inherit;
	text-decoration: none;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.npg-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.npg-grid {
		grid-template-columns: 1fr;
	}
}
