.jmv-loja {
	--jmv-blue: #2f78ad;
	--jmv-blue-dark: #1f557d;
	--jmv-ink: #182333;
	--jmv-muted: #607083;
	--jmv-line: #dbe6ef;
	--jmv-soft: #f4f8fb;
	--jmv-bg: #ffffff;
	--jmv-white: #ffffff;
	font-family: inherit;
	margin: 0 auto;
	padding: 56px 20px;
	background: var(--jmv-bg);
	color: var(--jmv-ink);
}

.jmv-loja,
.jmv-loja * {
	box-sizing: border-box;
}

.jmv-loja--destaques {
	background: var(--jmv-soft);
}

.jmv-loja__inner {
	max-width: 1120px;
	margin: 0 auto;
}

.jmv-loja__header {
	max-width: 760px;
	margin: 0 auto 32px;
	text-align: center;
}

.jmv-loja__eyebrow {
	margin: 0 0 8px;
	color: var(--jmv-blue);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.jmv-loja__title {
	margin: 0;
	color: var(--jmv-ink);
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 800;
	line-height: 1.1;
}

.jmv-loja__subtitle {
	margin: 16px auto 0;
	max-width: 680px;
	color: var(--jmv-muted);
	font-size: 18px;
	line-height: 1.55;
}

.jmv-loja__main-button,
.jmv-loja__secondary-button,
.jmv-loja-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border-radius: 6px;
	background: var(--jmv-blue);
	color: var(--jmv-white);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 160ms ease, transform 160ms ease;
}

.jmv-loja__main-button {
	margin-top: 22px;
}

.jmv-loja__main-button:hover,
.jmv-loja__secondary-button:hover,
.jmv-loja-card__button:hover {
	background: var(--jmv-blue-dark);
	color: var(--jmv-white);
	transform: translateY(-1px);
}

.jmv-loja__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
}

.jmv-loja-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--jmv-line);
	border-radius: 8px;
	background: var(--jmv-white);
	box-shadow: 0 12px 32px rgba(24, 35, 51, 0.08);
}

.jmv-loja-card__media {
	position: relative;
	aspect-ratio: 1 / 1;
	background: #e8f0f6;
}

.jmv-loja-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jmv-loja-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--jmv-blue);
	font-size: 42px;
	font-weight: 900;
}

.jmv-loja-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
}

.jmv-loja-card__terms {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.jmv-loja-card__terms span {
	display: inline-flex;
	padding: 5px 8px;
	border-radius: 999px;
	background: #e8f3fb;
	color: var(--jmv-blue-dark);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.jmv-loja-card__title {
	margin: 0;
	color: var(--jmv-ink);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
}

.jmv-loja-card__description {
	margin: 0;
	color: var(--jmv-muted);
	font-size: 15px;
	line-height: 1.5;
}

.jmv-loja-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
}

.jmv-loja-card__price {
	color: var(--jmv-blue-dark);
	font-size: 21px;
	line-height: 1.1;
}

.jmv-loja-card__stock {
	color: var(--jmv-muted);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.jmv-loja-card__stock--esgotado {
	color: #a13b3b;
}

.jmv-loja-card__button {
	width: 100%;
	margin-top: 4px;
}

.jmv-loja-card__button--disabled,
.jmv-loja-card__button--disabled:hover {
	background: #9aa7b5;
	color: var(--jmv-white);
	cursor: not-allowed;
	transform: none;
}

.jmv-loja__empty {
	max-width: 720px;
	margin: 0 auto;
	padding: 28px;
	border: 1px dashed var(--jmv-line);
	border-radius: 8px;
	background: var(--jmv-soft);
	color: var(--jmv-muted);
	text-align: center;
}

.jmv-loja__footer {
	margin-top: 30px;
	text-align: center;
}

@media (max-width: 900px) {
	.jmv-loja__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.jmv-loja {
		padding: 40px 16px;
	}

	.jmv-loja__header {
		margin-bottom: 24px;
		text-align: left;
	}

	.jmv-loja__subtitle {
		font-size: 16px;
	}

	.jmv-loja__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.jmv-loja__main-button,
	.jmv-loja__secondary-button,
	.jmv-loja-card__button {
		width: 100%;
	}
}
