/* ========== Global at-rules ========== */
@keyframes scroll-bounce {
	0%, 100% { transform: translateY(0); opacity: 0.95; }
	50% { transform: translateY(10px); opacity: 0.55; }
}

/* === Success animation overlay ===
 * Shared between /pagamento (card approval) and /pos-compra (PIX approval).
 * Fullscreen overlay with a gold ring + animated checkmark + gold sparks. */
.success-burst-overlay {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: grid;
	place-items: center;
	background: rgb(20 15 10 / 0.55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	animation: sbo-fade 0.28s ease-out;
}

.success-burst-overlay.is-leaving {
	animation: sbo-fade-out 0.32s ease-in forwards;
}

.success-burst-card {
	position: relative;
	padding: 40px 44px 34px;
	background: #ffffff;
	border-radius: 24px;
	box-shadow: 0 30px 80px rgb(20 15 10 / 0.30), 0 0 0 1px rgb(201 168 76 / 0.20);
	text-align: center;
	max-width: 360px;
	animation: sbo-card-in 0.5s cubic-bezier(0.22, 1.2, 0.36, 1);
}

.success-burst-ring {
	position: relative;
	width: 88px;
	height: 88px;
	margin: 0 auto 16px;
	border-radius: 999px;
	background: linear-gradient(135deg, #c9a84c 0%, #f3d98a 100%);
	display: grid;
	place-items: center;
	color: #ffffff;
	box-shadow: 0 10px 28px rgb(201 168 76 / 0.42);
	animation: sbo-ring-pop 0.55s cubic-bezier(0.22, 1.2, 0.36, 1);
}

.success-burst-ring::before {
	content: "";
	position: absolute;
	inset: -8px;
	border-radius: 999px;
	border: 2px solid rgb(201 168 76 / 0.45);
	animation: sbo-ring-pulse 1.4s ease-out;
}

.success-burst-ring svg {
	width: 54px;
	height: 54px;
}

.success-burst-check-path {
	stroke-dasharray: 56;
	stroke-dashoffset: 56;
	animation: sbo-check-draw 0.42s 0.22s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.success-burst-title {
	margin: 4px 0 4px;
	font-family: "Playfair Display", serif;
	font-size: 22px;
	font-weight: 800;
	color: #1a1a1a;
}

.success-burst-sub {
	margin: 0;
	font-size: 13.5px;
	color: #6f5c4b;
	line-height: 1.5;
}

.success-burst-sparks {
	position: absolute;
	top: 66px;
	left: 50%;
	width: 0;
	height: 0;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.success-burst-sparks span {
	position: absolute;
	top: 0;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: #c9a84c;
	opacity: 0;
	animation: sbo-spark 0.8s 0.25s ease-out forwards;
}

.success-burst-sparks span:nth-child(1) { --sx: -60px; --sy: -78px; background: #c9a84c; }
.success-burst-sparks span:nth-child(2) { --sx:  60px; --sy: -78px; background: #f3d98a; animation-delay: 0.30s; }
.success-burst-sparks span:nth-child(3) { --sx: -96px; --sy: -10px; background: #c9a84c; animation-delay: 0.35s; }
.success-burst-sparks span:nth-child(4) { --sx:  96px; --sy: -10px; background: #f3d98a; animation-delay: 0.22s; }
.success-burst-sparks span:nth-child(5) { --sx: -78px; --sy:  60px; background: #c9a84c; animation-delay: 0.32s; }
.success-burst-sparks span:nth-child(6) { --sx:  78px; --sy:  60px; background: #f3d98a; animation-delay: 0.28s; }
.success-burst-sparks span:nth-child(7) { --sx: -20px; --sy: -110px; background: #f3d98a; animation-delay: 0.40s; }
.success-burst-sparks span:nth-child(8) { --sx:  20px; --sy: -110px; background: #c9a84c; animation-delay: 0.38s; }

@keyframes sbo-fade       { from { opacity: 0; } to { opacity: 1; } }
@keyframes sbo-fade-out   { from { opacity: 1; } to { opacity: 0; } }
@keyframes sbo-card-in    {
	from { opacity: 0; transform: translateY(18px) scale(0.92); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes sbo-ring-pop   {
	0%   { transform: scale(0); }
	60%  { transform: scale(1.08); }
	100% { transform: scale(1); }
}
@keyframes sbo-ring-pulse {
	0%   { transform: scale(0.8); opacity: 0.9; }
	100% { transform: scale(1.6); opacity: 0; }
}
@keyframes sbo-check-draw { from { stroke-dashoffset: 56; } to { stroke-dashoffset: 0; } }
@keyframes sbo-spark      {
	0%   { opacity: 0; transform: translate(0, 0) scale(0.3); }
	20%  { opacity: 1; }
	100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
	.success-burst-overlay, .success-burst-card, .success-burst-ring,
	.success-burst-check-path, .success-burst-sparks span {
		animation: none !important;
	}
	.success-burst-check-path { stroke-dashoffset: 0; }
}

/* ========== Base ========== */
:root {
	--background: #0D0D0D;
	--background-rgb: 13 13 13;
	--foreground: #F2F2F2;
	--card: #141414;
	--card-rgb: 20 20 20;
	--card-foreground: #F2F2F2;
	--popover: #141414;
	--popover-foreground: #F2F2F2;
	--primary: #DFB857;
	--primary-rgb: 223 184 87;
	--primary-foreground: #0D0D0D;
	--secondary: #262626;
	--secondary-foreground: #F2F2F2;
	--muted: #666666;
	--muted-foreground: #A6A6A6;
	--accent: #DFB857;
	--accent-foreground: #0D0D0D;
	--destructive: #EF4343;
	--destructive-foreground: #FAFAFA;
	--border: #333333;
	--input: #333333;
	--ring: #DFB857;
	--ring-rgb: 223 184 87;
	--radius: 0.5rem;
	--container: 1280px;
	--header-height: 80px;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}

[hidden]{
	display:none !important;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	min-height: 100vh;
	background: var(--background);
	color: var(--foreground);
	font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	line-height: 1.5;
	/* `overflow-x: hidden` faria o body virar scroll container e quebraria
	   `position: sticky` no .site-header-stack. `clip` esconde overflow
	   horizontal sem criar scroll context. iOS 16+ / Chrome 90+. */
	overflow-x: clip;
}
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 16px;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.icon {
	width: 24px;
	height: 24px;
}
.icon-16 {
	width: 16px;
	height: 16px;
}
.icon-20 {
	width: 20px;
	height: 20px;
}
.icon-24 {
	width: 24px;
	height: 24px;
}
.icon-32 {
	width: 32px;
	height: 32px;
}
.icon-close {
	display: none;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 9999px;
	padding: 12px 24px;
	font-weight: 500;
	letter-spacing: 0.02em;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
	user-select: none;
}
.btn-sm {
	padding: 10px 18px;
	font-size: 13px;
}
.btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgb(var(--ring-rgb) / 0.35);
}
.btn-gold {
	background: var(--primary);
	color: var(--primary-foreground);
	border: 2px solid var(--primary);
}
.btn-gold:hover {
	background: rgb(var(--primary-rgb) / 0.9);
	border-color: rgb(var(--primary-rgb) / 0.9);
	transform: translateY(-1px);
}
.btn-outline-gold {
	background: transparent;
	color: var(--primary);
	border: 2px solid var(--primary);
}
.btn-outline-gold:hover {
	background: rgb(var(--primary-rgb) / 0.10);
	transform: translateY(-1px);
}
.icon-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none !important;
	background: transparent;
	color: var(--foreground);
	padding: 8px;
	border-radius: 9999px;
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease;
}
.icon-btn:hover {
	color: var(--primary);
	background: rgb(var(--primary-rgb) / 0.08);
}
.badge {
	position: absolute;
	top: -2px;
	right: -2px;
	min-width: 18px;
	height: 14px;
	padding: 0 5px;
	border-radius: 9999px;
	background: var(--primary);
	color: var(--primary-foreground);
	font-size: 11px;
	line-height: 18px;
	font-weight: 600;
	text-align: center;
}
.reveal {
	opacity: 0;
	transform: translateY(30px);
}
.reveal.reveal--visible {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 650ms ease, transform 650ms ease;
}
body.cart-open {
	overflow: hidden;
}
body.modal-open {
	overflow: hidden;
}
body.cart-open .cart-overlay {
	opacity: 1;
	pointer-events: auto;
}
body.cart-open .cart-drawer {
	transform: translateX(0);
}
.toast-container {
	position: fixed;
	right: 20px;
	top: 20px;
	/* Deve ficar acima de qualquer modal/overlay (conta usa z-index: 9999) */
	z-index: 20000;
	display: grid;
	gap: 10px;
	justify-items: end;
	pointer-events: none;
}
.toast {
	min-width: 240px;
	max-width: min(360px, calc(100vw - 40px));
	padding: 14px 16px;
	border-radius: 14px;
	border: 1px solid var(--border);
	background: rgb(var(--background-rgb) / 0.92);
	color: var(--foreground);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
	opacity: 0;
	transform: translateY(-16px);
	transition: opacity 220ms ease, transform 220ms ease;
	pointer-events: auto;
	cursor: pointer;
}
.toast--show {
	opacity: 1;
	transform: translateY(0);
}
.toast--success {
	border-color: rgb(var(--primary-rgb) / 0.35);
}
.toast--error {
	border-color: rgb(239 67 67 / 0.6);
}

/* Click-to-copy feedback: briefly pulse + flip to primary-colored border.
 * `--copied` class is added by showToast() after the text lands on the
 * clipboard and cleared after ~1.5s. */
.toast--copied {
	animation: toast-copy-pulse 260ms ease;
	border-color: rgb(var(--primary-rgb) / 0.85);
	box-shadow: 0 0 0 3px rgb(var(--primary-rgb) / 0.18), 0 18px 42px rgba(0, 0, 0, 0.35);
}

.toast--copied::after {
	content: "Copiado!";
	margin-left: 10px;
	padding: 2px 8px;
	border-radius: 999px;
	background: rgb(var(--primary-rgb) / 0.18);
	color: var(--primary);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	vertical-align: middle;
}

@keyframes toast-copy-pulse {
	0% { transform: translateY(0) scale(1); }
	40% { transform: translateY(0) scale(1.03); }
	100% { transform: translateY(0) scale(1); }
}

/* ========== Header ========== */
.site-header.is-open .icon-menu {
	display: none;
}
.site-header.is-open .icon-close {
	display: inline-block;
}
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 50;
	background: rgb(var(--background-rgb) / 0.95);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	padding: 10px 0;
}
.brand-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.brand-logo img {
	width: 65px;
	height: 65px;
	border-radius: 9999px;
	object-fit: cover;
}
.nav-desktop {
	display: none;
	align-items: center;
	gap: 24px;
}
.nav-link {
	position: relative;
	padding: 8px 10px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-weight: 500;
	color: var(--foreground);
	opacity: 0.95;
	transition: color 180ms ease, opacity 180ms ease;
}
.nav-link::after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 2px;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), rgb(var(--primary-rgb) / 0.70));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
	border-radius: 9999px;
}
.nav-link:hover {
	color: var(--primary);
}
.nav-link:hover::after {
	transform: scaleX(1);
}
.header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}
.menu-toggle {
	display: inline-flex;
}
.nav-mobile {
	border-top: 1px solid var(--border);
	background: var(--background);
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	pointer-events: none;
	transition: max-height 260ms ease, opacity 260ms ease;
}
.site-header.is-open .nav-mobile {
	max-height: 420px;
	opacity: 1;
	pointer-events: auto;
}
.nav-mobile-inner {
	padding: 16px 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.nav-mobile .nav-link {
	font-size: 12px;
	padding: 10px 12px;
	border-radius: 10px;
}
.nav-mobile .nav-link::after {
	display: none;
}
.nav-mobile .nav-link:hover {
	background: rgb(var(--primary-rgb) / 0.08);
}
.header-inner {
	height: var(--header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.header-search-wrap {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-width: 780px;
	margin: 0 18px;
}
.header-search {
	gap: 10px;
	max-width: 760px;
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
	margin: 0;
}
.header-search-input {
	width: 100%;
	height: 44px;
	border-radius: 14px;
	border: 1px solid rgb(var(--primary-rgb) / 0.18);
	background: rgb(var(--background-rgb) / 0.28);
	color: var(--foreground);
	padding: 0 104px 0 14px;
	outline: none;
}
.header-search-input::placeholder {
	color: rgb(242 242 242 / 0.55);
}
.header-search-input:focus {
	border-color: rgb(var(--primary-rgb) / 0.55);
	box-shadow: 0 0 0 4px rgb(var(--primary-rgb) / 0.12);
}
.header-search-btn {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	width: 55px;
	height: 34px;
	border-radius: 10px;
	border: 1px solid rgb(var(--primary-rgb) / 0.22);
	background: rgb(var(--primary-rgb) / 0.90);
	color: var(--primary-foreground);
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: transform 160ms ease, filter 160ms ease;
}
.header-search-btn:hover {
	filter: brightness(1.05);
}
.header-search-btn:active {
	transform: translateY(-50%) scale(0.98);
}
.header-categories {
	display: flex;
	gap: 14px;
	flex-wrap: nowrap;
	overflow: auto;
	padding: 0 2px 2px;
	scrollbar-width: none;
}
.header-categories::-webkit-scrollbar {
	display: none;
}
.header-cat-link {
	color: rgb(242 242 242 / 0.70);
	text-decoration: none;
	font-size: 13px;
	white-space: nowrap;
	transition: color 160ms ease;
}
.header-cat-link:hover {
	color: var(--primary);
}
.site-header .header-actions .icon-20{
	width: 24px;
	height: 24px;
}

@media (min-width: 768px) {
	.nav-desktop {
			display: flex;
	}
	.menu-toggle {
			display: none;
	}
}

@media (max-width: 720px) {
	.header-search {
			max-width: none;
			margin: 0 10px;
	}
	.header-search-wrap {
			max-width: none;
			margin: 0 10px;
	}
}

/* ========== Hero ========== */
.hero-section {
	position: relative;
	min-height: 100vh;
	padding-top: var(--header-height);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		var(--background),
		var(--background),
		var(--card)
	);
	z-index: 0;
}
.hero-deco {
	position: absolute;
	border-radius: 9999px;
	filter: blur(48px);
	pointer-events: none;
	z-index: 0;
}
.hero-deco.deco-1 {
	width: 384px;
	height: 384px;
	background: rgb(var(--primary-rgb) / 0.05);
	top: -120px;
	left: -120px;
}
.hero-deco.deco-2 {
	width: 384px;
	height: 384px;
	background: rgb(var(--primary-rgb) / 0.03);
	bottom: -120px;
	right: -120px;
}
.hero-deco.deco-3 {
	width: 512px;
	height: 512px;
	background: rgb(var(--primary-rgb) / 0.02);
	top: 25%;
	left: 50%;
	transform: translateX(-50%);
}
.hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 900px;
	padding: 0 0 80px;
}
.hero-kicker {
	display: inline-block;
	margin-bottom: 24px;
	font-size: 12px;
	letter-spacing: 0.30em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--primary);
}
.hero-title {
	font-family: "Playfair Display", serif;
	font-weight: 800;
	margin: 0;
	line-height: 1.05;
	letter-spacing: -0.02em;
	font-size: 48px;
	display: flex;
	justify-content: center;
	gap: 16px;
}
.hero-title .gold-gradient {
	background: linear-gradient(90deg, var(--primary), rgb(var(--primary-rgb) / 0.70));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero-subtitle {
	margin: 24px auto 0;
	max-width: 820px;
	font-size: 18px;
	color: var(--muted-foreground);
}
.hero-cta {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}
.scroll-indicator {
	position: absolute;
	left: 50%;
	bottom: 40px;
	transform: translateX(-50%);
	opacity: 0.65;
	z-index: 1;
}
.scroll-mouse {
	width: 28px;
	height: 44px;
	border: 2px solid rgb(var(--primary-rgb) / 0.35);
	border-radius: 9999px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 8px;
}
.scroll-wheel {
	width: 6px;
	height: 6px;
	border-radius: 9999px;
	background: var(--primary);
	animation: scroll-bounce 1100ms ease-in-out infinite;
}

@media (min-width: 768px) {
	.hero-title {
			font-size: 72px;
	}
	.hero-subtitle {
			font-size: 20px;
	}
}

@media (min-width: 1024px) {
	.hero-title {
			font-size: 96px;
	}
}

/* ========== Features ========== */
.features-section {
	background: var(--card);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 40px 0;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px 24px;
}
.feature {
	text-align: center;
}
.feature-icon {
	width: 50px;
	height: 50px;
	border-radius: 16px;
	background: rgb(var(--primary-rgb) / 0.10);
	display: grid;
	place-items: center;
	margin: 0 auto 16px;
	color: var(--primary);
}
.feature-title {
	margin: 0;
	font-weight: 600;
	font-size: 16px;
}
.feature-text {
	margin: 8px auto 0;
	max-width: 240px;
	font-size: 14px;
	color: var(--muted-foreground);
}

@media (min-width: 768px) {
	.features-grid {
			grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* ========== Categories ========== */
.categories-section {
	background: var(--card);
}
.categories-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.category-card {
	position: relative;
	aspect-ratio: 3 / 4;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--background);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
}
.category-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 260ms ease;
}
.category-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgb(var(--background-rgb) / 0.85),
		rgb(var(--background-rgb) / 0.35),
		transparent
	);
	transition: background 260ms ease;
}
.category-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 24px;
	z-index: 2;
}
.category-title {
	margin: 0;
	font-family: "Playfair Display", serif;
	font-size: 22px;
	font-weight: 700;
}
.category-count {
	margin: 6px 0 0;
	color: var(--muted-foreground);
	font-size: 14px;
}
.category-card:hover img {
	transform: scale(1.05);
}
.category-card:hover .category-overlay {
	background: linear-gradient(
		to top,
		rgb(var(--background-rgb) / 0.92),
		rgb(var(--background-rgb) / 0.45),
		transparent
	);
}

@media (min-width: 1024px) {
	.categories-grid {
			grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* ========== Products ========== */
.products-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
.product-card {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--card);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
	transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.product-card[data-href] {
	cursor: pointer;
}
.product-card[data-href]:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgb(var(--ring-rgb) / 0.35), 0 16px 32px rgba(0, 0, 0, 0.22);
}
.product-card:hover {
	transform: translateY(-4px);
	border-color: rgb(var(--primary-rgb) / 0.40);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.30);
}
.product-media {
	position: relative;
	height: clamp(220px, 34vw, 340px);
	overflow: hidden;
	background: var(--background);
}
.product-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}
.product-card:hover .product-media img {
	transform: scale(1.05);
}
.product-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	background: rgb(var(--primary-rgb) / 0.90);
	color: var(--primary-foreground);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	padding: 6px 10px;
	border-radius: 9999px;
}
.product-actions {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: rgb(var(--background-rgb) / 0.60);
	opacity: 0;
	z-index: 2;
	transition: opacity 220ms ease;
}
.product-card:hover .product-actions {
	opacity: 1;
}
.product-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
}
.product-cta {
	margin-top: 16px;
}
.product-cta .btn {
	width: 100%;
}
.product-category {
	display: block;
	font-size: 12px;
	letter-spacing: 0.20em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--primary);
}
.product-name {
	margin: 8px 0 0;
	font-family: "Playfair Display", serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--foreground);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.product-prices {
	margin-top: 14px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.products-more {
	margin-top: 48px;
	text-align: center;
}

@media (min-width: 640px) {
	.products-grid {
			grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.products-grid {
			grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* ========== Cart ========== */
.cart-overlay {
	position: fixed;
	inset: 0;
	background: rgb(var(--background-rgb) / 0.60);
	opacity: 0;
	pointer-events: none;
	transition: opacity 260ms ease;
	z-index: 80;
}
.cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: min(420px, 92vw);
	background: var(--card);
	border-left: 1px solid var(--border);
	transform: translateX(105%);
	transition: transform 260ms ease;
	z-index: 90;
	display: flex;
	flex-direction: column;
}
.cart-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 18px 14px;
	border-bottom: 1px solid var(--border);
}
.cart-title {
	margin: 0;
	font-family: "Playfair Display", serif;
	font-size: 22px;
	font-weight: 700;
}
.cart-empty {
	padding: 22px 8px;
	text-align: center;
	color: var(--muted-foreground);
}
.cart-item {
	display: grid;
	grid-template-columns: 28px 72px 1fr;
	align-items: center;
	gap: 14px;
	padding: 14px 6px;
	border-bottom: 1px solid var(--border);
	background: transparent;
	border-radius: 0;
	height: auto;
}
.cart-item.cart-item--invalid {
	grid-template-columns: 72px 1fr;
}
.cart-item.cart-item.cart-item--invalid .cart-item-details {
	grid-column: 2 / 3;
	min-width: 0;
}
.cart-item-info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}
.cart-item-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}
.cart-item-text {
	min-width: 0;
}
.cart-item-name {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--foreground);
	line-height: 1.25;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.cart-item-meta {
	margin: 0;
	font-size: 12px;
	color: var(--muted-foreground);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.cart-item-remove {
	border: 1px solid var(--border);
	background: transparent;
	color: var(--muted-foreground);
	width: 28px !important;
	height: 28px !important;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}
.cart-item-remove:hover {
	transform: translateY(-1px);
	color: var(--primary);
	border-color: rgb(var(--primary-rgb) / 0.35);
	background: rgb(var(--primary-rgb) / 0.08);
}
.cart-item-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
}
.qty-control {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--border);
	border-radius: 9999px;
	padding: 6px 10px;
	background: rgb(var(--background-rgb) / 0.35);
}
.qty-btn {
	border: none;
	background: transparent;
	color: var(--foreground);
	cursor: pointer;
	width: 28px;
	height: 28px;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 180ms ease, color 180ms ease;
}
.qty-btn:hover {
	color: var(--primary);
	background: rgb(var(--primary-rgb) / 0.08);
}
.qty-value {
	min-width: 18px;
	text-align: center;
	font-weight: 700;
	font-size: 13px;
}
.cart-item-price {
	font-weight: 800;
	color: var(--primary);
	white-space: nowrap;
}
.cart-footer {
	padding: 16px 18px 18px;
	border-top: 1px solid var(--border);
	display: grid;
	gap: 12px;
}
.cart-select-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.cart-selected-meta {
	color: var(--muted-foreground);
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
}
.cart-select-all .check-label {
	font-size: 13px;
	color: var(--muted-foreground);
}
.cart-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--foreground);
}
.cart-summary strong {
	font-size: 18px;
	color: var(--primary);
}
.cart-checkout,
.cart-clear {
	width: 100%;
}
.cart-item-select {
	display: flex;
	align-items: center;
	justify-content: center;
}
.cart-item-check {
	display: inline-flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 6px;
	width: 20px;
	height: 20px;
	accent-color: var(--primary);
}
.cart-item-content {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.cart-item-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.cart-item-unit {
	font-weight: 800;
	color: var(--accent-foreground);
	white-space: nowrap;
}
.cart-item-image {
	width: 72px;
	height: 72px;
	border-radius: 12px;
	object-fit: cover;
	background: var(--background);
}
.cart-item-details {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.cart-item-qty {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.cart-item-row {
	display: grid;
	grid-template-columns: 1fr auto;
	column-gap: 14px;
	align-items: center;
	min-width: 0;
}
.cart-item-info-col {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.cart-item-link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.cart-item-link:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 3px;
	border-radius: 12px;
}
.cart-invalid-section {
	margin-top: auto;
	border-top: 1px solid var(--border);
	padding-top: 14px;
	padding-bottom: 4px;
}
.cart-invalid-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}
.cart-invalid-title {
	font-weight: 800;
	color: var(--foreground);
}
.cart-invalid-clear {
	border: none;
	background: transparent;
	color: var(--primary);
	font-weight: 700;
	cursor: pointer;
}
.cart-invalid-showall {
	margin-top: 10px;
	width: 100%;
	border: 1px solid rgb(var(--primary-rgb) / 0.35);
	background: rgb(var(--background-rgb) / 0.25);
	color: var(--foreground);
	border-radius: 999px;
	padding: 10px 12px;
	cursor: pointer;
}
.cart-item-image-wrap {
	position: relative;
	width: 72px;
	height: 72px;
	border-radius: 12px;
	overflow: hidden;
}
.cart-item-image-wrap .cart-item-image {
	width: 100%;
	height: 100%;
	border-radius: 12px;
}
.cart-item-unavailable {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(0 0 0 / 0.65);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 2px rgb(0 0 0 / 0.75);
	padding: 0 6px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.cart-item-similares {
	border: 1px solid rgb(var(--primary-rgb) / 0.35);
	background: rgb(var(--background-rgb) / 0.25);
	color: var(--foreground);
	border-radius: 999px;
	padding: 10px 12px;
	font-weight: 700;
	cursor: pointer;
}
.cart-similares-panel {
	margin: 10px 0 0 0;
	padding: 10px;
	border: 1px solid rgb(var(--primary-rgb) / 0.14);
	border-radius: 14px;
	background: rgb(var(--background-rgb) / 0.18);
}
.cart-similares-list {
	display: flex;
	gap: 10px;
	overflow: auto;
	padding-bottom: 6px;
}
.cart-similar-card {
	flex: 0 0 auto;
	width: 180px;
	border: 1px solid rgb(var(--primary-rgb) / 0.14);
	border-radius: 14px;
	background: rgb(var(--card-rgb) / 0.55);
	padding: 10px;
	text-decoration: none;
	color: inherit;
}
.cart-similar-image {
	width: 100%;
	height: 110px;
	object-fit: cover;
	border-radius: 12px;
	background: var(--background);
}
.cart-similar-info {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.cart-similar-name {
	font-weight: 700;
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.cart-similar-price {
	font-weight: 800;
	color: var(--primary);
	white-space: nowrap;
}
.cart-item-select--empty {
	width: 28px;
	height: 1px;
}
.cart-invalid-toggle {
	margin-top: 10px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 1px solid rgb(var(--primary-rgb) / 0.35);
	background: rgb(var(--background-rgb) / 0.25);
	color: var(--foreground);
	border-radius: 999px;
	padding: 12px 14px;
	cursor: pointer;
	font-weight: 700;
}
.cart-invalid-toggle .icon {
	width: 14px;
	height: 18px;
}
.cart-item.cart-item--invalid .cart-item-row {
	display: grid;
	grid-template-columns: 1fr auto;
	column-gap: 14px;
	align-items: center;
	min-width: 0;
}
.cart-item.cart-item--invalid .cart-item-qty {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.cart-items {
	flex: 1;
	overflow: auto;
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 0px;
	scrollbar-width: thin;
	scrollbar-color: rgb(255 255 255 / 0.22) rgb(255 255 255 / 0.06);
}
.cart-items::-webkit-scrollbar {
	width: 10px;
}
.cart-items::-webkit-scrollbar-track {
	background: rgb(255 255 255 / 0.05);
	border-radius: 999px;
}
.cart-items::-webkit-scrollbar-thumb {
	background: rgb(255 255 255 / 0.22);
	border-radius: 999px;
	border: 2px solid rgb(var(--background-rgb) / 0.15);
}
.cart-items::-webkit-scrollbar-thumb:hover {
	background: rgb(255 255 255 / 0.32);
}
.cart-item.cart-item--invalid .cart-item-name,
.cart-item.cart-item--invalid .cart-item-meta,
.cart-item.cart-item--invalid .cart-item-price {
	opacity: 0.72;
}
.cart-item.cart-item--invalid .cart-item-image {
	opacity: 0.60;
	filter: grayscale(25%);
}
.cart-item.cart-item--invalid .cart-item-unavailable {
	opacity: 1;
}
.cart-item.cart-item--invalid .cart-item-similares {
	opacity: 1;
}
.cart-item-title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-width: 0;
}
.cart-item-title-row .cart-item-title-link {
	min-width: 0;
}
.cart-item.cart-item--invalid .cart-item-title-row {
	opacity: 1;
}
.cart-item.cart-item--invalid .cart-item-remove {
	opacity: 1;
}
.cart-item.cart-item--invalid .cart-item-remove .icon {
	opacity: 1;
}

/* ========== Modals ========== */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgb(var(--background-rgb) / 0.70);
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease;
	z-index: 120;
}
.modal-overlay.modal-overlay--open {
	opacity: 1;
	pointer-events: auto;
}
.modal {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0.98);
	width: min(560px, calc(100vw - 32px));
	border-radius: 16px;
	border: 1px solid var(--border);
	background: linear-gradient(180deg, rgb(var(--card-rgb) / 0.98), rgb(var(--background-rgb) / 0.98));
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease, transform 220ms ease;
	z-index: 130;
}
.modal.modal--open {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
}
.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 16px 12px;
	border-bottom: 1px solid var(--border);
}
.modal-title {
	margin: 0;
	font-family: "Playfair Display", serif;
	font-size: 18px;
	font-weight: 700;
}
.modal-body {
	padding: 16px;
	max-height: min(70vh, 620px);
	overflow: auto;
}
.confirm-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
}
.confirm-modal.is-open {
	display: block;
}
.confirm-backdrop {
	position: absolute;
	inset: 0;
	background: rgb(0 0 0 / 0.55);
}
.confirm-dialog {
	position: relative;
	margin: 0;
	width: min(520px, 92vw);
	background: rgb(var(--card-rgb) / 0.95);
	border: 1px solid rgb(var(--primary-rgb) / 0.18);
	border-radius: 18px;
	padding: 18px 18px 16px;
	box-shadow: 0 20px 60px rgb(0 0 0 / 0.55);
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.confirm-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	border: 1px solid rgb(var(--primary-rgb) / 0.18);
	background: rgb(var(--background-rgb) / 0.25);
	color: var(--foreground);
	display: grid;
	place-items: center;
	cursor: pointer;
}
.confirm-title {
	margin: 2px 44px 8px 2px;
	font-size: 18px;
	font-weight: 800;
	color: var(--foreground);
}
.confirm-desc {
	margin: 0 0 14px 2px;
	color: var(--muted-foreground);
	line-height: 1.45;
}
.confirm-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}
/* Onda 5.7: input embutido no confirm-modal pra prompt customizado.
   Usa a mesma paleta dos campos de form do site, com foco dourado e
   estado is-invalid pra feedback de validação client-side. */
.confirm-input-wrap {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0 0 16px;
}
.confirm-input-label {
	font-size: 12px;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: 0.02em;
}
.confirm-input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d5cdc0;
	border-radius: 10px;
	font-family: inherit;
	font-size: 14px;
	background: #fff;
	color: #1a1a1a;
	resize: vertical;
	min-height: 42px;
	transition: border-color 150ms ease, box-shadow 150ms ease;
}
.confirm-input:focus {
	outline: none;
	border-color: #c9a84c;
	box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}
.confirm-input.is-invalid {
	border-color: #d14343;
	box-shadow: 0 0 0 3px rgba(209, 67, 67, 0.16);
}
textarea.confirm-input {
	min-height: 88px;
	line-height: 1.55;
}

/* ========== Footer ========== */
.site-footer {
	background: var(--card);
	border-top: 1px solid var(--border);
	padding: 64px 0 32px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}
.footer-brand img {
	width: 96px;
	height: 96px;
	border-radius: 9999px;
	object-fit: cover;
	margin-bottom: 16px;
}
.footer-text {
	color: var(--muted-foreground);
	max-width: 340px;
}
.footer-social {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer-title {
	margin: 0 0 16px;
	font-family: "Playfair Display", serif;
	font-size: 20px;
	font-weight: 700;
}
.footer-links {
	display: grid;
	gap: 10px;
}
.footer-links a {
	color: var(--muted-foreground);
	font-size: 14px;
	transition: color 160ms ease;
}
.footer-links a:hover {
	color: var(--primary);
}
.footer-contact {
	display: grid;
	gap: 12px;
}
.footer-bottom {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
	color: var(--muted-foreground);
}
.footer-bottom-credits {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}
.footer-bottom-author {
	font-size: 0.85em;
	opacity: 0.72;
	margin: 0;
}
.footer-bottom-author a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
	transition: color 0.18s ease, text-decoration-color 0.18s ease;
}
.footer-bottom-author a:hover,
.footer-bottom-author a:focus-visible {
	color: var(--gold, var(--accent, currentColor));
	text-decoration-color: currentColor;
}

@media (min-width: 768px) {
	.footer-grid {
			grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.footer-bottom {
			flex-direction: row;
			justify-content: space-between;
			text-align: left;
	}
	.footer-bottom-credits {
			align-items: flex-start;
	}
}

@media (min-width: 1024px) {
	.footer-grid {
			grid-template-columns: 1.5fr 1fr 1fr;
			gap: 40px;
	}
}

@media (min-width: 1440px) {
	.footer-grid {
			grid-template-columns: 2fr 1fr 1fr 1fr;
			gap: 48px;
	}
}

/* ========== Utilities ========== */
img {
	display: block;
	max-width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
button,
input {
	font: inherit;
}

/* iOS Safari dá zoom-in ao focar input com font-size < 16px. Usa
   !important pra vencer overrides componentes (mobile-nav-search,
   confirm-input, admin-input, etc) sem ter que perseguir um a um. */
@media (max-width: 1023.98px) {
	input,
	textarea,
	select {
		font-size: 16px !important;
	}
}
::selection {
	background: rgb(var(--primary-rgb) / 0.25);
}

/* ── Invalid input highlight (validation.js) ───────────────────────── */
.ws-invalid,
.ws-invalid:focus,
.ws-invalid:focus-visible {
	border-color: #e04848 !important;
	box-shadow: 0 0 0 3px rgba(224, 72, 72, 0.18) !important;
	outline: none !important;
	animation: ws-invalid-shake 0.35s ease;
}
select.ws-invalid,
textarea.ws-invalid {
	border-color: #e04848 !important;
	box-shadow: 0 0 0 3px rgba(224, 72, 72, 0.18) !important;
}
@keyframes ws-invalid-shake {
	0% { transform: translateX(0); }
	20% { transform: translateX(-4px); }
	40% { transform: translateX(4px); }
	60% { transform: translateX(-3px); }
	80% { transform: translateX(2px); }
	100% { transform: translateX(0); }
}
.desktop-only {
	display: none;
}
.block {
	display: block;
}
section,
.anchor-target {
	scroll-margin-top: calc(var(--header-height) + 24px);
}
.section {
	padding: 56px 0;
}
.section-heading {
	text-align: center;
	margin-bottom: 32px;
}
.section-kicker {
	display: inline-block;
	margin-bottom: 12px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.30em;
	font-weight: 500;
	color: var(--primary);
}
.section-title {
	margin: 0;
	font-family: "Playfair Display", serif;
	font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
}
.section-title .gold-gradient {
	background: linear-gradient(90deg, var(--primary), rgb(var(--primary-rgb) / 0.70));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.section-subtitle {
	max-width: 760px;
	margin: 16px auto 0;
	color: var(--muted-foreground);
}
.action-btn {
	width: 48px;
	height: 48px;
	border-radius: 9999px;
	border: 1px solid var(--border);
	background: rgb(var(--card-rgb) / 0.90);
	color: var(--foreground);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}
.action-btn:hover {
	transform: translateY(-2px);
	border-color: rgb(var(--primary-rgb) / 0.35);
}
.action-btn.primary {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--primary-foreground);
}
.action-btn.primary:hover {
	background: rgb(var(--primary-rgb) / 0.90);
}
.price-now {
	color: var(--primary);
	font-size: 20px;
	font-weight: 800;
}
.price-old {
	color: var(--muted-foreground);
	font-size: 14px;
	text-decoration: line-through;
}
.newsletter-section {
	padding: 96px 0;
	background: linear-gradient(to bottom, var(--card), var(--background));
}
.newsletter-box {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}
.newsletter-form {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.newsletter-input {
	width: 100%;
	height: 48px;
	border-radius: 9999px;
	border: 1px solid var(--border);
	background: var(--background);
	color: var(--foreground);
	padding: 0 18px;
	outline: none;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}
.newsletter-input::placeholder {
	color: var(--muted-foreground);
}
.newsletter-input:focus {
	border-color: rgb(var(--primary-rgb) / 0.55);
	box-shadow: 0 0 0 3px rgb(var(--ring-rgb) / 0.25);
}
.social-btn {
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	border: 1px solid var(--border);
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--muted-foreground);
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.social-btn:hover {
	transform: translateY(-2px);
	color: var(--primary);
	border-color: rgb(var(--primary-rgb) / 0.35);
	background: rgb(var(--primary-rgb) / 0.08);
}
.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--muted-foreground);
	font-size: 14px;
}
/* Keep the leading icon at a fixed size even when the neighbouring text wraps
 * to two lines — without flex-shrink:0 the SVG loses its aspect ratio and the
 * address pin renders smaller than the mail/phone icons. Also pin line-height
 * so the icon sits flush with the first text line. */
.contact-item > .icon,
.contact-item > i[data-lucide],
.contact-item > i.icon,
.contact-item > svg {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	line-height: 1;
}
.payment-icons {
	display: flex;
	align-items: center;
	gap: 12px;
	opacity: 0.65;
}
.payment-icons img {
	height: 24px;
	width: auto;
	filter: grayscale(1);
}
.check {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	user-select: none;
}
.check-input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}
.check-box {
	width: 18px;
	height: 18px;
	border-radius: 6px;
	border: 1px solid var(--border);
	background: rgb(var(--background-rgb) / 0.35);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.check-box::after {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 3px;
	background: var(--primary);
	transform: scale(0);
	transition: transform 160ms ease;
}
.check-input:checked + .check-box::after {
	transform: scale(1);
}
.check-input:indeterminate + .check-box::after {
	transform: scale(1);
	width: 12px;
	height: 4px;
	border-radius: 9999px;
}
.check-input:focus-visible + .check-box {
	outline: none;
	box-shadow: 0 0 0 3px rgb(var(--ring-rgb) / 0.25);
	border-color: rgb(var(--primary-rgb) / 0.55);
}
.search-form {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.search-input {
	flex: 1;
	min-width: 220px;
	height: 46px;
	border-radius: 9999px;
	border: 1px solid var(--border);
	background: var(--background);
	color: var(--foreground);
	padding: 0 16px;
	outline: none;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}
.search-input:focus {
	border-color: rgb(var(--primary-rgb) / 0.55);
	box-shadow: 0 0 0 3px rgb(var(--ring-rgb) / 0.25);
}
.search-help {
	margin: 12px 0 0;
	color: var(--muted-foreground);
	font-size: 13px;
}
.details-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}
.details-media {
	position: relative;
	aspect-ratio: 3 / 4;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--background);
}
.details-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.details-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgb(var(--primary-rgb) / 0.90);
	color: var(--primary-foreground);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	padding: 6px 10px;
	border-radius: 9999px;
}
.details-category {
	font-size: 12px;
	letter-spacing: 0.20em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--primary);
}
.details-name {
	margin: 8px 0 0;
	font-family: "Playfair Display", serif;
	font-size: 22px;
	font-weight: 800;
}
.details-prices {
	margin-top: 12px;
	display: flex;
	align-items: baseline;
	gap: 12px;
}
.details-price-now {
	color: var(--primary);
	font-size: 22px;
	font-weight: 900;
}
.details-price-old {
	color: var(--muted-foreground);
	font-size: 14px;
	text-decoration: line-through;
}
.details-actions {
	margin-top: 16px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

@media (min-width: 640px) {
	.newsletter-form {
			flex-direction: row;
	}
	.newsletter-form .btn {
			padding: 12px 20px;
			white-space: nowrap;
	}
	.details-grid {
			grid-template-columns: 220px 1fr;
			align-items: start;
	}
}

@media (min-width: 768px) {
	.desktop-only {
			display: inline-flex;
	}
}


/* Search input clear (X) */

.header-search-input::-webkit-search-cancel-button{
	-webkit-appearance: none;
	display: none;
}
.header-search-input::-webkit-search-decoration{
	display: none;
}
.header-search-clear{
	position: absolute;
	right: 66px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	display: none;
	align-items: center;
	justify-content: flex-end;
	border: none;
	background: transparent;
	color: var(--foreground);
	cursor: pointer;
	opacity: 0.85;
}
.header-search-clear:hover{ opacity: 1; }
.header-search.has-clear .header-search-clear{ display: inline-flex; }

.notif-badge{
	right: -2px;
	top: -2px;
}


/* --- Page Loader (V31) --- */
.page-loader{
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(0 0 0 / 0.55);
	backdrop-filter: blur(7px);
}
.page-loader.is-hidden{ display:none; }
.page-loader.is-hiding{ opacity: 0; transition: opacity 220ms ease; }

.page-loader-card{
	width: min(420px, calc(100vw - 32px));
	border-radius: 22px;
	border: 1px solid rgb(var(--primary-rgb) / 0.18);
	background: rgb(var(--background-rgb) / 0.38);
	box-shadow: 0 18px 60px rgb(0 0 0 / 0.50);
	padding: 22px;
	display:flex;
	gap: 14px;
	align-items: center;
}

.page-loader-spinner{
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 5px solid rgb(255 255 255 / 0.12);
	border-top-color: var(--primary);
	animation: pageSpin 0.75s linear infinite;
	flex: 0 0 44px;
}

@keyframes pageSpin{
	to{ transform: rotate(360deg); }
}

.page-loader-texts{ min-width:0; }
.page-loader-title{
	margin:0;
	font-weight: 900;
	font-size: 14px;
}
.page-loader-sub{
	margin: 6px 0 0;
	color: rgb(242 242 242 / 0.70);
	font-size: 13px;
	line-height: 1.35;
}


/* ===== Global control refinement (V78) ===== */
:root{
	--control-radius: 8px;
	--control-radius-soft: 10px;
}

.btn,
.btn-sm,
a.btn,
button.btn,
.icon-btn,
.header-search-btn,
.action-btn,
.social-btn,
.cart-item-remove,
.qty-control,
.qty-btn,
.header-search-clear,
.cart-item-select--empty,
.cart-qty-btn,
[data-close].icon-btn,
button,
button[type="button"],
button[type="submit"],
button[type="reset"]{
	border-radius: var(--control-radius) !important;
}

.header-search-input,
.newsletter-input,
.search-input,
input.input,
textarea.textarea,
select,
select.input,
.search-form input,
.newsletter-form input{
	border-radius: var(--control-radius) !important;
}

select,
select.input{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 42px !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%23DFB857' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 14px 9px;
}

/* Options dos selects: padrão claro/cream (alinhado ao resto da loja).
   O dropdown nativo do navegador respeita só background-color e color em
   <option>. Hover/seleção são controlados pelo SO (Chrome/Edge usam um
   accent baseado no color-scheme), então setamos color-scheme: light no
   <select> pra forçar o highlight dourado claro em vez de azul escuro. */
select,
select.input{
	color-scheme: light;
}
select option,
select.input option{
	background: #ffffff;
	color: #1a1a1a;
}
select option:checked,
select.input option:checked{
	background: #fbf7ee;
	color: #1a1a1a;
}


/* V79 | cursores consistentes em todos os botões/controles clicáveis */
button,
[role="button"],
.btn,
.button,
.action-btn,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="file"],
label[for],
summary {
	cursor: pointer;
}

button:disabled,
.btn:disabled,
.button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
	cursor: not-allowed;
}


/* ========== Coupon announcement bar ========== */
body{
	--header-banner-h: 0px;
}

body.has-coupon-banner{
	--header-banner-h: 44px;
	padding-top: var(--header-banner-h);
}

.site-header{
	top: var(--header-banner-h);
	left: 0;
	right: 0;
	bottom: auto;
}

.coupon-announcement{
	position: fixed;
	inset: 0 0 auto 0;
	height: var(--header-banner-h);
	z-index: 60;
	background: linear-gradient(90deg, rgb(var(--primary-rgb) / 0.20), rgb(var(--primary-rgb) / 0.10));
	border-bottom: 1px solid #ffffff;
	backdrop-filter: blur(12px);
}

.coupon-announcement-inner{
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.coupon-announcement-copy{
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	font-size: 13px;
	color: rgb(242 242 242 / 0.88);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.coupon-announcement-copy strong{
	color: var(--foreground);
}

.coupon-announcement-pill{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 24px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgb(var(--background-rgb) / 0.34);
	border: 1px solid rgb(var(--primary-rgb) / 0.25);
	color: var(--primary);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	flex-shrink: 0;
}

.coupon-announcement-actions{
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.coupon-banner-copy,
.coupon-banner-link{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid rgb(var(--primary-rgb) / 0.26);
	background: rgb(var(--background-rgb) / 0.34);
	color: var(--foreground);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.coupon-banner-copy:hover,
.coupon-banner-link:hover{
	transform: translateY(-1px);
	border-color: rgb(var(--primary-rgb) / 0.44);
	background: rgb(var(--primary-rgb) / 0.12);
	color: var(--primary);
}

@media (max-width: 900px){
	body.has-coupon-banner{
		--header-banner-h: 44px;
	}

	.coupon-announcement-inner{
		padding-top: 0;
		padding-bottom: 0;
	}

	.coupon-announcement-copy{
		font-size: 12px;
		gap: 8px;
	}
}

@media (max-width: 720px){
	body.has-coupon-banner{
		--header-banner-h: 44px;
	}

	.coupon-announcement-inner{
		flex-direction: row;
		align-items: center;
		gap: 8px;
		padding-top: 0;
		padding-bottom: 0;
		cursor: pointer;
	}
	.coupon-slide:active .coupon-announcement-inner{ opacity: 0.82; }

	.coupon-announcement-copy{
		flex: 1 1 auto;
		min-width: 0;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		font-size: 11.5px;
		gap: 6px;
	}

	/* Esconde o 3º elemento (mensagem verbose) — mantém pill + headline */
	.coupon-announcement-copy > span:not(.coupon-announcement-pill) { display: none; }

	.coupon-announcement-pill{
		height: 20px;
		padding: 0 8px;
		font-size: 10px;
		letter-spacing: 0.08em;
	}

	.coupon-announcement-actions{
		gap: 6px;
		flex-shrink: 0;
		width: auto;
	}

	.coupon-banner-copy,
	.coupon-banner-link{
		height: 28px;
		padding: 0 10px;
		font-size: 11px;
	}
}

/* Telas muito pequenas: mantém só "Ver ofertas" */
@media (max-width: 420px){
	.coupon-banner-copy{ display: none; }
}


/* ===== Coupon banner polish V94 ===== */
body.has-coupon-banner .hero-section{
	margin-top: 0;
	min-height: calc(100vh - var(--header-banner-h));
}

.coupon-banner-copy,
.coupon-banner-link{
	box-sizing: border-box;
	appearance: none;
	font: inherit;
	line-height: 1;
	height: 34px;
	padding: 0 14px;
	border-radius: 8px !important;
}

.coupon-banner-link{
	text-decoration: none;
}

.coupon-banner-copy:focus-visible,
.coupon-banner-link:focus-visible{
	outline: none;
	box-shadow: 0 0 0 3px rgb(var(--primary-rgb) / 0.18);
}


/* ===== Luxe warm refresh V106 ===== */
:root {
	--background: #1B1511;
	--background-rgb: 27 21 17;
	--foreground: #F8F1E7;
	--card: #251D17;
	--card-rgb: 37 29 23;
	--card-foreground: #F8F1E7;
	--popover: #261E18;
	--popover-foreground: #F8F1E7;
	--primary: #E3BC63;
	--primary-rgb: 227 188 99;
	--primary-foreground: #16110C;
	--secondary: #32271E;
	--secondary-foreground: #F8F1E7;
	--muted: #907A60;
	--muted-foreground: #CDB89A;
	--accent: #E3BC63;
	--accent-foreground: #16110C;
	--border: #4B3A2A;
	--input: #4B3A2A;
	--ring: #E3BC63;
	--ring-rgb: 227 188 99;
}

body {
	background:
		radial-gradient(1200px 760px at 12% 6%, rgb(var(--primary-rgb) / 0.18), transparent 58%),
		radial-gradient(900px 640px at 88% 12%, rgb(255 246 227 / 0.10), transparent 54%),
		linear-gradient(180deg, #221913 0%, #1B1511 36%, #241A13 100%);
	color: var(--foreground);
}

.btn-gold {
	background: linear-gradient(135deg, rgb(245 209 120 / 0.98), rgb(var(--primary-rgb) / 0.94));
	border-color: rgb(var(--primary-rgb) / 0.95);
	box-shadow: 0 14px 30px rgb(var(--primary-rgb) / 0.18);
}

.btn-gold:hover {
	background: linear-gradient(135deg, rgb(248 216 138 / 1), rgb(var(--primary-rgb) / 0.98));
	border-color: rgb(var(--primary-rgb) / 0.98);
	box-shadow: 0 18px 36px rgb(var(--primary-rgb) / 0.24);
}

.btn-outline-gold {
	background: rgb(255 246 230 / 0.04);
	color: var(--foreground);
	border-color: rgb(var(--primary-rgb) / 0.36);
}

.btn-outline-gold:hover {
	background: rgb(var(--primary-rgb) / 0.14);
	color: var(--foreground);
	box-shadow: 0 14px 26px rgb(var(--primary-rgb) / 0.12);
}

.icon-btn {
	background: linear-gradient(180deg, rgb(255 248 234 / 0.07), rgb(255 248 234 / 0.02));
	border: 1px solid rgb(var(--primary-rgb) / 0.10);
	box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.03);
}

.icon-btn:hover {
	background: linear-gradient(180deg, rgb(var(--primary-rgb) / 0.20), rgb(var(--primary-rgb) / 0.08));
}

.toast {
	background: linear-gradient(180deg, rgb(255 248 234 / 0.08), rgb(255 248 234 / 0.03)), rgb(var(--card-rgb) / 0.94);
	border-color: rgb(var(--primary-rgb) / 0.22);
	box-shadow: 0 22px 46px rgb(8 4 1 / 0.30);
}

.site-header {
	background: linear-gradient(180deg, rgb(29 22 17 / 0.92), rgb(24 18 14 / 0.86));
	border-bottom-color: rgb(var(--primary-rgb) / 0.18);
	box-shadow: 0 16px 40px rgb(8 5 2 / 0.18);
}

.brand-logo img {
	box-shadow: 0 0 0 1px rgb(var(--primary-rgb) / 0.16), 0 16px 28px rgb(var(--primary-rgb) / 0.08);
}

.nav-mobile {
	background: linear-gradient(180deg, rgb(32 24 18 / 0.98), rgb(24 18 14 / 0.98));
}

.header-search-input {
	background: linear-gradient(180deg, rgb(255 248 234 / 0.08), rgb(255 248 234 / 0.03)), rgb(var(--background-rgb) / 0.38);
	border-color: rgb(var(--primary-rgb) / 0.22);
	box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.04);
}

.header-search-input::placeholder {
	color: rgb(248 241 231 / 0.62);
}

.header-cat-link {
	color: rgb(248 241 231 / 0.78);
}

.header-search-btn {
	background: linear-gradient(135deg, rgb(245 209 120 / 0.98), rgb(var(--primary-rgb) / 0.92));
	border-color: rgb(var(--primary-rgb) / 0.32);
	box-shadow: 0 12px 24px rgb(var(--primary-rgb) / 0.14);
}

.hero-section::before {
	background:
		radial-gradient(820px 520px at 50% 30%, rgb(255 248 234 / 0.08), transparent 70%),
		linear-gradient(180deg, rgb(28 21 16 / 0.94) 0%, rgb(26 19 14 / 0.96) 58%, rgb(35 25 19 / 1) 100%);
}

.hero-deco.deco-1 {
	background: rgb(var(--primary-rgb) / 0.10);
}

.hero-deco.deco-2 {
	background: rgb(255 235 188 / 0.08);
}

.hero-deco.deco-3 {
	background: rgb(var(--primary-rgb) / 0.06);
}

.hero-content {
	max-width: 980px;
	padding: 44px 34px 120px;
	border-radius: 32px;
	background: linear-gradient(180deg, rgb(255 248 234 / 0.08), rgb(255 248 234 / 0.02));
	border: 1px solid rgb(var(--primary-rgb) / 0.16);
	box-shadow: 0 30px 90px rgb(9 5 2 / 0.24);
	backdrop-filter: blur(10px);
}

.hero-title {
	text-shadow: 0 8px 28px rgb(0 0 0 / 0.20);
}

.hero-subtitle {
	color: rgb(248 241 231 / 0.82);
}

.scroll-mouse {
	background: rgb(255 248 234 / 0.02);
}

.features-section {
	background: linear-gradient(180deg, rgb(41 30 23 / 0.90), rgb(30 23 18 / 0.96));
	border-top-color: rgb(var(--primary-rgb) / 0.14);
	border-bottom-color: rgb(var(--primary-rgb) / 0.14);
}

.feature {
	padding: 24px 18px;
	border-radius: 22px;
	background: linear-gradient(180deg, rgb(255 248 234 / 0.07), rgb(255 248 234 / 0.02));
	border: 1px solid rgb(var(--primary-rgb) / 0.10);
	box-shadow: 0 18px 36px rgb(9 5 2 / 0.16);
}

.feature-icon {
	background: linear-gradient(135deg, rgb(var(--primary-rgb) / 0.22), rgb(255 247 225 / 0.08));
	border: 1px solid rgb(var(--primary-rgb) / 0.16);
	box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.06);
}

.categories-section,
.newsletter-section {
	background: linear-gradient(180deg, rgb(32 24 19 / 0.95), rgb(37 28 21 / 0.96));
}

.section {
	position: relative;
	overflow: hidden;
}

.section::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(740px 320px at 50% 0%, rgb(var(--primary-rgb) / 0.08), transparent 72%);
}

.section > .container,
.features-section > .container,
.newsletter-section > .container {
	position: relative;
	z-index: 1;
}

.section-kicker,
.hero-kicker {
	height: 30px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgb(var(--primary-rgb) / 0.10);
	border: 1px solid rgb(var(--primary-rgb) / 0.16);
	box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.05);
	line-height: 28px;
}

.section-heading {
	margin-bottom: 54px;
}

.section-subtitle {
	color: rgb(248 241 231 / 0.74);
}

.category-card {
	background: linear-gradient(180deg, rgb(255 248 234 / 0.06), rgb(255 248 234 / 0.02)), rgb(var(--card-rgb) / 0.96);
	border-color: rgb(var(--primary-rgb) / 0.14);
	box-shadow: 0 20px 44px rgb(9 5 2 / 0.18);
}

.category-overlay {
	background: linear-gradient(to top, rgb(24 18 13 / 0.96), rgb(24 18 13 / 0.32), transparent);
}

.product-card {
	position: relative;
	background: linear-gradient(180deg, rgb(255 248 234 / 0.07), rgb(255 248 234 / 0.01)), rgb(var(--card-rgb) / 0.96);
	border-color: rgb(var(--primary-rgb) / 0.12);
	box-shadow: 0 18px 42px rgb(9 5 2 / 0.18);
}

.product-card:hover {
	box-shadow: 0 24px 48px rgb(9 5 2 / 0.24);
}

.product-media {
	background: linear-gradient(180deg, rgb(255 248 234 / 0.06), transparent), rgb(var(--background-rgb) / 0.72);
}

.product-actions {
	background: linear-gradient(180deg, rgb(23 18 13 / 0.40), rgb(23 18 13 / 0.74));
}

.product-badge {
	box-shadow: 0 10px 22px rgb(var(--primary-rgb) / 0.18);
}

.cart-drawer {
	background: linear-gradient(180deg, rgb(39 29 22 / 0.98), rgb(28 21 16 / 0.98));
	border-left-color: rgb(var(--primary-rgb) / 0.16);
	box-shadow: -24px 0 64px rgb(7 4 2 / 0.32);
}

.qty-control,
.newsletter-input,
.search-input {
	background: linear-gradient(180deg, rgb(255 248 234 / 0.06), rgb(255 248 234 / 0.02)), rgb(var(--background-rgb) / 0.50);
	border-color: rgb(var(--primary-rgb) / 0.16);
}

.newsletter-box {
	padding: 38px 34px;
	border-radius: 30px;
	background: linear-gradient(180deg, rgb(255 248 234 / 0.08), rgb(255 248 234 / 0.03)), rgb(var(--card-rgb) / 0.40);
	border: 1px solid rgb(var(--primary-rgb) / 0.14);
	box-shadow: 0 24px 60px rgb(9 5 2 / 0.18);
}

.social-btn {
	background: linear-gradient(180deg, rgb(255 248 234 / 0.08), rgb(255 248 234 / 0.03));
	border-color: rgb(var(--primary-rgb) / 0.12);
	color: rgb(248 241 231 / 0.76);
}

.site-footer {
	background:
		radial-gradient(640px 320px at 10% 0%, rgb(var(--primary-rgb) / 0.12), transparent 70%),
		linear-gradient(180deg, rgb(30 23 18 / 0.96), rgb(22 17 13 / 1));
	border-top-color: rgb(var(--primary-rgb) / 0.16);
}

.footer-brand img {
	box-shadow: 0 0 0 1px rgb(var(--primary-rgb) / 0.16), 0 20px 40px rgb(var(--primary-rgb) / 0.12);
}

.footer-title {
	color: var(--foreground);
}

.footer-text,
.footer-links a,
.contact-item,
.footer-bottom {
	color: rgb(248 241 231 / 0.72);
}

.footer-links a:hover,
.contact-item i {
	color: var(--primary);
}

.footer-bottom {
	margin-top: 44px;
	padding: 20px 22px;
	border-top: none;
	border: 1px solid rgb(var(--primary-rgb) / 0.14);
	border-radius: 24px;
	background: linear-gradient(180deg, rgb(255 248 234 / 0.06), rgb(255 248 234 / 0.02));
	box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.04);
}

.payment-icons {
	gap: 10px;
	opacity: 1;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.payment-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	min-width: 52px;
	height: 34px;
	padding: 0;
	border-radius: 6px;
	border: none;
	background: transparent;
	box-shadow: 0 2px 8px rgb(9 5 2 / 0.10);
}

.payment-icons img {
	height: 34px;
	width: auto;
	border-radius: 6px;
	filter: none;
	opacity: 1;
}

.coupon-announcement {
	background: linear-gradient(90deg, rgb(var(--primary-rgb) / 0.32), rgb(255 238 198 / 0.12));
	border-bottom-color: rgb(var(--primary-rgb) / 0.24);
	box-shadow: 0 10px 30px rgb(var(--primary-rgb) / 0.08);
}

.coupon-announcement-pill {
	background: rgb(24 18 13 / 0.38);
}

.coupon-banner-copy,
.coupon-banner-link {
	background: linear-gradient(180deg, rgb(255 248 234 / 0.10), rgb(255 248 234 / 0.04)), rgb(var(--background-rgb) / 0.30);
	border-color: rgb(var(--primary-rgb) / 0.22);
}

@media (max-width: 768px) {
	.hero-content {
		padding: 34px 22px 110px;
	}

	.footer-bottom {
		padding: 18px;
	}

	.payment-icons {
		justify-content: center;
	}
}


/* ===== Editorial luxury refresh V107 ===== */
:root {
	--background: #e8dccb;
	--background-rgb: 232 220 203;
	--foreground: #211a14;
	--card: #f4ebdf;
	--card-rgb: 244 235 223;
	--card-foreground: #211a14;
	--popover: #f4ebdf;
	--popover-foreground: #211a14;
	--primary: #c7933f;
	--primary-rgb: 199 147 63;
	--primary-foreground: #17110c;
	--secondary: #dbc7ab;
	--secondary-foreground: #2a2118;
	--muted: #8e7760;
	--muted-foreground: #6d5947;
	--accent: #c89a43;
	--accent-foreground: #17110c;
	--border: #d2bba0;
	--input: #ceb289;
	--ring: #c89a43;
	--ring-rgb: 200 154 67;
}

body {
	background:
		radial-gradient(760px 520px at 0% 0%, rgb(var(--primary-rgb) / 0.11), transparent 60%),
		radial-gradient(900px 560px at 100% 10%, rgb(255 245 231 / 0.18), transparent 58%),
		linear-gradient(180deg, #efe4d5 0%, #e7d9c8 44%, #ddccb8 100%);
	color: var(--foreground);
}

.btn {
	font-weight: 600;
}

.btn-gold {
	box-shadow: 0 10px 22px rgb(var(--primary-rgb) / 0.16);
}

.btn-outline-gold {
	background: rgb(248 240 231 / 0.74);
}

.icon-btn {
	color: var(--foreground);
}

.toast {
	background: rgb(245 235 223 / 0.96);
	color: var(--foreground);
	border-color: rgb(var(--primary-rgb) / 0.18);
	box-shadow: 0 16px 36px rgb(41 24 5 / 0.12);
}

.site-header {
	background: rgb(235 223 209 / 0.90);
	backdrop-filter: blur(14px);
	border-bottom-color: rgb(var(--primary-rgb) / 0.16);
	box-shadow: 0 12px 28px rgb(51 32 11 / 0.08);
}

.nav-link,
.header-cat-link,
.header-search-input,
.header-icon,
.icon-btn {
	color: var(--foreground);
}

.header-search-input {
	background: rgb(244 235 224 / 0.92);
	border-color: rgb(var(--primary-rgb) / 0.15);
	box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.35);
}

.header-search-input::placeholder {
	color: #8b7860;
}

.header-search-btn {
	box-shadow: 0 10px 22px rgb(var(--primary-rgb) / 0.14);
}

.hero-section::before {
	background:
		radial-gradient(760px 360px at 50% 10%, rgb(var(--primary-rgb) / 0.18), transparent 70%),
		linear-gradient(180deg, #ebddca 0%, #e1cfb8 62%, #d5bea3 100%);
}

.hero-content {
	max-width: 940px;
	padding: 42px 36px 120px;
	background: rgb(245 235 223 / 0.66);
	border: 1px solid rgb(var(--primary-rgb) / 0.12);
	box-shadow: 0 28px 70px rgb(58 36 10 / 0.14);
	backdrop-filter: blur(10px);
}

.hero-title,
.hero-subtitle,
.section-title,
.section-subtitle,
.feature-title,
.feature-text,
.category-overlay,
.product-title,
.product-category,
.footer-title,
.footer-text,
.footer-links a,
.contact-item,
.footer-bottom {
	color: var(--foreground);
}

.hero-subtitle,
.section-subtitle,
.feature-text,
.footer-text,
.footer-links a,
.contact-item {
	color: #5f4d3f;
}

.scroll-mouse {
	background: rgb(241 231 218 / 0.58);
	border-color: rgb(var(--primary-rgb) / 0.18);
}

.features-section {
	background: transparent;
	border-top-color: rgb(var(--primary-rgb) / 0.10);
	border-bottom-color: rgb(var(--primary-rgb) / 0.10);
}

.feature,
.category-card,
.product-card,
.newsletter-box,
.cart-drawer,
.qty-control,
.newsletter-input,
.search-input {
	background: rgb(243 233 220 / 0.86);
	border-color: rgb(var(--primary-rgb) / 0.14);
	box-shadow: 0 16px 36px rgb(60 36 9 / 0.10);
}

.categories-section,
.newsletter-section,
.section {
	background: transparent;
}

.section::before {
	background: radial-gradient(720px 260px at 50% 0%, rgb(var(--primary-rgb) / 0.08), transparent 72%);
}

.category-overlay {
	background: linear-gradient(to top, rgb(244 235 223 / 0.94), rgb(244 235 223 / 0.42), transparent);
}

.product-media {
	background: linear-gradient(180deg, rgb(247 240 232 / 0.72), rgb(228 214 196 / 0.94));
}

.product-actions {
	background: linear-gradient(180deg, rgb(243 233 220 / 0.08), rgb(243 233 220 / 0.72));
}

.product-title {
	color: var(--foreground);
}

.product-price,
.price-current,
.gold-gradient {
	color: var(--primary);
}

.site-footer {
	background:
		radial-gradient(600px 260px at 14% 0%, rgb(var(--primary-rgb) / 0.14), transparent 70%),
		linear-gradient(180deg, #241b14 0%, #1b140f 100%);
	border-top-color: rgb(var(--primary-rgb) / 0.16);
}

.site-footer .footer-title {
	color: #f8efe3;
}

.site-footer .footer-text,
.site-footer .footer-links a,
.site-footer .contact-item,
.site-footer .footer-bottom {
	color: #d8c7b1;
}

.footer-bottom {
	background: rgb(255 248 238 / 0.05);
	border-color: rgb(var(--primary-rgb) / 0.12);
	box-shadow: none;
}

.social-btn {
	background: rgb(255 255 255 / 0.05);
	border-color: rgb(var(--primary-rgb) / 0.14);
}

.payment-icons {
	gap: 12px;
}

.payment-badge {
	min-width: 86px;
	height: 42px;
	padding: 0 16px;
	border-radius: 12px;
	background: rgb(247 238 227 / 0.94);
	border: 1px solid rgb(var(--primary-rgb) / 0.16);
	box-shadow: 0 10px 20px rgb(55 33 8 / 0.08);
}

.payment-icons img {
	height: 18px;
	filter: none;
}

.coupon-announcement {
	background: linear-gradient(90deg, rgb(226 205 168 / 0.92), rgb(240 228 211 / 0.90));
	border-bottom-color: rgb(var(--primary-rgb) / 0.18);
	box-shadow: 0 8px 18px rgb(80 48 10 / 0.06);
	color: var(--foreground);
}

.coupon-announcement-pill,
.coupon-banner-copy,
.coupon-banner-link {
	background: rgb(245 235 223 / 0.68);
	border-color: rgb(var(--primary-rgb) / 0.16);
	color: var(--foreground);
}

.coupon-banner-text,
.coupon-banner-value,
.coupon-banner-code {
	color: var(--foreground);
}

@media (max-width: 768px) {
	.hero-content {
		padding: 32px 22px 110px;
	}
}


/* ===== Black + gold + white blend refresh V109 ===== */
:root {
	--background: #f6f2ec;
	--background-rgb: 246 242 236;
	--foreground: #171411;
	--card: #ffffff;
	--card-rgb: 255 255 255;
	--card-foreground: #171411;
	--popover: #ffffff;
	--popover-foreground: #171411;
	--primary: #c99a45;
	--primary-rgb: 201 154 69;
	--primary-foreground: #16120d;
	--secondary: #efe6da;
	--secondary-foreground: #221c15;
	--muted: #8b7764;
	--muted-foreground: #716050;
	--accent: #d7ab56;
	--accent-foreground: #16120d;
	--border: #e5dacb;
	--input: #d9c7ab;
	--ring: #c99a45;
	--ring-rgb: 201 154 69;
}

body {
	background:
		linear-gradient(180deg, #f8f5f0 0%, #f5f1eb 48%, #efe8df 100%);
	color: var(--foreground);
}

.site-header {
	background: rgb(255 255 255 / 0.94);
	border-bottom: 1px solid rgb(0 0 0 / 0.08);
	box-shadow: 0 10px 30px rgb(17 12 6 / 0.06);
}

.nav-link,
.header-cat-link,
.header-search-input,
.header-icon,
.icon-btn,
.brand-name {
	color: #171411;
}

.icon-btn {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
}

.icon-btn:hover {
	background: rgb(var(--primary-rgb) / 0.10);
	color: #171411;
}

.header-search-input {
	background: #fffdf9;
	border-color: rgb(0 0 0 / 0.10);
	box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.85);
}

.header-search-input::placeholder {
	color: #8b7968;
}

.header-search-btn,
.btn-gold {
	background: linear-gradient(180deg, #e2bc74 0%, #c9973d 100%);
	border-color: #c9973d;
	box-shadow: 0 10px 22px rgb(var(--primary-rgb) / 0.18);
}

.btn-outline-gold {
	background: rgb(255 255 255 / 0.96) !important;
	color: #171411;
	border-color: rgb(0 0 0 / 0.10);
}

.btn-outline-gold:hover {
	background: rgb(var(--primary-rgb) / 0.08);
	border-color: rgb(var(--primary-rgb) / 0.22);
	color: #171411;
}

.coupon-announcement {
	background: linear-gradient(90deg, #12100d 0%, #1c1711 45%, #2a2218 100%);
	border-bottom-color: rgb(var(--primary-rgb) / 0.22);
	box-shadow: none;
	color: #f8f3eb;
}

.coupon-announcement-pill {
	background: rgb(var(--primary-rgb) / 0.18);
	border-color: rgb(var(--primary-rgb) / 0.24);
	color: #f4dfb4;
}

.coupon-banner-copy,
.coupon-banner-link {
	background: rgb(255 255 255 / 0.06);
	border-color: rgb(255 255 255 / 0.14);
	color: #f8f3eb;
	border-radius: 8px;
}

.coupon-banner-text,
.coupon-banner-value,
.coupon-banner-code { color: #f8f3eb; }

.hero-section::before {
	background:
		radial-gradient(700px 300px at 50% 18%, rgb(var(--primary-rgb) / 0.18), transparent 65%),
		linear-gradient(180deg, #13100d 0%, #17130f 52%, #211b14 100%);
}

.hero-content {
	background: transparent;
	border: none;
	box-shadow: none;
	backdrop-filter: none;
	max-width: 1040px;
	padding: 42px 32px 120px;
}

.hero-kicker,
.section-kicker {
	background: rgb(var(--primary-rgb) / 0.12);
	border: 1px solid rgb(var(--primary-rgb) / 0.22);
	color: #f0d395;
}

.hero-title,
.hero-title .gold-gradient { color: #f8f5ef; }
.hero-title .gold-gradient {
	background: linear-gradient(180deg, #f6d68b 0%, #c9973d 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-subtitle { color: rgb(248 243 235 / 0.82); }
.scroll-mouse {
	background: rgb(255 255 255 / 0.06);
	border-color: rgb(255 255 255 / 0.18);
}

.features-section,
.categories-section,
.newsletter-section,
.section,
.catalog-page,
.product-detail-page,
.pd-page,
.checkout-page,
.account-page,
.auth-page {
	background: transparent;
}

.section::before { background: none; }

.feature,
.category-card,
.product-card,
.newsletter-box,
.cart-drawer,
.qty-control,
.newsletter-input,
.search-input,
.auth-side,
.auth-card,
.account-sidebar,
.account-content,
.account-modal-dialog,
.admin-table-wrap,
.coupon-card,
#adminCouponModal .coupon-builder-intro,
#adminCouponModal .coupon-builder-toggle,
#adminCouponModal .coupon-builder-panel,
#adminCouponModal .coupon-builder-panel .coupon-form-section,
#adminCouponModal .coupon-field,
#adminCouponModal .coupon-toggle-card,
#adminCouponModal .coupon-selector-item,
#adminCouponModal .coupon-selector-toolbar,
#adminCouponModal .coupon-selector-counter,
#adminCouponModal .coupon-selector-tabs,
.order-card,
.notification-item,
.address-card,
.payment-card,
.checkout-card,
.selector-card,
.ship-opt,
.checkout-item,
.pix-box,
.payment-method-body,
.selector-card--payment .selector-card-body,
.checkout-coupon-result,
.catalog-sidebar,
.filter-group,
.sort-box,
.filter-chip,
.products-empty,
.catalog-toolbar,
.pd-gallery,
.pd-info,
.pd-thumb,
.pd-benefit,
.pd-meta-card,
.pd-review-card,
.pd-related-card,
.pd-delivery-card {
	background: #ffffff;
	border-color: #e7ddcf;
	box-shadow: 0 14px 34px rgb(20 15 10 / 0.06);
}

.feature-title,
.feature-text,
.section-title,
.section-subtitle,
.product-title,
.product-category,
.catalog-title,
.catalog-subtitle,
.auth-side h1,
.auth-field label,
.auth-card,
.auth-tab,
.btn-social,
.account-page,
.account-page h1,
.account-page h2,
.account-page h3,
.account-page h4,
.account-page .panel-title,
.account-page .account-menu-title,
.account-page .account-user-name,
.account-page .admin-table,
.account-page .coupon-title,
.checkout-title,
.checkout-card-title,
.payment-method-title,
.selector-card-title,
.checkout-total-row strong,
.checkout-total-row span,
.checkout-summary-title,
.pd-title,
.pd-price-current,
.pd-section-title,
.pd-info-title,
.pd-meta-title,
.pd-review-title {
	color: #171411;
}

.section-subtitle,
.feature-text,
.product-category,
.catalog-subtitle,
.auth-side p,
.auth-bullet,
.auth-hint,
.auth-footer,
.auth-divider,
.account-page .account-user-meta,
.account-page .panel-subtitle,
.account-page .account-menu-item-sub,
.account-page .notification-text,
.account-page .coupon-subtitle,
.account-page .order-meta,
.account-page .empty-state-text,
.account-page .helper-text,
.account-page .admin-table td,
.checkout-sub,
.selector-card-sub,
.checkout-help,
.shipping-info,
.coupon-hint,
.checkout-note,
.payment-method-sub,
.pix-sub,
.checkout-item-meta,
.checkout-summary-meta,
.pd-subtitle,
.pd-copy,
.pd-meta-text,
.pd-review-text,
.pd-stock,
.pd-sku,
.pd-related-subtitle { color: #6f5c4b; }

.category-card {
	background: #ffffff;
}

.category-overlay {
	background: linear-gradient(to top, rgb(255 255 255 / 0.96), rgb(255 255 255 / 0.56), transparent);
}

.product-media,
.pd-main-image,
.pd-image-stage {
	background: linear-gradient(180deg, #faf7f2 0%, #f2eadf 100%);
}

.product-actions {
	background: linear-gradient(180deg, rgb(255 255 255 / 0.06), rgb(255 255 255 / 0.88));
}

.catalog-hero {
	background:
		linear-gradient(180deg, #16120f 0%, #1a1511 58%, #221c15 100%);
	border-bottom-color: rgb(var(--primary-rgb) / 0.16);
}

.catalog-title,
.catalog-title .gold-gradient,
.catalog-hero-title,
.catalog-hero-subtitle,
.filters-title,
.sort-title {
	color: #f8f5ef;
}

.catalog-title .gold-gradient {
	background: linear-gradient(180deg, #f6d68b 0%, #c9973d 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.catalog-subtitle,
.catalog-hero-subtitle,
.filters-subtitle,
.products-meta { color: rgb(248 243 235 / 0.74); }

.filter-chip,
.page-btn,
.auth-tab,
.btn-social,
.social-mark,
.code-box,
.input,
.account-page .input,
.account-page .textarea,
.account-page .filepick,
.account-page select,
.account-page .admin-filter-select,
.checkout-page .input,
.checkout-page select.input,
.checkout-page .textarea,
.address-select,
.pay-select,
.variant-chip,
.size-chip,
.color-chip,
.qty-box {
	background: #fbf8f3;
	border-color: #e4d8c8;
	color: #171411;
	box-shadow: none;
}

/* "Adicionar cartão" / "Adicionar endereço" — dentro dos modais de conta e
 * dos blocos inline do checkout os inputs ficam com fundo branco puro para
 * destacar do beige do card pai. */
#cardForm .input,
#cardForm select.input,
#cardForm .textarea,
#addressForm .input,
#addressForm select.input,
#addressForm .textarea,
.new-address .input,
.new-address select.input,
.new-address .textarea,
.new-card .input,
.new-card select.input,
.new-card .textarea {
	background: #ffffff;
}

.auth-tab.is-active,
.account-menu-item.is-active,
.payment-method-input:checked + .payment-method-body,
.selector-card--payment input:checked + .selector-card-body,
.filter-chip.is-active,
.page-btn.is-active {
	background: rgb(var(--primary-rgb) / 0.14);
	color: #171411;
	border-color: rgb(var(--primary-rgb) / 0.22);
}

.account-menu-item,
.filter-chip,
.page-btn {
	background: #ffffff;
}

.site-footer {
	background: #ece7e0;
	border-top: 1px solid #ddd0bf;
}

.site-footer .footer-title,
.site-footer .footer-text,
.site-footer .footer-links a,
.site-footer .contact-item,
.site-footer .footer-bottom {
	color: #221c15;
}

.footer-bottom {
	background: transparent;
	border-top: 1px solid #d8c9b7;
	border-radius: 0;
	border-left: none;
	border-right: none;
	border-bottom: none;
	box-shadow: none;
}

.social-btn {
	background: #ffffff;
	border-color: #dbcfbe;
	color: #171411;
}

.payment-icons {
	gap: 10px;
}

.payment-badge {
	min-width: 84px;
	height: 40px;
	padding: 0 14px;
	border-radius: 10px;
	background: #ffffff;
	border: 1px solid #ddd1c2;
	box-shadow: none;
}

.payment-icons img {
	height: 18px;
	width: auto;
	filter: none;
	opacity: 1;
}

@media (max-width: 768px) {
	.site-header {
		background: rgb(255 255 255 / 0.98);
	}
	.hero-content {
		padding: 28px 18px 96px;
	}
	.payment-icons {
		justify-content: center;
	}
}


/* ===== V110 refinements: dark header + clearer sections ===== */
.site-header {
	background: linear-gradient(180deg, rgb(16 13 10 / 0.96), rgb(23 18 14 / 0.94));
	border-bottom: 1px solid rgb(var(--primary-rgb) / 0.16);
	box-shadow: 0 12px 28px rgb(11 8 5 / 0.18);
}

.site-header .nav-link,
.site-header .header-cat-link,
.site-header .header-search-input,
.site-header .header-icon,
.site-header .icon-btn,
.site-header .brand-name,
.site-header .header-search-clear,
.site-header .header-actions .icon-20 {
	color: #f5efe6;
}

.site-header .header-cat-link {
	color: rgb(245 239 230 / 0.84);
}

.site-header .header-cat-link:hover,
.site-header .icon-btn:hover {
	color: #ffffff;
}

.site-header .icon-btn {
	background: transparent;
	border-color: transparent;
}

.site-header .icon-btn:hover {
	background: rgb(var(--primary-rgb) / 0.12);
}

.site-header .header-search-input {
	background: #faf5ee;
	border-color: rgb(var(--primary-rgb) / 0.18);
	color: #1b1612;
	box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.92);
}

.site-header .header-search-input::placeholder {
	color: #8b7968;
}

.header-search-btn,
.btn-gold {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--primary-foreground);
	box-shadow: 0 10px 22px rgb(var(--primary-rgb) / 0.16);
}

.header-search-btn:hover,
.btn-gold:hover {
	background: rgb(var(--primary-rgb) / 0.90);
	border-color: rgb(var(--primary-rgb) / 0.90);
	box-shadow: 0 14px 26px rgb(var(--primary-rgb) / 0.20);
}

.btn-outline-gold {
	background: transparent;
	color: var(--primary);
	border-color: rgb(var(--primary-rgb) / 0.76);
}

.btn-outline-gold:hover {
	background: rgb(var(--primary-rgb) / 0.08);
	border-color: rgb(var(--primary-rgb) / 0.92);
	color: var(--primary);
}

.section-kicker {
	background: #fffdf9;
	border: 1px solid rgb(var(--primary-rgb) / 0.30);
	color: #6f5428;
	box-shadow: 0 8px 18px rgb(33 24 12 / 0.05);
}

.hero-kicker {
	background: rgb(var(--primary-rgb) / 0.14);
	border: 1px solid rgb(var(--primary-rgb) / 0.24);
	color: #f0d395;
	box-shadow: none;
}

.newsletter-box .section-title,
.newsletter-box .section-subtitle {
	text-align: center;
}

@media (max-width: 768px) {
	.site-header {
		background: linear-gradient(180deg, rgb(16 13 10 / 0.98), rgb(23 18 14 / 0.96));
	}
}

/* ===== Refino visual V110 ===== */
.site-header {
	background: linear-gradient(180deg, #12100d 0%, #191510 100%) !important;
	border-bottom-color: rgb(var(--primary-rgb) / 0.22) !important;
	box-shadow: 0 12px 28px rgb(10 7 4 / 0.24) !important;
}

.nav-link,
.header-cat-link,
.header-icon,
.site-header .icon-btn,
.site-header .icon-20,
.site-header .icon-18,
.site-header .icon-16 {
	color: #f8f3eb !important;
}

.header-search-input {
	background: #fffdf9 !important;
	border-color: #d8c3a1 !important;
	color: #171411 !important;
	box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.86) !important;
}

.header-search-input::placeholder {
	color: #8f7d6d !important;
}

.header-search-btn,
.btn-gold {
	background: var(--primary) !important;
	border: 2px solid var(--primary) !important;
	color: var(--primary-foreground) !important;
	box-shadow: 0 10px 22px rgb(var(--primary-rgb) / 0.18) !important;
}

.btn-gold:hover {
	background: rgb(var(--primary-rgb) / 0.92) !important;
	border-color: rgb(var(--primary-rgb) / 0.92) !important;
	transform: translateY(-1px);
}

.header-search-btn:hover {
	background: rgb(var(--primary-rgb) / 0.92) !important;
	border-color: rgb(var(--primary-rgb) / 0.92) !important;
}

.btn-outline-gold {
	background: transparent !important;
	color: var(--primary) !important;
	border: 2px solid var(--primary) !important;
	box-shadow: none !important;
}

.btn-outline-gold:hover {
	background: rgb(var(--primary-rgb) / 0.10) !important;
	border-color: var(--primary) !important;
	color: var(--primary) !important;
}

.hero-kicker {
	background: rgb(var(--primary-rgb) / 0.16) !important;
	border: 1px solid rgb(var(--primary-rgb) / 0.28) !important;
	color: #f3daa2 !important;
	box-shadow: none !important;
}

.section-kicker {
	background: #f5e7cd !important;
	border: 1px solid #dbb97f !important;
	color: #7e5720 !important;
	box-shadow: none !important;
	font-weight: 700;
}

@media (max-width: 768px) {
	.site-header {
		background: rgb(18 16 13 / 0.98) !important;
	}
}


/* ===== Balance tune V110 ===== */
:root {
	--primary: #d2a24e;
	--primary-rgb: 210 162 78;
	--ring: #d2a24e;
	--ring-rgb: 210 162 78;
}

body {
	background: linear-gradient(180deg, #f7f4ef 0%, #f3eee7 48%, #ede6dd 100%);
}

.site-header {
	background: linear-gradient(180deg, rgb(14 12 10 / 0.96), rgb(18 15 12 / 0.94));
	border-bottom: 1px solid rgb(var(--primary-rgb) / 0.18);
	box-shadow: 0 14px 34px rgb(10 8 6 / 0.24);
}

.nav-mobile {
	background: linear-gradient(180deg, #17130f 0%, #110e0c 100%);
	border-top-color: rgb(var(--primary-rgb) / 0.14);
}

.site-header .nav-link,
.site-header .header-cat-link,
.site-header .header-icon,
.site-header .icon-btn,
.site-header .brand-name,
.site-header .menu-toggle {
	color: #f7f1e7;
}

.site-header .icon-btn:hover,
.nav-mobile .nav-link:hover {
	background: rgb(var(--primary-rgb) / 0.12);
	color: #f7f1e7;
}

.header-search-input {
	background: #fffdf9;
	border-color: rgb(0 0 0 / 0.12);
	color: #171411;
	box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.88);
}

.header-search-input::placeholder {
	color: #8f7c69;
}

.btn-gold,
.header-search-btn {
	background: var(--primary);
	border-color: var(--primary);
	color: #17120d;
	box-shadow: none;
}

.btn-gold:hover,
.header-search-btn:hover {
	background: rgb(var(--primary-rgb) / 0.90);
	border-color: rgb(var(--primary-rgb) / 0.90);
	box-shadow: none;
}

.btn-outline-gold {
	background: transparent;
	color: var(--primary);
	border: 2px solid var(--primary);
	box-shadow: none;
}

.btn-outline-gold:hover {
	background: rgb(var(--primary-rgb) / 0.10);
	border-color: var(--primary);
	color: var(--primary);
}

.section-kicker,
.hero-kicker {
	background: #1a1511;
	border: 1px solid rgb(var(--primary-rgb) / 0.26);
	color: #efcf8a;
	box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.03);
}

.newsletter-box .section-kicker {
	display: none;
}

.newsletter-box {
	padding-top: 34px;
}

.feature,
.category-card,
.product-card,
.newsletter-box,
.auth-side,
.auth-card,
.account-sidebar,
.account-content,
.account-modal-dialog,
.admin-table-wrap,
.coupon-card,
.order-card,
.notification-item,
.address-card,
.payment-card,
.checkout-card,
.selector-card,
.ship-opt,
.checkout-item,
.pix-box,
.payment-method-body,
.selector-card--payment .selector-card-body,
.checkout-coupon-result,
.catalog-sidebar,
.filter-group,
.sort-box,
.products-empty,
.catalog-toolbar,
.pd-gallery,
.pd-info,
.pd-thumb,
.pd-benefit,
.pd-meta-card,
.pd-review-card,
.pd-related-card,
.pd-delivery-card {
	box-shadow: 0 14px 34px rgb(20 15 10 / 0.05);
}

.site-footer {
	background: #f4f4f4;
}

@media (max-width: 768px) {
	.site-header {
		background: linear-gradient(180deg, rgb(14 12 10 / 0.98), rgb(18 15 12 / 0.97));
	}
}

/* ===== Toast contrast V110 ===== */
.toast {
	background: linear-gradient(180deg, #1e1914 0%, #151110 100%);
	color: #f5efe6;
	border-color: rgb(var(--primary-rgb) / 0.28);
	box-shadow: 0 18px 42px rgb(10 7 4 / 0.32);
}

.toast--success {
	border-color: rgb(var(--primary-rgb) / 0.50);
}

.toast--error {
	border-color: rgb(239 67 67 / 0.65);
}

/* ===== Header restructure V112 ===== */
:root {
	--header-main-height: 72px;
	--header-cats-height: 46px;
	--header-height: calc(var(--header-main-height) + var(--header-cats-height));
}

.site-header {
	padding: 0;
	background: transparent;
	backdrop-filter: none;
	border-bottom: none;
	box-shadow: none;
}

.site-header-main {
	background: #0d0d0d;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid rgb(255 255 255 / 0.06);
}

.site-header-categories {
	background: #f4f4f4;
	border-bottom: 1px solid rgb(0 0 0 / 0.07);
}

.header-inner {
	height: var(--header-main-height);
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px;
}

.brand-logo {
	flex-shrink: 0;
}

.brand-logo img {
	width: 50px;
	height: 50px;
}

.header-search-wrap {
	min-width: 0;
	max-width: none;
	margin: 0;
	gap: 0;
}

.header-search {
	max-width: none;
	margin: 0;
}

.site-header .header-search-input {
	height: 44px;
	border-radius: 999px;
	background: #ffffff;
	border: 1px solid rgb(0 0 0 / 0.10);
	color: #1a1612;
	padding: 0 112px 0 18px;
	box-shadow: none;
}

.site-header .header-search-input::placeholder {
	color: #7d6a58;
}

.site-header .header-search-input:focus {
	border-color: rgb(var(--primary-rgb) / 0.72);
	box-shadow: 0 0 0 4px rgb(var(--primary-rgb) / 0.12);
}

.site-header .header-search-clear {
	color: #7d6a58;
	right: 62px;
	justify-content: center;
}

.site-header .header-search-btn {
	right: 6px;
	width: 44px;
	height: 32px;
	border-radius: 999px;
	background: var(--primary);
	border: 1px solid var(--primary);
	color: #17120d;
	box-shadow: none;
}

.site-header .header-search-btn:hover {
	background: rgb(var(--primary-rgb) / 0.92);
	border-color: rgb(var(--primary-rgb) / 0.92);
	filter: none;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-self: end;
	flex-shrink: 0;
}

.header-support {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 44px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid rgb(255 255 255 / 0.14);
	background: rgb(255 255 255 / 0.03);
	color: #f7f1e7;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-support:hover {
	background: rgb(255 255 255 / 0.06);
	border-color: rgb(var(--primary-rgb) / 0.36);
	color: #ffffff;
	transform: translateY(-1px);
}

.header-support-icon {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
}

.header-support-copy {
	display: flex;
	flex-direction: column;
	line-height: 1.02;
}

.header-support-copy small {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: rgb(247 241 231 / 0.75);
}

.header-support-copy strong {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
}

.site-header .icon-btn {
	width: 44px;
	height: 44px;
	padding: 0;
	border-radius: 12px;
	border: 1px solid rgb(255 255 255 / 0.14);
	background: rgb(255 255 255 / 0.03);
	color: #f7f1e7;
}

.site-header .icon-btn:hover {
	background: rgb(255 255 255 / 0.07);
	border-color: rgb(var(--primary-rgb) / 0.34);
	color: var(--primary);
}

.site-header .badge {
	top: -4px;
	right: -4px;
}

.header-categories {
	min-height: var(--header-cats-height);
	align-items: center;
	gap: 28px;
	padding: 0;
}

.header-cat-link {
	display: inline-flex;
	align-items: center;
	min-height: var(--header-cats-height);
	color: #171411;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	transition: color 160ms ease;
}

.header-cat-link:hover {
	color: var(--primary);
}

.header-cat-link--all {
	font-weight: 700;
}

.header-cat-link--all::before {
	content: "";
	width: 16px;
	height: 12px;
	margin-right: 10px;
	background:
		linear-gradient(#171411 0 0) left top / 16px 2px no-repeat,
		linear-gradient(#171411 0 0) left center / 16px 2px no-repeat,
		linear-gradient(#171411 0 0) left bottom / 16px 2px no-repeat;
	display: inline-block;
	border-radius: 999px;
}

.coupon-announcement {
	background: #050505;
	border-bottom: 1px solid rgb(255 255 255 / 0.12);
	backdrop-filter: none;
	box-shadow: none;
}

.coupon-announcement-inner {
	gap: 16px;
}

.coupon-announcement-copy {
	flex: 1;
	justify-content: center;
	font-size: 13px;
	color: rgb(248 243 235 / 0.86);
}

.coupon-announcement-copy strong {
	color: #ffffff;
}

.coupon-announcement-pill {
	height: 26px;
	padding: 0 12px;
	background: rgb(var(--primary-rgb) / 0.16);
	border-color: rgb(var(--primary-rgb) / 0.28);
	color: #f2d18f;
}

.coupon-announcement-actions {
	gap: 8px;
}

.coupon-banner-copy,
.coupon-banner-link {
	height: 32px;
	padding: 0 14px;
	border-radius: 8px;
	background: rgb(255 255 255 / 0.05);
	border-color: rgb(255 255 255 / 0.12);
	color: #f8f3eb;
}

.coupon-banner-copy:hover,
.coupon-banner-link:hover {
	background: rgb(255 255 255 / 0.10);
	border-color: rgb(var(--primary-rgb) / 0.34);
	color: #ffffff;
}

body.has-coupon-banner {
	--header-banner-h: 38px;
}

@media (max-width: 1180px) {
	.header-support {
		width: 44px;
		padding: 0;
		justify-content: center;
	}
}

/* P2-C — show "Atendimento" label down to 1024 (matches icon-btn labels threshold at 980) */
@media (max-width: 980px) {
	.header-support-copy {
		display: none;
	}
}

@media (max-width: 980px) {
	:root {
		--header-main-height: 92px;
		--header-cats-height: 44px;
	}

	.header-inner {
		height: auto;
		min-height: var(--header-main-height);
		grid-template-columns: auto 1fr auto;
		grid-template-areas:
			"logo actions actions"
			"search search search";
			gap: 14px;
		padding: 14px 0;
	}

	.brand-logo {
		grid-area: logo;
	}

	.header-actions {
		grid-area: actions;
	}

	.header-search-wrap {
		grid-area: search;
	}

	.header-categories {
		gap: 22px;
	}
}

@media (max-width: 720px) {
	body.has-coupon-banner {
		--header-banner-h: 44px;
	}

	.coupon-announcement-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
		padding-top: 0;
		padding-bottom: 0;
	}

	.coupon-announcement-copy {
		flex: 1 1 auto;
		min-width: 0;
		justify-content: flex-start;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		font-size: 11.5px;
	}

	.coupon-announcement-actions {
		width: auto;
		flex-shrink: 0;
	}

	.header-inner {
		gap: 12px;
	}

	.brand-logo img {
		width: 48px;
		height: 48px;
	}

	.site-header .icon-btn,
	.header-support {
		width: 42px;
		height: 42px;
		border-radius: 12px;
	}

	.header-categories {
		gap: 18px;
	}

	.header-cat-link {
		font-size: 13px;
	}
}


/* ===== V114 header polish ===== */
.coupon-announcement {
	padding-block: 8px;
	border-bottom: 0;
	position: relative;
	z-index: 12;
}

.coupon-announcement-inner {
	min-height: 44px;
	padding-block: 0;
	align-items: center;
}

.coupon-announcement-copy {
	align-items: center;
	line-height: 1.25;
}

.site-header-main {
	border-top: 1px solid rgb(255 255 255 / 0.24);
}

.site-header-categories {
	background: #f4f4f4;
	border-bottom: 1px solid rgb(0 0 0 / 0.08);
}

.site-header-categories .header-categories {
	min-height: var(--header-cats-height);
}

.site-header-categories .header-cat-link {
	color: #15110d !important;
	opacity: 1;
	font-weight: 600;
}

.site-header-categories .header-cat-link:hover {
	color: #8b6828 !important;
}

.site-header-categories .header-cat-link--all {
	font-weight: 700;
}

.site-header-categories .header-cat-link--all::before {
	content: none;
	display: none;
}

.site-header .icon-btn {
	border: 0;
	background: transparent;
	box-shadow: none;
}

.site-header .icon-btn:hover {
	border: 0;
	box-shadow: none;
}

@media (max-width: 720px) {
	.coupon-announcement {
		padding-block: 6px;
	}

	.coupon-announcement-inner {
		padding-block: 0;
		gap: 8px;
	}

	.site-header-categories .header-cat-link {
		color: #15110d !important;
	}
}

/* ===== V115 header fix ===== */
:root {
	--header-banner-h: 0px;
}

body.has-coupon-banner {
	--header-banner-h: 44px;
	padding-top: var(--header-banner-h);
}

.coupon-announcement {
	position: fixed;
	inset: 0 0 auto 0;
	height: var(--header-banner-h);
	padding: 0;
	background: #0d0d0d !important;
	border-bottom: 1px solid #ffffff !important;
	box-shadow: none !important;
	z-index: 60;
}

.coupon-announcement-inner {
	height: 100%;
	min-height: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 0;
	padding-bottom: 0;
}

.coupon-announcement-copy {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 0;
	flex: 1;
	line-height: 1;
	font-size: 13px;
	color: rgb(248 243 235 / 0.88);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.coupon-announcement-copy strong {
	color: #ffffff;
}

.coupon-announcement-pill {
	height: 24px;
	padding: 0 12px;
	background: rgb(var(--primary-rgb) / 0.16);
	border: 1px solid rgb(var(--primary-rgb) / 0.28);
	color: #f2d18f;
	flex-shrink: 0;
}

.coupon-announcement-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.coupon-banner-copy,
.coupon-banner-link {
	height: 32px;
	padding: 0 14px;
	border-radius: 8px;
	background: rgb(255 255 255 / 0.05);
	border: 1px solid rgb(255 255 255 / 0.12);
	color: #f8f3eb;
}

.coupon-banner-copy:hover,
.coupon-banner-link:hover {
	background: rgb(255 255 255 / 0.10);
	border-color: rgb(var(--primary-rgb) / 0.34);
	color: #ffffff;
}

.site-header {
	top: var(--header-banner-h);
}

.site-header-main {
	background: #0d0d0d;
	border-top: 0;
	border-bottom: 1px solid rgb(255 255 255 / 0.06);
}

.site-header-categories {
	background: #f4f4f4;
	border-top: 0;
	border-bottom: 1px solid rgb(0 0 0 / 0.08);
}

.site-header-categories .header-categories {
	display: flex;
	align-items: center;
	gap: 32px;
	min-height: var(--header-cats-height);
	padding: 0;
}

.site-header-categories .header-cat-link {
	color: #15110d !important;
	opacity: 1 !important;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
}

.site-header-categories .header-cat-link:hover {
	color: #8b6828 !important;
}

.site-header-categories .header-cat-link--all::before {
	content: none;
	display: none;
}

@media (max-width: 980px) {
	body.has-coupon-banner {
		--header-banner-h: 52px;
	}
}

@media (max-width: 720px) {
	body.has-coupon-banner {
		--header-banner-h: 44px;
	}

	.coupon-announcement-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
		padding-top: 0;
		padding-bottom: 0;
		height: auto;
	}

	.coupon-announcement-copy {
		flex: 1 1 auto;
		min-width: 0;
		justify-content: flex-start;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		font-size: 11.5px;
	}

	.coupon-announcement-actions {
		width: auto;
		flex-shrink: 0;
	}

	.site-header-categories .header-categories {
		gap: 20px;
	}

	.site-header-categories .header-cat-link {
		font-size: 14px;
	}
}


/* ===== V117 coupon announcement scroll behavior ===== */
body {
	--header-banner-h: 0px;
	--header-banner-offset: 0px;
}

body.has-coupon-banner {
	padding-top: 0 !important;
}

body.has-coupon-banner .hero-section {
	min-height: 100vh !important;
}

.coupon-announcement {
	position: relative !important;
	inset: auto !important;
	height: auto !important;
	padding: 0 !important;
	z-index: 11 !important;
	border-bottom: 2px solid rgb(255 255 255 / 0.38) !important;
}

.coupon-announcement-inner {
	min-height: 44px;
}

.site-header {
	top: var(--header-banner-offset, 0px) !important;
}

.site-header-main {
	border-top: 0 !important;
}

/* Wrapper que agrupa header + value-strip. No desktop fica transparente
   (display: contents) — header mantém position: fixed legacy. No mobile
   vira sticky: o browser empilha banner→stack→conteúdo sem JS de tracking
   de offset, eliminando o gap durante iOS overscroll bounce. */
.site-header-stack {
	display: contents;
}

@media (max-width: 1023.98px) {
	.site-header-stack {
		display: block;
		position: sticky;
		top: 0;
		z-index: 50;
	}
	.site-header-stack .site-header {
		position: relative !important;
		inset: auto !important;
		top: auto !important;
	}
	.site-header-stack .hp-value-strip {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
	}
	/* Como o stack sticky ocupa flow normal (vs o legacy position: fixed),
	   o conteúdo seguinte já fica abaixo. Zerar essas vars evita padding
	   duplicado nas páginas conta/auth/pos-compra/produto-detalhe que
	   calculam padding-top: calc(--header-height + --value-strip-h + N). */
	body {
		--header-height: 0px;
		--value-strip-h: 0px;
	}
}

@media (max-width: 720px) {
	.coupon-announcement-inner {
		min-height: 52px;
	}
}


/* ===== Home hero carousel V119 ===== */
.hero-carousel-section {
	position: relative;
	background: #0c0907;
	padding: 0;
	margin-top: var(--header-height);
	overflow: hidden;
}

.hero-banner-link {
	display: block;
	line-height: 0;
}

.hero-banner-img {
	display: block;
	width: 100%;
	height: auto;
	user-select: none;
	-webkit-user-drag: none;
}

.hero-carousel {
	position: relative;
	width: 100%;
	background: #0c0907;
	outline: none;
	overflow: hidden;
	aspect-ratio: 2116 / 496;
}

.hero-carousel-track {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	height: 100%;
	background: #0c0907;
	transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.hero-slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	min-width: 0;
}

.hero-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.hero-carousel:not(.is-ready) .hero-carousel-track {
	transition: none;
}

.hero-slide-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #0c0907;
	overflow: hidden;
}

.hero-slide img {
	user-select: none;
	-webkit-user-drag: none;
}

.hero-carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 52px !important;
	height: 52px !important;
	min-width: 52px !important;
	min-height: 52px !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
	border-radius: 999px !important;
	border: none !important;
	background: rgb(255 255 255 / 0.96) !important;
	color: #15120e;
	box-shadow: 0 10px 24px rgb(16 10 4 / 0.20);
	z-index: 3;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.hero-carousel-btn .icon {
	width: 24px;
	height: 24px;
	stroke-width: 2.5;
}

.hero-carousel-btn:hover {
	background: #ffffff;
	transform: translateY(-50%) scale(1.03);
	box-shadow: 0 10px 24px rgb(16 10 4 / 0.22);
}

.hero-carousel-btn:focus-visible {
	outline: 3px solid rgb(var(--primary-rgb) / 0.4);
	outline-offset: 2px;
}

.hero-carousel-btn--prev {
	left: 18px;
}

.hero-carousel-btn--next {
	right: 18px;
}

.hero-carousel-dots {
	position: absolute;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	z-index: 2;
}

.hero-carousel-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: rgb(255 255 255 / 0.44);
	box-shadow: 0 2px 8px rgb(0 0 0 / 0.18);
	transition: width 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.hero-carousel-dot.is-active {
	width: 32px;
	background: var(--primary);
}

.hero-carousel-dot:hover {
	transform: scale(1.08);
}

@media (max-width: 1100px) {
	.hero-carousel { aspect-ratio: 2116 / 496; }
	.hero-carousel-track { min-height: 0; }
}

@media (max-width: 768px) {
	.hero-carousel { aspect-ratio: 16 / 9; }
	.hero-carousel-track { min-height: 0; }

	.hero-carousel-btn {
		width: 40px !important;
		height: 40px !important;
		min-width: 40px !important;
		min-height: 40px !important;
	}

	.hero-carousel-btn .icon {
		width: 18px;
		height: 18px;
	}

	.hero-carousel-btn--prev {
		left: 10px;
	}

	.hero-carousel-btn--next {
		right: 10px;
	}

	.hero-carousel-dots {
		bottom: 10px;
		gap: 6px;
	}
}

@media (max-width: 480px) {
	.hero-carousel { aspect-ratio: 2 / 1; }

	.hero-carousel-btn {
		width: 36px !important;
		height: 36px !important;
		min-width: 36px !important;
		min-height: 36px !important;
	}

	.hero-carousel-btn .icon {
		width: 16px;
		height: 16px;
	}

	.hero-carousel-dot.is-active {
		width: 20px;
	}
}


/* ===== V128 home carousel slide horizontal ===== */
.page-home .home-main {
	padding-top: var(--header-height);
}

.page-home .hero-carousel-section {
	margin-top: 0 !important;
}

/* aspect-ratio is now on .hero-carousel */

.hero-slide-link {
	padding: 0;
}

.hero-carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px !important;
	height: 42px !important;
	min-width: 42px !important;
	min-height: 42px !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
	border-radius: 999px !important;
	border: none !important;
	background: rgb(255 255 255 / 0.96) !important;
	color: #15120e;
	box-shadow: 0 10px 24px rgb(16 10 4 / 0.20);
	z-index: 3;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.hero-carousel-btn .icon {
	width: 20px;
	height: 20px;
	stroke-width: 2.4;
}

.hero-carousel-btn--prev {
	left: 14px;
}

.hero-carousel-btn--next {
	right: 14px;
}

@media (max-width: 768px) {
	.page-home .home-main {
		padding-top: var(--header-height);
	}

	.hero-carousel-track {
		min-height: 180px;
	}

	.hero-carousel-btn {
		width: 42px !important;
		height: 42px !important;
		min-width: 42px !important;
		min-height: 42px !important;
	}
}

@media (max-width: 560px) {
	.hero-carousel-track {
		min-height: 150px;
	}
}


/* ===== V129 Reference Design ===== */

/* Variáveis – aumenta a linha principal para comportar ícone + label */
:root {
	--header-main-height: 80px;
}

/* --- Coupon bar --- */
.coupon-announcement {
	background: #0a0a0a !important;
	border-bottom: 2px solid #ffffff !important;
}

/* --- Header main row --- */
.site-header-main {
	background: #0a0a0a !important;
	border-top: 0 !important;
	border-bottom: 1px solid #ffffff !important;
}

/* Header inner: usa min-height para comportar conteúdo vertical */
.header-inner {
	height: auto !important;
	min-height: var(--header-main-height);
	padding-block: 14px;
}

/* --- Categorias --- */
.site-header-categories {
	background: #ffffff !important;
	border-top: 0 !important;
	border-bottom: 1px solid rgb(0 0 0 / 0.10) !important;
}

.site-header-categories .header-categories {
	justify-content: center;
	gap: 36px !important;
}

.site-header-categories .header-cat-link,
.site-header-categories .header-cat-link--all {
	color: #1a1a1a !important;
	text-transform: uppercase;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em;
	opacity: 1 !important;
}

.site-header-categories .header-cat-link:hover {
	color: #c9a84c !important;
}

/* --- Search bar --- */
.site-header .header-search-input::placeholder {
	color: #9e9e9e !important;
}

/* --- Header actions – layout horizontal com espaçamento uniforme --- */
.header-actions {
	gap: 0 !important;
}

/* Support – vertical (ícone em cima, label embaixo) */
.header-support {
	flex-direction: column !important;
	gap: 4px !important;
	height: auto !important;
	padding: 8px 14px !important;
	border: 0 !important;
	background: transparent !important;
	align-items: center !important;
	text-align: center;
	min-width: 72px;
}

.header-support:hover {
	background: transparent !important;
	border: 0 !important;
	transform: none !important;
}

.header-support-icon {
	width: auto !important;
	height: auto !important;
	color: #ffffff !important;
}

.header-support-copy {
	align-items: center !important;
}

.header-support-copy small {
	display: none !important;
}

.header-support-copy strong {
	font-size: 11px !important;
	font-weight: 500 !important;
	color: #ffffff !important;
	letter-spacing: 0.04em !important;
	line-height: 1 !important;
}

.header-support:hover .header-support-icon,
.header-support:hover .header-support-copy strong {
	color: #c9a84c !important;
}

/* Icon buttons – vertical com label via ::after */
.site-header .icon-btn {
	flex-direction: column !important;
	gap: 4px !important;
	width: auto !important;
	height: auto !important;
	padding: 8px 14px !important;
	border: 0 !important;
	background: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: #ffffff !important;
	min-width: 72px;
	position: relative;
}

.site-header .icon-btn:hover {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: #c9a84c !important;
}

.header-account-btn::after {
	content: "Minha conta";
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1;
	color: inherit;
	white-space: nowrap;
}

.header-cart-btn::after {
	content: "Meu carrinho";
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1;
	color: inherit;
	white-space: nowrap;
}

/* Badge – reposicionado para o layout vertical */
.site-header .badge {
	top: 2px !important;
	right: 12px !important;
}

/* --- Responsivo: remove labels em telas menores --- */
@media (max-width: 980px) {
	.header-account-btn::after,
	.header-cart-btn::after {
		display: none;
	}

	.header-support-copy {
		display: none !important;
	}

	.header-support,
	.site-header .icon-btn {
		min-width: auto !important;
		padding: 8px !important;
	}

	.site-header-categories .header-categories {
		gap: 20px !important;
	}
}


/* ===== Carrossel: track translateX ===== */
/* Hero carousel overrides consolidated — uses aspect-ratio on .hero-carousel */


/* ===== Coupon announcement carousel ===== */
.coupon-announcement {
	overflow: hidden !important;
	height: 44px !important;
	min-height: 0 !important;
}

@media (max-width: 720px) {
	.coupon-announcement {
		height: 52px !important;
	}
}

.coupon-track {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	height: 100%;
	transition: transform 560ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}

.coupon-slide {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	height: 100%;
	/* Impede que conteúdo longo vaze para o slide vizinho */
	overflow: hidden;
	min-width: 0;
}

/* Trunca o headline (strong) com ellipsis — a mensagem extra (<span>) também
   ganha min-width:0 pra permitir encolhimento sem empurrar os vizinhos */
.coupon-announcement-copy {
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
}
.coupon-announcement-copy > strong,
.coupon-announcement-copy > span:not(.coupon-announcement-pill) {
	min-width: 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
/* O pill não deve encolher — mantém legível como etiqueta */
.coupon-announcement-pill {
	flex-shrink: 0;
}


/* ===== Light-theme contrast fix ===== */
.page-loader-card {
	background: #ffffff;
	border-color: #e7ddcf;
	box-shadow: 0 18px 60px rgb(20 15 10 / 0.15);
}

.page-loader-sub {
	color: #756453;
}

.page-loader-spinner {
	border-color: #e4d8c8;
	border-top-color: var(--primary);
}

.cart-overlay {
	background: rgb(0 0 0 / 0.45);
}

.modal-overlay {
	background: rgb(0 0 0 / 0.50);
}

.modal {
	background: #ffffff;
	border-color: #e7ddcf;
	box-shadow: 0 24px 70px rgb(20 15 10 / 0.18);
}

.modal-header {
	border-bottom-color: #eee1d1;
}

.page-loader {
	background: rgb(0 0 0 / 0.45);
}

/* --- Cart scrollbar light-theme fix --- */
.cart-items {
    scrollbar-color: rgb(var(--primary-rgb) / 0.30) rgb(0 0 0 / 0.04);
}
.cart-items::-webkit-scrollbar-track {
    background: rgb(0 0 0 / 0.03);
}
.cart-items::-webkit-scrollbar-thumb {
    background: rgb(var(--primary-rgb) / 0.25);
}
.cart-items::-webkit-scrollbar-thumb:hover {
    background: rgb(var(--primary-rgb) / 0.40);
}

/* --- FOUC prevention --- */
.products-grid:empty,
.related-track:empty,
.catalog-grid:empty {
    min-height: 200px;
}


/* ===== Brands carousel ===== */
.brands-carousel-section {
	padding: 56px 0 40px;
	background: transparent;
}

.brands-carousel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
}

.brands-viewport {
	flex: 1;
	overflow-x: auto;
	/* Same trick as .categories-grid--carousel: explicit overflow-y hidden
	 * plus vertical padding so shadows don't create a phantom scroll area
	 * that would capture mouse-wheel events. Extra bottom padding leaves
	 * room for the hard 3D shadow under each tag (5–7px offset). */
	overflow-y: hidden;
	padding: 6px 0 28px;
	margin-bottom: -18px;
	border-radius: 14px;
	scrollbar-width: none;
	-ms-overflow-style: none;
	cursor: grab;
	user-select: none;
}

.brands-viewport::-webkit-scrollbar {
	display: none;
}

.brands-viewport.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
}

.brands-viewport.is-dragging a {
	pointer-events: none;
}

.brands-track {
	display: flex;
	/* 32px gap sized so that 6 cards (148px each) + 5 gaps + horizontal
	 * padding = 1048px, fitting the ~1088px usable area inside the viewport
	 * at max container width (1280) without clipping the last tag. */
	gap: 32px;
	/* Horizontal padding has to accommodate BOTH the skew overhang
	 * (skewX(-12°) on a 54px-tall card pushes the top-right ~6px further
	 * right and the bottom-left ~6px further left) AND the ambient drop
	 * shadow blur (14px normal, 22px on hover). ~26px covers hover-state
	 * shadow on top of skew without clipping the last tag. */
	padding: 0 26px;
	/* `safe center` centers the cards when they fit, but falls back to
	 * flex-start when the content overflows the viewport — avoiding the
	 * classic "centered overflow chops the first card" bug. */
	justify-content: safe center;
}

/* Fixed width so cards don't shrink with the viewport. At max-width
 * (container ~1140px inside arrows) exactly 6 fit; as the screen
 * narrows, the tail brands get eaten by the overflow edge and become
 * accessible via drag/arrows. */
.brand-slide {
	flex: 0 0 148px;
	min-width: 0;
}

/* Tag-style card — flat yellow fill, thin black outline, hard solid
 * bottom shadow for the 3D "extruded sticker" look. The whole card
 * skews; the inner text counter-skews so it reads upright. Matches the
 * reference image (bold italic black text inside a yellow parallelogram
 * with a chunky dark underside). */
.brand-card {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 54px;
	border-radius: 3px;
	/* Midpoint between #fbd42c (bright reference) and --primary #DFB857
	 * (brand gold) — warmer and saturated without going neon. */
	background: #edc642;
	border: 2px solid #0a0a0a;
	text-decoration: none;
	padding: 8px 16px;
	transform: skewX(-12deg);
	transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
	overflow: hidden;
	/* First shadow = the solid "thickness" of the tag (no blur).
	 * Second shadow = a soft ambient drop so it doesn't feel stuck
	 * to the background. */
	box-shadow:
		0 5px 0 0 #0a0a0a,
		0 9px 14px rgb(0 0 0 / 0.18);
}

.brand-card:hover {
	transform: skewX(-12deg) translateY(-2px);
	box-shadow:
		0 7px 0 0 #0a0a0a,
		0 14px 22px rgb(0 0 0 / 0.24);
	filter: brightness(1.04);
}

.brand-card:active {
	transform: skewX(-12deg) translateY(2px);
	box-shadow:
		0 3px 0 0 #0a0a0a,
		0 6px 10px rgb(0 0 0 / 0.18);
}

.brand-card-name {
	font-family: "Montserrat", "Impact", system-ui, sans-serif;
	font-size: 17px;
	font-weight: 900;
	font-style: italic;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #0a0a0a;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: inline-block;
	transform: skewX(12deg);
}

.brands-arrow {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	border: 1px solid #e4d8c8;
	background: #ffffff;
	color: #171411;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.brands-arrow:hover {
	transform: translateY(-1px);
	border-color: rgb(var(--primary-rgb) / 0.35);
	background: rgb(var(--primary-rgb) / 0.08);
}

.brands-arrow:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	transform: none;
}

.brands-arrow .icon {
	width: 20px;
	height: 20px;
}

.brands-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 18px;
}

.brands-dots:empty {
	display: none;
}

.brands-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	border: none;
	padding: 0;
	background: #e4d8c8;
	cursor: pointer;
	transition: width 180ms ease, background-color 180ms ease;
}

.brands-dot.is-active {
	width: 28px;
	background: var(--primary);
}

/* Responsive: pill-ish mobile look — smaller cards, rounded corners, no skew */
@media (max-width: 1023.98px) {
	.brands-track {
		gap: 16px;
		padding: 0 16px;
	}
	.brand-slide {
		flex: 0 0 108px;
	}
	.brand-card {
		height: 44px;
		border-radius: 14px;
		border-width: 1.5px;
		padding: 6px 10px;
		transform: none;
		box-shadow:
			0 3px 0 0 #0a0a0a,
			0 6px 10px rgb(0 0 0 / 0.16);
	}
	.brand-card:hover  { transform: translateY(-1px); }
	.brand-card:active { transform: translateY(1px); }
	.brand-card-name {
		font-size: 12.5px;
		transform: none;
	}
	.brands-carousel-section {
		padding: 36px 0 28px;
	}
}

@media (max-width: 480px) {
	.brand-slide {
		flex: 0 0 96px;
	}
	.brand-card {
		height: 40px;
		border-radius: 12px;
		padding: 6px 8px;
	}
	.brand-card-name {
		font-size: 11.5px;
	}
	.brands-track {
		gap: 12px;
		padding: 0 12px;
	}
}


/* ===== Home CTA center ===== */
.home-cta-center {
	text-align: center;
	margin-top: 36px;
}

/* ===== Home trust bar ===== */
.home-trust {
	padding: 0;
	margin-top: -1px;
}

.home-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid #e7ddcf;
	border-bottom: 1px solid #e7ddcf;
}

.home-trust-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 22px 20px;
	border-right: 1px solid #e7ddcf;
	color: var(--foreground);
}

.home-trust-item:last-child {
	border-right: none;
}

.home-trust-item > i {
	color: var(--primary);
	flex-shrink: 0;
}

.home-trust-item strong {
	display: block;
	font-size: 14px;
	font-weight: 800;
	color: #171411;
	line-height: 1.2;
}

.home-trust-item span {
	display: block;
	font-size: 12px;
	color: #8c7865;
	margin-top: 2px;
}

@media (max-width: 1024px) {
	.home-trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.home-trust-item:nth-child(2) {
		border-right: none;
	}
	.home-trust-item:nth-child(1),
	.home-trust-item:nth-child(2) {
		border-bottom: 1px solid #e7ddcf;
	}
}

@media (max-width: 480px) {
	.home-trust-grid {
		grid-template-columns: 1fr;
	}
	.home-trust-item {
		border-right: none;
		border-bottom: 1px solid #e7ddcf;
	}
	.home-trust-item:last-child {
		border-bottom: none;
	}
}


/* ===== Cart payment hint (MP do lojista inativo) =====
 * Aparece no cart drawer quando /payment-availability devolve
 * {card:false, pix:false}. Mensagem amigável que aponta o cliente pro
 * WhatsApp — único canal funcional naquele momento. O botão "Finalizar
 * compra" entra em estado disabled ao lado dela; "Pedir pelo WhatsApp"
 * fica em destaque. Pattern: bloqueio em cascata (cart → checkout). */
.cart-payment-hint {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin: 0 0 12px;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid rgb(201 168 76 / 0.55);
	background: linear-gradient(180deg, rgb(252 247 230 / 0.95), rgb(248 240 215 / 0.95));
	color: #4a3f25;
	font-size: 13px;
	line-height: 1.5;
}
.cart-payment-hint-icon {
	flex-shrink: 0;
	color: #b58a2a;
	width: 18px;
	height: 18px;
	display: inline-flex;
	margin-top: 1px;
}
.cart-payment-hint-icon svg {
	width: 100%;
	height: 100%;
}
.cart-payment-hint-text strong {
	display: block;
	margin-bottom: 2px;
	color: #3a2f10;
}
/* Quando o checkout principal está disabled, dar destaque visual ao WhatsApp
 * pra deixar claro que ele é a saída agora. */
.cart-checkout:disabled + .cart-checkout-whatsapp {
	box-shadow: 0 0 0 2px rgb(37 211 102 / 0.35);
	transform: translateY(-1px);
}

/* ===== Cart checkout row (store + WhatsApp) ===== */
.cart-checkout-row {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cart-checkout-row .cart-checkout {
	width: 100%;
}

.cart-checkout-whatsapp {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px 24px;
	border-radius: 8px;
	border: 1px solid #25d366;
	background: transparent;
	color: #25d366;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.cart-checkout-whatsapp:hover {
	background: #25d366;
	color: #ffffff;
	transform: translateY(-1px);
}

.cart-checkout-whatsapp .icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
}

/* ===== Cart share (header icon + options modal) ===== */
.cart-drawer .cart-header {
	gap: 8px;
}

.cart-share-open {
	margin-left: auto;
	color: var(--foreground);
	transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.cart-share-open:hover {
	color: var(--primary);
	background: rgb(var(--primary-rgb) / 0.12);
	transform: translateY(-1px);
}

.cart-share-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
}

.cart-share-modal.is-open {
	display: block;
}

.cart-share-backdrop {
	position: absolute;
	inset: 0;
	background: rgb(0 0 0 / 0.55);
	opacity: 0;
	transition: opacity 200ms ease;
}

.cart-share-modal.is-open .cart-share-backdrop {
	opacity: 1;
}

.cart-share-dialog {
	position: fixed;
	left: 50%;
	top: 50%;
	width: min(460px, calc(100vw - 32px));
	transform: translate(-50%, -50%) scale(0.96);
	background: var(--card);
	color: var(--foreground);
	border: 1px solid var(--border);
	border-radius: 16px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
	padding: 18px 18px 20px;
	opacity: 0;
	transition: opacity 200ms ease, transform 200ms ease;
}

.cart-share-modal.is-open .cart-share-dialog {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.cart-share-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 6px;
}

.cart-share-title {
	margin: 0;
	font-family: "Playfair Display", serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.cart-share-close {
	color: var(--muted-foreground);
}

.cart-share-close:hover {
	color: var(--foreground);
}

.cart-share-desc {
	margin: 0 0 16px;
	color: var(--muted-foreground);
	font-size: 13.5px;
	line-height: 1.45;
}

.cart-share-options {
	display: grid;
	gap: 10px;
}

.cart-share-option {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 14px;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--foreground);
	cursor: pointer;
	text-align: left;
	transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cart-share-option-icon {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	flex-shrink: 0;
}

.cart-share-option-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.cart-share-option-body strong {
	font-size: 14.5px;
	font-weight: 700;
}

.cart-share-option-body small {
	font-size: 12.5px;
	color: var(--muted-foreground);
	line-height: 1.35;
}

.cart-share-option--wa .cart-share-option-icon {
	background: rgba(37, 211, 102, 0.15);
	color: #25D366;
}

.cart-share-option--wa:hover {
	border-color: #25D366;
	background: rgba(37, 211, 102, 0.07);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.18);
}

.cart-share-option--copy .cart-share-option-icon {
	background: rgb(var(--primary-rgb) / 0.16);
	color: var(--primary);
}

.cart-share-option--copy:hover {
	border-color: var(--primary);
	background: rgb(var(--primary-rgb) / 0.06);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgb(var(--primary-rgb) / 0.22);
}

.cart-share-option:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgb(var(--primary-rgb) / 0.28);
}

@media (max-width: 380px) {
	.cart-share-dialog {
		padding: 16px 14px 18px;
	}

	.cart-share-option {
		padding: 12px;
	}
}

/* =====================================================================
   ========== RESPONSIVE SYSTEM (V-Resp) ================================
   Breakpoints:
     XXL  >= 1440px  (desktop ultrawide)
     XL   1200–1439  (desktop padrão)
     LG   1024–1199  (laptop)
     MD   768–1023   (tablet portrait)
     SM   576–767    (mobile grande)
     XS   < 576      (mobile padrão/pequeno)

   Regra crítica: .admin-only é sempre oculto em < 1024px (tablet + mobile).
   Em >= 1024px, volta a depender de html.is-admin (definido em conta.css).
   ===================================================================== */

/* ---------- Global safety (somente abaixo de 1024px) ---------- */
@media (max-width: 1023.98px) {
	html, body {
		max-width: 100%;
		/* `clip` evita scroll horizontal sem virar scroll container — mantém
		   `position: sticky` funcionando no `.site-header-stack`. */
		overflow-x: clip;
	}
	img, video {
		max-width: 100%;
		height: auto;
	}
}

/* ---------- Mobile menu (hamburger + drawer) ----------
   Injetado via scripts/script.js dentro do .header-actions. */
.mobile-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	color: #f7f1e7;
	cursor: pointer;
	border-radius: 12px;
	padding: 0;
}

.mobile-menu-toggle:hover {
	color: var(--primary);
	background: rgb(255 255 255 / 0.06);
}

.mobile-menu-toggle .icon {
	width: 26px;
	height: 26px;
}

.mobile-nav-overlay {
	position: fixed;
	inset: 0;
	background: rgb(0 0 0 / 0.6);
	opacity: 0;
	pointer-events: none;
	transition: opacity 260ms ease;
	z-index: 95;
}

.mobile-nav-drawer {
	position: fixed;
	top: 0;
	left: 0;
	height: 100dvh;
	height: 100vh;
	width: min(340px, 88vw);
	max-width: 100%;
	background: var(--card);
	border-right: 1px solid var(--border);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
	transform: translateX(-105%);
	transition: transform 0.3s ease;
	z-index: 96;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

body.mobile-nav-open {
	overflow: hidden;
}

body.mobile-nav-open .mobile-nav-overlay {
	opacity: 1;
	pointer-events: auto;
}

body.mobile-nav-open .mobile-nav-drawer {
	transform: translateX(0);
}

.mobile-nav-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 18px 14px;
	border-bottom: 1px solid var(--border);
}

.mobile-nav-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--foreground);
}

.mobile-nav-brand img {
	width: 42px;
	height: 42px;
	border-radius: 9999px;
	object-fit: cover;
}

.mobile-nav-user-avatar {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	overflow: hidden;
	background: rgb(var(--primary-rgb) / 0.12);
	border: 1.5px solid rgb(var(--primary-rgb) / 0.30);
	flex-shrink: 0;
}

.mobile-nav-user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	border: 0;
}

.mobile-nav-brand strong {
	font-family: "Playfair Display", serif;
	font-size: 17px;
	font-weight: 700;
}

.mobile-nav-close {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	color: var(--foreground);
	cursor: pointer;
	border-radius: 12px;
}

.mobile-nav-close:hover {
	color: var(--primary);
	background: rgb(var(--primary-rgb) / 0.08);
}

.mobile-nav-search {
	padding: 14px 16px 6px;
}

.mobile-nav-search form {
	position: relative;
	display: flex;
	align-items: center;
}

.mobile-nav-search input {
	width: 100%;
	height: 44px;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: rgb(255 255 255 / 0.04);
	color: var(--foreground);
	padding: 0 52px 0 14px;
	outline: none;
	font-size: 14px;
}

.mobile-nav-search input:focus {
	border-color: rgb(var(--primary-rgb) / 0.55);
	box-shadow: 0 0 0 3px rgb(var(--primary-rgb) / 0.16);
}

.mobile-nav-search button {
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 36px;
	border-radius: 10px;
	border: 0;
	background: var(--primary);
	color: var(--primary-foreground);
	display: grid;
	place-items: center;
	cursor: pointer;
}

/* Mobile nav: admin section is intentionally never rendered. Admin tools
   require desktop. Kept in the markup for backwards-compat but always
   hidden — any viewport, regardless of is-admin. */
.mobile-nav-admin { display: none !important; }

.mobile-nav-section {
	padding: 10px 0;
	border-bottom: 1px solid var(--border);
}

.mobile-nav-section:last-child {
	border-bottom: 0;
}

.mobile-nav-section-title {
	padding: 10px 18px 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted-foreground);
}

.mobile-nav-links {
	display: flex;
	flex-direction: column;
}

.mobile-nav-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 18px;
	color: var(--foreground);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	min-height: 44px;
	transition: background-color 160ms ease, color 160ms ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
	background: rgb(var(--primary-rgb) / 0.08);
	color: var(--primary);
}

.mobile-nav-link.is-active {
	background: rgb(var(--primary-rgb) / 0.14);
	color: var(--primary);
	font-weight: 700;
	border-left: 3px solid var(--primary);
	padding-left: 15px;
}

.mobile-nav-link .icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	opacity: 0.85;
}

.mobile-nav-logout {
	width: 100%;
	text-align: left;
	border: 0;
	background: transparent;
	cursor: pointer;
	font: inherit;
	color: var(--destructive, #ef4343);
}

.mobile-nav-logout:hover {
	background: rgb(239 67 67 / 0.08);
	color: var(--destructive, #ef4343);
}

.mobile-nav-footer {
	margin-top: auto;
	padding: 18px;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: var(--muted-foreground);
	font-size: 12.5px;
}
.mobile-nav-author {
	font-size: 0.85em;
	opacity: 0.72;
}
.mobile-nav-author a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
	transition: color 0.18s ease, text-decoration-color 0.18s ease;
}
.mobile-nav-author a:hover,
.mobile-nav-author a:focus-visible {
	color: var(--gold, var(--accent, currentColor));
	text-decoration-color: currentColor;
}

/* ---------- Admin-only: ocultar em telas < 1024px ----------
   Exceção (mobile-friendly): admin_pedidos + admin_reembolsos. UX é lista
   + ações pontuais — admin precisa gerenciar pedidos/reembolsos em qualquer
   lugar. CRUD pesado (Produtos, Categorias, Marcas, Cupons, Usuários,
   Tutoriais) continua restrito ao desktop. */
@media (max-width: 1023.98px) {
	html:not(.is-admin) .admin-only,
	html.is-admin .admin-only,
	html.is-admin .account-menu-group.admin-only,
	html.is-admin .mobile-nav-admin,
	.account-panel[data-panel="admin_usuarios"],
	.account-panel[data-panel="admin_pedidos"],
	.account-panel[data-panel="admin_reembolsos"],
	.account-panel[data-panel="admin_produtos"],
	.account-panel[data-panel="admin_categorias"],
	.account-panel[data-panel="admin_marcas"],
	.account-panel[data-panel="admin_cupons"],
	.account-panel[data-panel="admin_tutoriais"],
	.account-panel[data-panel="admin_assinatura"],
	.account-panel[data-panel="admin_configuracoes"],
	.admin-controls-wrap,
	.admin-order-controls {
		display: none !important;
	}
	/* Em admin_pedidos/admin_reembolsos no mobile, esconde só os botões
	   de CRUD/ações pesadas (add produto/categoria/etc.); mantém acessíveis
	   filtros e controles que pertencem ao fluxo de pedido/reembolso. */
	#adminAddProductBtn,
	#adminAddCategoryBtn,
	#adminAddBrandBtn,
	#adminAddCouponBtn {
		display: none !important;
	}
}

/* ---------- Container fluido ---------- */
@media (max-width: 1199.98px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 767.98px) {
	.container {
		padding-left: 16px;
		padding-right: 16px;
	}
}

@media (max-width: 575.98px) {
	.container {
		padding-left: 14px;
		padding-right: 14px;
	}
}

/* ---------- Header: mostra hamburger e drawer em mobile ---------- */
@media (max-width: 1023.98px) {
	:root {
		--header-cats-height: 0px;
		--header-main-height: 76px;
	}

	.mobile-menu-toggle {
		display: inline-flex;
	}

	/* Hide legacy nav-mobile (from old header) that conflicts */
	.nav-mobile,
	.nav-desktop {
		display: none !important;
	}

	/* Header em mobile: logo + actions (busca vive no drawer).
	   O elemento combina .container + .header-inner — o base usa shorthand
	   padding que zera os lados; restauramos 16px horizontal aqui. */
	.header-inner {
		grid-template-columns: auto 1fr auto;
		grid-template-areas: "logo . actions";
		gap: 12px;
		padding: 8px 16px;
		height: auto;
		min-height: 64px;
	}

	.brand-logo {
		grid-area: logo;
	}
	.header-actions {
		grid-area: actions;
	}

	/* Busca some do header em todas as telas <1024px (fica só no drawer) */
	.header-search-wrap {
		display: none !important;
	}

	.header-support {
		display: none !important;
	}

	.site-header .icon-btn {
		width: 42px;
		height: 42px;
	}

	.brand-logo img {
		width: 44px;
		height: 44px;
	}

	.site-header-categories {
		display: none;
	}
}

/* Small phones: icons a pinch menores */
@media (max-width: 575.98px) {
	.brand-logo img {
		width: 40px;
		height: 40px;
	}

	.site-header .icon-btn {
		width: 40px;
		height: 40px;
	}

	.site-header .icon-btn .icon,
	.site-header .icon-btn i[data-lucide] {
		width: 20px;
		height: 20px;
	}
}

/* ---------- Product grid: 3 (desktop) > 2 (tablet) > 1 (mobile XS) ---------- */
@media (min-width: 576px) and (max-width: 1023.98px) {
	.products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
}

@media (max-width: 575.98px) {
	.products-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.product-media {
		height: clamp(260px, 80vw, 360px);
	}
	.product-body {
		padding: 16px;
	}
	.product-name {
		font-size: 18px;
	}
}

/* Always reveal actions on touch devices (no hover possible) */
@media (hover: none) {
	.product-actions {
		opacity: 1;
		background: transparent;
		position: static;
		padding: 10px 14px 0;
		gap: 8px;
	}
	.product-card:hover {
		transform: none;
	}
}

/* ---------- Footer ---------- */
@media (max-width: 767.98px) {
	.site-footer {
		padding: 40px 0 24px;
	}
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.footer-brand img {
		width: 72px;
		height: 72px;
	}
	.footer-title {
		font-size: 18px;
	}
	.payment-icons {
		flex-wrap: wrap;
		justify-content: center;
	}
	.footer-bottom {
		gap: 12px;
	}
}

/* ---------- Cart drawer: full-width on small mobile ---------- */
@media (max-width: 575.98px) {
	.cart-drawer {
		width: 100vw;
		max-width: 100vw;
		border-left: 0;
	}
	.cart-header {
		padding: 14px 14px 10px;
	}
	.cart-checkout-row {
		flex-direction: column;
	}
	.cart-checkout-row .btn {
		width: 100%;
	}
}

/* ---------- Touch-friendly buttons ---------- */
@media (max-width: 767.98px) {
	.btn {
		min-height: 44px;
		padding: 12px 20px;
	}
	.btn-sm {
		min-height: 40px;
	}
	.icon-btn {
		min-width: 44px;
		min-height: 44px;
	}
}

/* ---------- Section spacing ---------- */
@media (max-width: 767.98px) {
	.section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.section-heading {
		margin-bottom: 24px;
	}
}

/* ---------- Hero (generic) ---------- */
@media (max-width: 767.98px) {
	.hero-section {
		min-height: auto;
		padding: calc(var(--header-height) + 24px) 0 48px;
	}
	.hero-title {
		font-size: clamp(2rem, 6vw + 1rem, 3.5rem);
		flex-direction: column;
		gap: 0;
	}
	.hero-cta {
		flex-direction: column;
		align-items: stretch;
	}
	.hero-cta .btn {
		width: 100%;
	}
}

/* ---------- Toast container: bottom-right + compact on small screens.
   Top placement obstrui o header sticky; mover pra baixo-direita libera
   o topo e ainda fica visível sem cobrir conteúdo crítico. Largura mais
   apertada (max 78vw) pra não ocupar a tela inteira. ---------- */
@media (max-width: 480px) {
	.toast-container {
		right: 12px;
		left: auto;
		top: auto;
		bottom: 16px;
		justify-items: end;
	}
	.toast {
		min-width: 0;
		max-width: 78vw;
		width: auto;
		padding: 10px 12px;
		font-size: 12.5px;
		line-height: 1.35;
		border-radius: 12px;
		box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
		transform: translateY(16px);
	}
	.toast--show {
		transform: translateY(0);
	}
}

/* ---------- Coupon announcement: responsive stacking ---------- */
@media (max-width: 575.98px) {
	.coupon-announcement-inner {
		font-size: 12px;
	}
	.coupon-banner-copy,
	.coupon-banner-link {
		font-size: 12px;
		padding: 0 10px;
	}
}

/* ---------- Fluid heading polish (caps at desktop values) ---------- */
.section-subtitle { font-size: clamp(0.875rem, 0.82rem + 0.25vw, 1rem); }
.section-kicker   { font-size: clamp(0.6875rem, 0.65rem + 0.2vw, 0.75rem); }

/* ---------- Button labels: alternância texto longo (desktop) vs curto (mobile) ---------- */
.btn-label-short { display: none; }
.btn-label-full  { display: inline; }

@media (max-width: 767.98px) {
	.btn-label-short { display: inline; }
	.btn-label-full  { display: none; }
}

/* =====================================================================
   ========== VALUE STRIP — GLOBAL (aplicada em todas as páginas) =======
   (estilos movidos de home.css p/ funcionar em produto-detalhe, produtos,
   conta, auth, pos-compra — onde o JS injeta o strip via ensureValueStrip)
   ===================================================================== */

.hp-value-strip {
	background: #1a1510;
	border-bottom: 2px solid var(--primary);
}

.hp-value-strip-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
}

.hp-value-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	color: rgb(245 240 230 / 0.88);
	font-size: 13px;
	white-space: nowrap;
	position: relative;
}

.hp-value-item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 18px;
	background: rgb(255 255 255 / 0.14);
}

.hp-value-item i {
	color: var(--primary);
	flex-shrink: 0;
}

.hp-value-item strong {
	color: #ffffff;
	font-weight: 800;
}

/* Strip injetado via JS (fora da home): apenas mobile.
   Na home o strip está no markup sem a modifier --injected e aparece em ambos. */
@media (min-width: 1024px) {
	.hp-value-strip--injected { display: none !important; }
}

/* Mobile: fixo abaixo do header + carousel 1-item-por-vez via JS */
@media (max-width: 1023.98px) {
	.hp-value-strip {
		position: fixed;
		top: var(--value-strip-top, 60px);
		left: 0;
		right: 0;
		z-index: 49;
		margin-top: 0;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
	}

	.hp-value-strip .container {
		padding: 0 !important;
		max-width: 100%;
		overflow: hidden;
	}

	.hp-value-strip-inner {
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow: visible !important;
		justify-content: flex-start !important;
		align-items: stretch !important;
		padding: 0 !important;
		margin: 0 !important;
		gap: 0 !important;
		width: 100%;
		transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
		will-change: transform;
		backface-visibility: hidden;
	}

	.hp-value-item {
		flex: 0 0 100%;
		width: 100%;
		min-width: 0;
		justify-content: center;
		padding: 12px 16px;
		white-space: nowrap;
		font-size: 13px;
		gap: 10px;
	}

	.hp-value-item:not(:last-child)::after {
		display: none !important;
	}
}

/* =====================================================================
   Footer — mobile allowlist
   Mantém o footer no mobile SÓ nas páginas index, produto-detalhe e
   produtos. Em conta, auth, pagamento, pós-compra, termos, política etc
   o footer é escondido porque polui telas curtas / de transação.
   Desktop (>= 1024px) não é afetado.
   ===================================================================== */
@media (max-width: 1023.98px) {
	.site-footer { display: none; }
	body.page-home .site-footer,
	body.page-product .site-footer,
	body.page-products .site-footer { display: block; }
}




/* ===== WCAG 2.4.7 Focus Visible — Onda 4 audit =====
   Restaura outline gold em todos os elementos focáveis quando navegados por
   teclado. :focus-visible só dispara em keyboard nav (não em clique de
   mouse), então a UX visual permanece limpa pra mouse users.
   !important porque o projeto tem ~20 outline:none espalhados que
   acidentalmente venciam essa regra. */
*:focus-visible {
	outline: 2px solid var(--primary, #c9a84c) !important;
	outline-offset: 2px !important;
	border-radius: 2px;
}
/* Botões/inputs com border-radius próprio: alinha o outline ao formato */
button:focus-visible,
.btn:focus-visible,
.input:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
	outline-offset: 3px !important;
}

/* ===== WCAG 2.4.1 Skip Link =====
   "Pular para conteúdo" — invisível até receber foco; primeiro tab da página
   leva o usuário direto pro <main>, evitando passar por header inteiro.
   Toda página com main precisa ter este link logo após <body>. */
.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--primary, #c9a84c);
	color: #1a1a1a;
	padding: 10px 18px;
	border-radius: 0 0 8px 0;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	z-index: 99999;
	transition: top 180ms ease;
}
.skip-link:focus,
.skip-link:focus-visible {
	top: 0;
	outline: 2px solid #1a1a1a !important;
	outline-offset: 2px !important;
}

