/* Research Stacks + GLP-1 Compare */

.nuvu-stacks {
	background: #f7f8fb;
	padding: 2.5rem 0 3.5rem;
}

.nuvu-stacks__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	margin-bottom: 2rem;
	font-size: 0.88rem;
	color: #64748b;
}

.nuvu-stacks__trust span {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.nuvu-stacks__trust span::before {
	content: "";
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--nuvu-blue);
}

.nuvu-stacks__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.nuvu-stack-card {
	background: #fff;
	border: 1px solid var(--nuvu-border);
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 8px 30px rgba(10, 33, 99, 0.05);
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.nuvu-stack-card:hover {
	border-color: rgba(31, 111, 235, 0.28);
	box-shadow: 0 16px 40px rgba(10, 33, 99, 0.1);
}

.nuvu-stack-card__media {
	position: relative;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.75rem 1.25rem;
}

.nuvu-stack-card.is-healing .nuvu-stack-card__media { background: #f0fdf4; }
.nuvu-stack-card.is-gh .nuvu-stack-card__media { background: #fffbeb; }
.nuvu-stack-card.is-longevity .nuvu-stack-card__media { background: #f0fdfa; }
.nuvu-stack-card.is-skin .nuvu-stack-card__media { background: #fff1f2; }
.nuvu-stack-card.is-sexual .nuvu-stack-card__media { background: #fff5f5; }
.nuvu-stack-card.is-cognitive .nuvu-stack-card__media { background: #faf5ff; }
.nuvu-stack-card.is-glp .nuvu-stack-card__media { background: #eef2ff; }

.nuvu-stack-card__media img {
	max-height: 150px;
	width: auto;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.nuvu-stack-card:hover .nuvu-stack-card__media img {
	transform: scale(1.04);
}

.nuvu-stack-card__badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--nuvu-navy);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	z-index: 1;
}

.nuvu-stack-card__save {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(255, 255, 255, 0.92);
	color: #15803d;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
	border: 1px solid #bbf7d0;
	z-index: 1;
}

.nuvu-stack-card__body {
	padding: 1.35rem 1.4rem 1.4rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.nuvu-stack-card__cat {
	margin: 0 0 0.35rem;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.nuvu-stack-card.is-healing .nuvu-stack-card__cat { color: #059669; }
.nuvu-stack-card.is-gh .nuvu-stack-card__cat { color: #d97706; }
.nuvu-stack-card.is-longevity .nuvu-stack-card__cat { color: #0d9488; }
.nuvu-stack-card.is-skin .nuvu-stack-card__cat { color: #e11d48; }
.nuvu-stack-card.is-sexual .nuvu-stack-card__cat { color: #c0152a; }
.nuvu-stack-card.is-cognitive .nuvu-stack-card__cat { color: #7c3aed; }
.nuvu-stack-card.is-glp .nuvu-stack-card__cat { color: #0a2163; }

.nuvu-stack-card__title {
	margin: 0 0 0.25rem;
	font-family: var(--nuvu-font-serif);
	font-size: 1.55rem;
	font-weight: 600;
	color: var(--nuvu-navy);
}

.nuvu-stack-card__tagline {
	margin: 0 0 0.75rem;
	font-size: 0.9rem;
	font-style: italic;
	font-weight: 500;
	color: var(--nuvu-blue);
}

.nuvu-stack-card__desc {
	margin: 0 0 1rem;
	font-size: 0.9rem;
	line-height: 1.6;
	color: #64748b;
	flex: 1;
}

.nuvu-stack-card__includes-label {
	margin: 0 0 0.5rem;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #94a3b8;
}

.nuvu-stack-card__includes ul {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}

.nuvu-stack-card__includes li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	padding: 0.35rem 0;
}

.nuvu-stack-card__item-name {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.9rem;
	font-weight: 550;
	color: var(--nuvu-navy);
}

.nuvu-stack-card__item-name small {
	font-size: 0.75rem;
	font-weight: 400;
	color: #94a3b8;
}

.nuvu-stack-card__dot {
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 50%;
	background: var(--nuvu-blue);
}

.nuvu-stack-card__item-price {
	font-size: 0.78rem;
	color: #94a3b8;
	text-decoration: line-through;
}

.nuvu-stack-card__note {
	margin-bottom: 1.1rem;
	padding: 0.85rem 0.95rem;
	background: #eef2ff;
	border: 1px solid rgba(31, 111, 235, 0.12);
	border-radius: 12px;
	font-size: 0.8rem;
	line-height: 1.55;
	color: rgba(10, 33, 99, 0.75);
}

.nuvu-stack-card__note strong {
	color: var(--nuvu-blue);
}

.nuvu-stack-card__pricing {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 1rem;
}

.nuvu-stack-card__price-label {
	margin: 0 0 0.15rem;
	font-size: 0.75rem;
	color: #94a3b8;
}

.nuvu-stack-card__price {
	margin: 0;
	font-family: var(--nuvu-font-serif);
	font-size: 2rem;
	font-weight: 700;
	color: var(--nuvu-navy);
	line-height: 1;
}

.nuvu-stack-card__pricing-right {
	text-align: right;
}

.nuvu-stack-card__retail {
	margin: 0;
	font-size: 0.78rem;
	color: #94a3b8;
	text-decoration: line-through;
}

.nuvu-stack-card__savings {
	margin: 0.15rem 0 0;
	font-size: 0.88rem;
	font-weight: 700;
	color: #16a34a;
}

.nuvu-stack-card__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.95rem 1rem;
	border-radius: 14px;
	background: var(--nuvu-navy);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s ease;
}

.nuvu-stack-card__cta:hover {
	background: var(--nuvu-blue);
	color: #fff;
	text-decoration: none;
}

.nuvu-stack-card__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem 0.9rem;
	list-style: none;
	margin: 0.85rem 0 0;
	padding: 0;
}

.nuvu-stack-card__links a {
	font-size: 0.78rem;
	color: var(--nuvu-blue);
	text-decoration: none;
}

.nuvu-stack-card__links a:hover {
	text-decoration: underline;
}

.nuvu-stacks__legal {
	margin: 2.5rem auto 0;
	max-width: 48rem;
	text-align: center;
	padding: 1.25rem 1.5rem;
	background: #fff;
	border: 1px solid var(--nuvu-border);
	border-radius: 14px;
	font-size: 0.78rem;
	line-height: 1.6;
	color: #94a3b8;
}

/* GLP Compare */
.nuvu-glp {
	background: #fff;
	padding: 2.5rem 0 3.5rem;
}

.nuvu-glp__table-wrap {
	overflow-x: auto;
	border: 1px solid var(--nuvu-border);
	border-radius: 16px;
	box-shadow: var(--nuvu-shadow);
}

.nuvu-glp__table {
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.nuvu-glp__table th,
.nuvu-glp__table td {
	padding: 1rem 0.9rem;
	text-align: center;
	vertical-align: middle;
	border-bottom: 1px solid #f1f5f9;
}

.nuvu-glp__table thead th {
	background: #f8fafc;
}

.nuvu-glp__table thead th:first-child,
.nuvu-glp__table tbody th {
	text-align: left;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
	width: 9rem;
}

.nuvu-glp__table tbody tr:nth-child(even) {
	background: #fcfcfd;
}

.nuvu-glp__badge {
	display: inline-block;
	margin-bottom: 0.45rem;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	font-size: 0.62rem;
	font-weight: 700;
	color: #fff;
}

.nuvu-glp__badge.is-navy { background: var(--nuvu-navy); }
.nuvu-glp__badge.is-amber { background: #f59e0b; }
.nuvu-glp__badge.is-purple { background: #9333ea; }
.nuvu-glp__badge.is-teal { background: #0d9488; }
.nuvu-glp__badge.is-green { background: #16a34a; }

.nuvu-glp__name {
	display: block;
	font-family: var(--nuvu-font-serif);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--nuvu-navy);
}

.nuvu-glp__table td {
	color: #475569;
	line-height: 1.45;
}

.nuvu-glp__from {
	font-family: var(--nuvu-font-serif);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--nuvu-navy);
}

.nuvu-glp__price-row th,
.nuvu-glp__price-row td {
	background: #f8fafc;
}

.nuvu-glp__link {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--nuvu-blue);
	text-decoration: none;
}

.nuvu-glp__link:hover {
	text-decoration: underline;
}

.nuvu-glp__disclaimer {
	margin: 1.5rem 0 0;
	text-align: center;
	font-size: 0.78rem;
	color: #94a3b8;
	line-height: 1.55;
}

@media (max-width: 1100px) {
	.nuvu-stacks__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 720px) {
	.nuvu-stacks__grid {
		grid-template-columns: 1fr;
	}
}

/* Shop / Home product cards */
.nuvu-shop,
.nuvu-home-products {
	background: #f7f8fb;
	padding: 2.75rem 0 3.5rem;
}

.nuvu-home-products__head {
	text-align: center;
	margin-bottom: 2rem;
}

.nuvu-home-products__eyebrow {
	margin: 0 0 0.4rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nuvu-blue);
}

.nuvu-home-products__title {
	margin: 0 0 0.5rem;
	font-family: var(--nuvu-font-serif);
	font-size: clamp(1.7rem, 3vw, 2.2rem);
	color: var(--nuvu-navy);
}

.nuvu-home-products__sub {
	margin: 0 auto;
	max-width: 36rem;
	color: #64748b;
}

.nuvu-home-products__cta {
	margin: 2rem 0 0;
	text-align: center;
}

.nuvu-shop__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.nuvu-shop-card {
	background: #fff;
	border: 1px solid var(--nuvu-border);
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--nuvu-shadow);
}

.nuvu-shop-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 160px;
	background: #eef2ff;
	position: relative;
	text-decoration: none;
}

.nuvu-shop-card__media img {
	max-height: 140px;
	width: auto;
	object-fit: contain;
}

.nuvu-shop-card__placeholder {
	font-family: var(--nuvu-font-serif);
	font-size: 2.5rem;
	color: var(--nuvu-navy);
}

.nuvu-shop-card__badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	background: var(--nuvu-navy);
	color: #fff;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.25rem 0.5rem;
	border-radius: 999px;
}

.nuvu-shop-card__body {
	padding: 1rem 1.1rem 1.2rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.nuvu-shop-card__title {
	margin: 0 0 0.25rem;
	font-size: 1.05rem;
	color: var(--nuvu-navy);
}

.nuvu-shop-card__title a {
	color: inherit;
	text-decoration: none;
}

.nuvu-shop-card__size {
	margin: 0 0 0.5rem;
	font-size: 0.8rem;
	color: #94a3b8;
}

.nuvu-shop-card__price {
	margin: 0 0 0.85rem;
	font-weight: 700;
	color: var(--nuvu-navy);
}

.nuvu-shop-card__btn {
	margin-top: auto;
	text-align: center;
	width: 100%;
}

.nuvu-shop__empty,
.nuvu-stacks__empty,
.nuvu-glp__empty {
	padding: 2rem;
	text-align: center;
	background: #fff;
	border: 1px dashed var(--nuvu-border);
	border-radius: 12px;
	color: #64748b;
}

@media (max-width: 1100px) {
	.nuvu-shop__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 800px) {
	.nuvu-shop__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 520px) {
	.nuvu-shop__grid {
		grid-template-columns: 1fr;
	}
}
