/* Produtos Destaque — homepage (Fama Store) */

.fcf-store {
	--fcf-store-bg: #fff;
	--fcf-store-ink: var(--fcf-blue-900, #051e33);
	--fcf-store-category: #7eb3cc;
	--fcf-store-muted: #b8c5d1;
	--fcf-store-badge-bg: #ffe500;
	--fcf-store-badge-ink: #051e33;
	--fcf-store-discount-bg: #edca57;
	--fcf-store-product-bg: #eef2f6;
	--fcf-store-product-shadow: #dfe6ec;
	--fcf-store-ease: cubic-bezier(0.22, 1, 0.36, 1);
	background: var(--fcf-store-bg);
	color: var(--fcf-store-ink);
	padding: 0 0 clamp(80px, 9.5vh, 120px);
}

.fcf-store__inner {
	width: 100%;
	max-width: none;
	margin: 0;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(20px, 2.5vw, 32px);
	align-items: stretch;
}

.fcf-store__banner {
	position: relative;
	min-height: clamp(320px, 42vw, 520px);
	overflow: hidden;
}

.fcf-store__banner-image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	object-position: center top;
}

.fcf-store__banner-logo {
	display: none;
}

.fcf-store__banner-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: clamp(8px, 1.2vw, 14px);
	padding-block-start: clamp(24px, 4vw, 40px);
	padding-inline-end: clamp(24px, 4vw, 40px);
	padding-block-end: clamp(32px, 5vw, 52px);
	padding-inline-start: clamp(32px, 5vw, 52px);
	pointer-events: none;
}

.fcf-store__badge {
	align-self: flex-start;
	background: var(--fcf-store-discount-bg);
	color: var(--fcf-store-badge-ink);
	font-family: var(--fcf-font-display, "korolev-compressed", sans-serif);
	font-size: clamp(0.75rem, 0.9vw, 0.875rem);
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	padding: 0.45em 0.7em;
	text-transform: uppercase;
}

.fcf-store__title-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: clamp(12px, 3vw, 20px);
	width: 100%;
}

.fcf-store__title-arrow {
	display: none;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	line-height: 0;
}

.fcf-store__title-arrow img {
	display: block;
	width: clamp(36px, 10vw, 44px);
	height: auto;
}

.fcf-store__content {
	min-width: 0;
}

.fcf-store__viewport {
	min-width: 0;
}

.fcf-store__cta {
	display: none;
}

.fcf-store__title {
	margin: 0;
	flex: 1 1 auto;
	min-width: 0;
	color: #fff;
	font-family: var(--fcf-font-display, "korolev-compressed", sans-serif) !important;
	font-size: clamp(3.5rem, 8.5vw, 7.5rem) !important;
	font-weight: 300 !important;
	font-synthesis: none;
	letter-spacing: 0.02em !important;
	line-height: 0.88 !important;
	text-transform: uppercase;
}

.fcf-store__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: clamp(20px, 2.5vw, 32px);
	row-gap: clamp(2.5rem, 5vw, 3.5rem);
	align-content: start;
	align-items: stretch;
	padding-block: clamp(40px, 5vw, 64px);
	padding-inline: clamp(20px, 2.5vw, 32px);
}

@media (min-width: 1000px) {
	.fcf-store__grid {
		padding-inline-start: 0;
		padding-inline-end: clamp(20px, 2.5vw, 32px);
	}
}

.fcf-store__product {
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	isolation: isolate;
	z-index: 0;
	color: inherit;
	text-decoration: none;
	transition:
		transform 0.45s var(--fcf-store-ease),
		z-index 0s;
}

.fcf-store__product:hover,
.fcf-store__product:focus-visible {
	color: inherit;
	z-index: 1;
}

.fcf-store__product:focus-visible {
	outline: 2px solid rgba(5, 30, 51, 0.35);
	outline-offset: 4px;
}

.fcf-store__product-card {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	width: 100%;
	position: relative;
}

.fcf-store__product-media {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	aspect-ratio: 1 / 1;
	width: 100%;
	background: var(--fcf-store-product-bg);
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.fcf-store__product-media::before {
	background: var(--fcf-store-product-shadow);
	content: "";
	inset: clamp(8px, 1.2vw, 12px) calc(-1 * clamp(8px, 1.2vw, 12px)) calc(-1 * clamp(8px, 1.2vw, 12px)) clamp(8px, 1.2vw, 12px);
	position: absolute;
	z-index: -1;
}

.fcf-store__product-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.55s var(--fcf-store-ease);
}

.fcf-store__product-body {
	position: relative;
	z-index: 2;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: clamp(10px, 1.2vw, 14px);
	width: calc(100% - clamp(24px, 6vw, 40px));
	min-height: clamp(7.5rem, 16vw, 9.5rem);
	margin-top: clamp(-5.5rem, -28%, -7.5rem);
	padding: clamp(18px, 2.2vw, 24px) clamp(16px, 2vw, 22px) clamp(20px, 2.4vw, 26px);
	background: #fff;
}

@media (hover: hover) and (pointer: fine) {
	.fcf-store__product:hover,
	.fcf-store__product:focus-visible {
		transform: translateY(-4px);
	}

	.fcf-store__product:hover .fcf-store__product-media img,
	.fcf-store__product:focus-visible .fcf-store__product-media img {
		transform: scale(1.05);
	}
}

.fcf-store__product-category {
	display: block;
	min-height: 1.1em;
	color: var(--fcf-store-category);
	font-family: var(--fcf-font-display, "korolev-compressed", sans-serif);
	font-size: clamp(0.8125rem, 1vw, 0.9375rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.1;
	text-transform: uppercase;
}

.fcf-store__product-title {
	margin: 0 !important;
	flex: 1 1 auto;
	min-height: calc(2 * 0.98em);
	color: var(--fcf-store-ink) !important;
	font-family: var(--fcf-font-display, "korolev-compressed", sans-serif) !important;
	font-size: clamp(1.375rem, 2vw, 1.75rem) !important;
	font-weight: 700 !important;
	font-synthesis: none;
	letter-spacing: 0.01em !important;
	line-height: 0.98 !important;
	text-transform: uppercase;
}

.fcf-store__product-pricing {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.5rem 0.875rem;
	margin-top: auto;
	flex-shrink: 0;
}

.fcf-store__product-price {
	font-family: var(--fcf-font-display, "korolev-compressed", sans-serif);
	line-height: 1;
}

.fcf-store__product-price--regular {
	color: var(--fcf-store-muted);
	font-size: clamp(1rem, 1.2vw, 1.125rem);
	font-weight: 400;
}

.fcf-store__product-price--regular s {
	text-decoration-thickness: 1px;
}

.fcf-store__product-price--sale {
	color: var(--fcf-store-ink);
	font-size: clamp(1.25rem, 1.6vw, 1.5rem);
	font-weight: 700;
}

.fcf-store__product-discount {
	background: var(--fcf-store-discount-bg);
	color: var(--fcf-store-badge-ink);
	font-family: var(--fcf-font-display, "korolev-compressed", sans-serif);
	font-size: clamp(0.75rem, 0.9vw, 0.8125rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	padding: 0.4em 0.55em;
	text-transform: uppercase;
}

.fcf-store--products-only .fcf-store__inner {
	grid-template-columns: 1fr;
}

.fcf-store--products-only .fcf-store__grid {
	max-width: min(100%, 720px);
	margin-inline: auto;
}

@media (max-width: 999px) {
	.fcf-store {
		padding-bottom: clamp(40px, 8vw, 56px);
	}

	.fcf-store__inner {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.fcf-store__banner {
		min-height: clamp(380px, 68vh, 520px);
	}

	.fcf-store__banner-logo {
		display: block;
		position: absolute;
		top: clamp(20px, 5vw, 28px);
		left: clamp(28px, 7vw, 44px);
		width: clamp(42px, 12vw, 53px);
		height: auto;
		z-index: 2;
		pointer-events: none;
	}

	.fcf-store__banner-overlay {
		padding-block-start: clamp(20px, 5vw, 28px);
		padding-inline-end: var(--fcf-site-gutter, max(20px, 6vw));
		padding-block-end: clamp(40px, 9vw, 56px);
		padding-inline-start: clamp(28px, 7vw, 44px);
	}

	.fcf-store__title {
		font-size: clamp(3.25rem, 15vw, 5.75rem) !important;
		font-weight: 300 !important;
		letter-spacing: 0.02em !important;
		line-height: 0.88 !important;
	}

	.fcf-store__title-arrow {
		display: flex;
		margin-bottom: 0.2em;
		pointer-events: auto;
		touch-action: manipulation;
	}

	.fcf-store__title-arrow img {
		transform: scaleX(-1);
	}

	.fcf-store__content {
		background: #fff;
	}

	.fcf-store__viewport {
		overflow-x: auto;
		overflow-y: hidden;
		width: 100%;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-x: contain;
		scrollbar-width: none;
		touch-action: pan-x pan-y pinch-zoom;
	}

	.fcf-store__viewport::-webkit-scrollbar {
		display: none;
	}

	.fcf-store__grid {
		display: flex;
		flex-wrap: nowrap;
		align-content: unset;
		align-items: stretch;
		gap: clamp(12px, 3.5vw, 16px);
		width: max-content;
		min-width: 100%;
		padding: clamp(18px, 4vw, 24px) clamp(20px, 5vw, 28px) clamp(8px, 2vw, 12px);
		row-gap: 0;
	}

	.fcf-store__product {
		flex: 0 0 min(72vw, 280px);
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.fcf-store__product img {
		-webkit-user-drag: none;
		user-select: none;
		-webkit-user-select: none;
	}

	.fcf-store__product-media::before {
		display: none;
	}

	.fcf-store__product-body {
		margin-top: clamp(-4.25rem, -20vw, -5.5rem);
		min-height: clamp(6.75rem, 34vw, 8.5rem);
		width: calc(100% - 18px);
		padding: clamp(14px, 3.5vw, 18px) clamp(12px, 3vw, 16px) clamp(16px, 4vw, 20px);
	}

	.fcf-store__product-title {
		font-size: clamp(1.125rem, 4.8vw, 1.375rem) !important;
		min-height: calc(2 * 0.98em);
	}

	.fcf-store__cta {
		align-items: center;
		border: 2px solid var(--fcf-store-ink);
		box-sizing: border-box;
		color: var(--fcf-store-ink);
		display: flex;
		font-family: var(--fcf-font-display, "korolev-compressed", sans-serif);
		font-size: clamp(0.9375rem, 3.8vw, 1.0625rem);
		font-weight: 700;
		justify-content: center;
		letter-spacing: 0.06em;
		line-height: 1;
		margin: clamp(16px, 4vw, 24px) var(--fcf-site-gutter, max(20px, 6vw)) 0;
		padding: clamp(16px, 4vw, 20px) clamp(20px, 5vw, 28px);
		text-decoration: none;
		text-transform: uppercase;
		transition: background-color 0.2s ease, color 0.2s ease;
		width: calc(100% - 2 * var(--fcf-site-gutter, max(20px, 6vw)));
	}

	.fcf-store__cta:hover,
	.fcf-store__cta:focus-visible {
		background: var(--fcf-store-ink);
		color: #fff;
	}
}

@media (min-width: 1000px) {
	.fcf-store__title-arrow {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fcf-store__product,
	.fcf-store__product-media img {
		transition: none;
	}

	.fcf-store__product:hover,
	.fcf-store__product:focus-visible {
		transform: none;
	}

	.fcf-store__product:hover .fcf-store__product-media img,
	.fcf-store__product:focus-visible .fcf-store__product-media img {
		transform: none;
	}
}
