:root {
	--white: #fffaf2;
	--cream: #f4eadc;
	--linen: #efe0cd;
	--beige: #dec7ae;
	--sand: #c9aa85;
	--clay: #a66f55;
	--brown: #4f382d;
	--brown-soft: #7b5c4d;
	--gold: #a8844e;
	--sage: #74826a;
	--ink: #2f261f;
	--muted: #746357;
	--line: rgba(135, 92, 63, 0.2);
	--shadow: 0 22px 54px rgba(61, 43, 34, 0.13);
	--radius: 8px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background:
		linear-gradient(rgba(255, 250, 242, 0.94), rgba(255, 250, 242, 0.94)),
		repeating-linear-gradient(90deg, rgba(79, 56, 45, 0.035) 0 1px, transparent 1px 18px);
	color: var(--ink);
	font-family: Inter, Arial, sans-serif;
	margin: 0;
}

body.nav-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
}

h1,
h2,
h3 {
	font-family: "Playfair Display", Georgia, serif;
	letter-spacing: 0;
	margin: 0;
}

p {
	line-height: 1.7;
	margin: 0;
}

.screen-reader-text {
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.site-header {
	align-items: center;
	background: rgba(255, 250, 242, 0.9);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	left: 0;
	padding: 0.85rem clamp(1rem, 4vw, 3rem);
	position: fixed;
	right: 0;
	top: 0;
	z-index: 20;
}

.brand {
	align-items: center;
	display: inline-flex;
	gap: 0.75rem;
	text-decoration: none;
}

.brand__mark {
	align-items: center;
	background: linear-gradient(135deg, var(--brown), var(--clay));
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 700;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.brand strong {
	display: block;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.3rem;
	line-height: 1;
}

.brand small {
	color: var(--muted);
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-top: 0.2rem;
	text-transform: uppercase;
}

.site-nav {
	align-items: center;
	display: flex;
	gap: 1.45rem;
}

.site-nav a {
	color: var(--brown);
	font-size: 0.93rem;
	font-weight: 700;
	text-decoration: none;
}

.site-nav a:hover {
	color: var(--gold);
}

.nav-toggle {
	background: transparent;
	border: 0;
	display: none;
	gap: 0.25rem;
	padding: 0.4rem;
}

.nav-toggle span:not(.screen-reader-text) {
	background: var(--brown);
	display: block;
	height: 2px;
	width: 26px;
}

.hero {
	align-items: center;
	background:
		linear-gradient(120deg, rgba(244, 234, 220, 0.96), rgba(255, 250, 242, 0.86)),
		repeating-linear-gradient(0deg, rgba(79, 56, 45, 0.04) 0 1px, transparent 1px 22px);
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	isolation: isolate;
	min-height: 100vh;
	overflow: hidden;
	padding: 7rem clamp(1rem, 4vw, 4rem) 3rem;
	position: relative;
}

.hero::before {
	border: 1px solid rgba(135, 92, 63, 0.16);
	content: "";
	inset: 6rem clamp(1rem, 4vw, 4rem) 3rem;
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

.hero__content {
	max-width: 640px;
	padding-right: clamp(1rem, 4vw, 4rem);
	position: relative;
	z-index: 2;
}

.eyebrow {
	color: var(--gold);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	margin-bottom: 0.85rem;
	text-transform: uppercase;
}

.hero h1 {
	font-size: clamp(3rem, 7vw, 6.5rem);
	line-height: 0.94;
	margin-bottom: 1.2rem;
}

.hero__text {
	color: var(--muted);
	font-size: clamp(1.03rem, 2vw, 1.25rem);
	max-width: 580px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 2rem;
}

.hero__craft {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 1.25rem;
}

.hero__craft span {
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--brown-soft);
	font-size: 0.78rem;
	font-weight: 800;
	padding: 0.5rem 0.75rem;
}

.button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 999px;
	display: inline-flex;
	font-weight: 900;
	justify-content: center;
	min-height: 48px;
	padding: 0.8rem 1.3rem;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button--primary {
	background: linear-gradient(135deg, var(--brown), var(--clay));
	color: #ffffff;
}

.button--primary:hover {
	background: linear-gradient(135deg, var(--clay), var(--gold));
}

.button--light {
	background: rgba(255, 255, 255, 0.7);
	border-color: var(--line);
	color: var(--brown);
}

.button--light:hover {
	background: #ffffff;
	border-color: var(--gold);
}

.hero__media {
	background: var(--linen);
	border-radius: var(--radius);
	border: 1px solid rgba(135, 92, 63, 0.22);
	box-shadow: var(--shadow);
	min-height: min(70vh, 720px);
	overflow: hidden;
	position: relative;
}

.hero__media::after {
	background: rgba(255, 250, 242, 0.9);
	border: 1px solid var(--line);
	bottom: 1rem;
	color: var(--brown);
	content: "feito à mão";
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.2rem;
	font-weight: 700;
	left: 1rem;
	padding: 0.65rem 0.9rem;
	position: absolute;
}

.hero__media img {
	height: 100%;
	min-height: min(70vh, 720px);
	object-fit: cover;
	width: 100%;
}

.section {
	margin: 0 auto;
	max-width: 1180px;
	padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1rem, 4vw, 2rem);
}

.section--intro {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	padding-bottom: 0;
	padding-top: 0;
	transform: translateY(-2rem);
}

.intro-item {
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 12px 32px rgba(61, 43, 34, 0.07);
	min-height: 150px;
	padding: 1.4rem;
}

.intro-item__icon {
	color: var(--clay);
	display: block;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.5rem;
	line-height: 1;
	margin-bottom: 1rem;
}

.intro-item strong {
	display: block;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.3rem;
	margin-bottom: 0.45rem;
}

.intro-item span {
	color: var(--muted);
	line-height: 1.6;
}

.section__header {
	align-items: end;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.section__header h2,
.story h2,
.instagram h2,
.contact h2 {
	font-size: clamp(2.1rem, 4.5vw, 4rem);
	line-height: 1.02;
}

.section__header p:last-child {
	color: var(--muted);
	max-width: 440px;
}

.product-grid {
	display: grid;
	gap: 1.1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-empty {
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--muted);
	grid-column: 1 / -1;
	padding: 1.25rem;
}

.product-card {
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 14px 36px rgba(61, 43, 34, 0.08);
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
	box-shadow: 0 18px 44px rgba(61, 43, 34, 0.12);
	transform: translateY(-3px);
}

.product-card__image {
	aspect-ratio: 1 / 1;
	background: var(--cream);
	overflow: hidden;
}

.product-card__image img {
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
	width: 100%;
}

.product-card:hover .product-card__image img {
	transform: scale(1.03);
}

.product-card__body {
	padding: 1.15rem;
}

.product-card__meta {
	color: var(--sage);
	display: block;
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	margin-bottom: 0.6rem;
	text-transform: uppercase;
}

.product-card h3 {
	font-size: 1.45rem;
	margin-bottom: 0.5rem;
}

.product-card p {
	color: var(--muted);
	margin-bottom: 1rem;
}

.product-card__footer {
	align-items: center;
	display: flex;
	gap: 0.8rem;
	justify-content: space-between;
}

.price {
	color: var(--brown);
	font-size: 1.1rem;
	font-weight: 900;
	white-space: nowrap;
}

.product-card .button {
	min-height: 42px;
	padding: 0.6rem 0.95rem;
}

.section--warm {
	background:
		linear-gradient(rgba(244, 234, 220, 0.95), rgba(244, 234, 220, 0.95)),
		repeating-linear-gradient(135deg, rgba(79, 56, 45, 0.045) 0 1px, transparent 1px 18px);
	max-width: none;
	padding-left: max(clamp(1rem, 4vw, 2rem), calc((100vw - 1180px) / 2));
	padding-right: max(clamp(1rem, 4vw, 2rem), calc((100vw - 1180px) / 2));
}

.category-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category {
	background: rgba(255, 250, 242, 0.78);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	min-height: 190px;
	padding: 1.2rem;
	text-decoration: none;
	transition: border-color 180ms ease, transform 180ms ease;
}

.category:hover {
	background: #ffffff;
	border-color: var(--clay);
	transform: translateY(-2px);
}

.category.is-active {
	background: var(--brown);
	border-color: var(--brown);
	color: #ffffff;
}

.category.is-active small {
	color: rgba(255, 255, 255, 0.78);
}

.category span {
	display: block;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.45rem;
	font-weight: 700;
	margin-bottom: 0.55rem;
}

.category small {
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

.story {
	align-items: start;
	background: var(--white);
	border-bottom: 1px solid var(--line);
	border-top: 1px solid var(--line);
	display: grid;
	gap: clamp(2rem, 7vw, 6rem);
	grid-template-columns: 0.9fr 1.1fr;
	margin: 0 auto;
	max-width: 1180px;
	padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
}

.story__body {
	color: var(--muted);
	display: grid;
	font-size: 1.08rem;
	gap: 1rem;
}

.benefits {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	padding-top: 0;
}

.benefit {
	background: rgba(255, 255, 255, 0.64);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.4rem;
}

.benefit span {
	color: var(--gold);
	display: block;
	font-weight: 900;
	margin-bottom: 1.2rem;
}

.benefit h3 {
	font-size: 1.45rem;
	margin-bottom: 0.65rem;
}

.benefit p {
	color: var(--muted);
}

.instagram,
.contact {
	align-items: center;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	margin: 0 auto clamp(3rem, 7vw, 5rem);
	max-width: 1180px;
	padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
}

.instagram {
	background:
		linear-gradient(135deg, rgba(79, 56, 45, 0.96), rgba(122, 82, 62, 0.94)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 20px);
	border-radius: var(--radius);
	color: #ffffff;
}

.instagram .eyebrow {
	color: var(--sand);
}

.instagram p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.82);
	max-width: 670px;
}

.instagram .button {
	background: #ffffff;
	color: var(--brown);
	flex: 0 0 auto;
}

.contact {
	border-top: 1px solid var(--line);
	margin-bottom: 0;
}

.contact p {
	color: var(--muted);
	max-width: 640px;
}

.site-footer {
	align-items: center;
	background: var(--ink);
	color: rgba(255, 255, 255, 0.78);
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	padding: 1.5rem clamp(1rem, 4vw, 3rem);
	padding-right: clamp(1rem, 14vw, 14rem);
}

.site-footer strong {
	color: #ffffff;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	justify-content: flex-end;
}

.footer-links a {
	border-bottom: 1px solid rgba(255, 255, 255, 0.28);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
}

.footer-links a:hover {
	color: #ffffff;
}

.site-nav--simple {
	display: flex;
}

.legal-page {
	background:
		linear-gradient(rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 0.96)),
		repeating-linear-gradient(90deg, rgba(79, 56, 45, 0.035) 0 1px, transparent 1px 18px);
	min-height: 100vh;
	padding-top: 5.5rem;
}

.legal-hero {
	background:
		linear-gradient(120deg, rgba(244, 234, 220, 0.98), rgba(255, 250, 242, 0.9)),
		repeating-linear-gradient(0deg, rgba(79, 56, 45, 0.04) 0 1px, transparent 1px 22px);
	border-bottom: 1px solid var(--line);
	padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
}

.legal-hero h1 {
	font-size: clamp(2.6rem, 7vw, 5.6rem);
	line-height: 0.96;
	margin-bottom: 1rem;
	max-width: 980px;
}

.legal-hero p:last-child {
	color: var(--muted);
	font-weight: 700;
}

.legal-content {
	background: rgba(255, 255, 255, 0.74);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 16px 42px rgba(61, 43, 34, 0.08);
	margin: clamp(2rem, 5vw, 4rem) auto;
	max-width: 920px;
	padding: clamp(1.5rem, 4vw, 3rem);
}

.legal-content h2 {
	font-size: clamp(1.45rem, 3vw, 2rem);
	margin: 2rem 0 0.65rem;
}

.legal-content h2:first-child {
	margin-top: 0;
}

.legal-content p {
	color: var(--muted);
	font-size: 1rem;
}

.whatsapp-float {
	align-items: center;
	background: linear-gradient(135deg, #2fb35b, #1f7f45);
	border-radius: 999px;
	bottom: 1.15rem;
	box-shadow: 0 16px 36px rgba(31, 127, 69, 0.34);
	color: #ffffff;
	display: flex;
	gap: 0.55rem;
	font-size: 0.9rem;
	font-weight: 800;
	height: 58px;
	justify-content: center;
	position: fixed;
	right: 1.15rem;
	text-decoration: none;
	width: auto;
	min-width: 58px;
	padding: 0 1.15rem 0 0.95rem;
	z-index: 30;
}

.footer-is-visible .whatsapp-float {
	bottom: 5.4rem;
}

.whatsapp-float:hover {
	background: linear-gradient(135deg, #34c766, #256f43);
	color: #ffffff;
	transform: translateY(-2px);
}

.whatsapp-float svg {
	fill: currentColor;
	height: 30px;
	width: 30px;
}

.whatsapp-float span {
	letter-spacing: 0;
	white-space: nowrap;
}

.local-tools {
	align-items: flex-end;
	bottom: 5.1rem;
	display: grid;
	gap: 0.55rem;
	position: fixed;
	right: 1.15rem;
	z-index: 30;
}

.footer-is-visible .local-tools {
	bottom: 9.7rem;
}

.editor-shortcut {
	background: var(--ink);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	box-shadow: 0 14px 34px rgba(47, 38, 31, 0.22);
	color: #ffffff;
	cursor: pointer;
	font-size: 0.82rem;
	font-weight: 900;
	font-family: inherit;
	padding: 0.7rem 1rem;
	text-decoration: none;
}

.editor-shortcut:hover {
	background: var(--clay);
	color: #ffffff;
}

.editor-shortcut--button {
	background: rgba(79, 56, 45, 0.86);
}

.editor-header {
	align-items: center;
	background: rgba(255, 250, 242, 0.94);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--line);
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	padding: 0.85rem clamp(1rem, 4vw, 2rem);
	position: sticky;
	top: 0;
	z-index: 10;
}

.editor-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	justify-content: flex-end;
}

.editor-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.82fr);
	min-height: calc(100vh - 76px);
}

.editor-panel {
	padding: clamp(1rem, 3vw, 2rem);
}

.editor-intro {
	margin-bottom: 1.5rem;
	max-width: 760px;
}

.editor-intro h1 {
	font-size: clamp(2.2rem, 5vw, 4.6rem);
	line-height: 0.98;
	margin-bottom: 1rem;
}

.editor-intro p:last-child {
	color: var(--muted);
}

.editor-section-title {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin: 1.6rem 0 0.8rem;
}

.editor-section-title h2,
.editor-card h2 {
	font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.editor-card {
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 14px 36px rgba(61, 43, 34, 0.08);
	margin-bottom: 0.85rem;
	padding: 1rem;
}

.editor-card__header {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.editor-card__header h3 {
	font-size: 1.35rem;
}

.editor-grid {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editor-field {
	display: grid;
	gap: 0.35rem;
}

.editor-field--full {
	grid-column: 1 / -1;
}

.editor-field span,
.editor-check span {
	color: var(--brown);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.editor-field input,
.editor-field textarea {
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--ink);
	font: inherit;
	min-height: 44px;
	padding: 0.75rem;
	width: 100%;
}

.editor-field textarea {
	resize: vertical;
}

.editor-check {
	align-items: center;
	display: flex;
	gap: 0.6rem;
}

.editor-check input {
	height: 20px;
	width: 20px;
}

.editor-product {
	display: grid;
	gap: 1rem;
	grid-template-columns: 148px minmax(0, 1fr);
}

.editor-product__image {
	aspect-ratio: 1 / 1;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	position: relative;
}

.editor-product__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.editor-image-help {
	background: rgba(255, 250, 242, 0.94);
	border-top: 1px solid var(--line);
	bottom: 0;
	color: var(--muted);
	display: block;
	font-size: 0.68rem;
	left: 0;
	line-height: 1.35;
	padding: 0.4rem 0.5rem;
	position: absolute;
	right: 0;
}

.editor-upload {
	align-items: center;
	background: rgba(255, 250, 242, 0.92);
	border: 1px solid var(--line);
	border-radius: 999px;
	bottom: 2.2rem;
	color: var(--brown);
	cursor: pointer;
	display: inline-flex;
	font-size: 0.76rem;
	font-weight: 900;
	justify-content: center;
	left: 50%;
	min-height: 34px;
	padding: 0.45rem 0.7rem;
	position: absolute;
	text-transform: uppercase;
	transform: translateX(-50%);
	white-space: nowrap;
}

.editor-upload input {
	height: 1px;
	opacity: 0;
	position: absolute;
	width: 1px;
}

.editor-upload:hover {
	background: #ffffff;
	border-color: var(--clay);
}

.editor-notice {
	background: rgba(47, 125, 78, 0.1);
	border: 1px solid rgba(47, 125, 78, 0.28);
	border-radius: var(--radius);
	color: #25663f;
	font-weight: 800;
	margin-bottom: 1rem;
	padding: 0.9rem 1rem;
}

.editor-help-card {
	background:
		linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(244, 234, 220, 0.9)),
		repeating-linear-gradient(45deg, rgba(168, 132, 78, 0.055) 0 1px, transparent 1px 18px);
	margin-bottom: 1.2rem;
}

.editor-steps {
	color: rgba(79, 56, 45, 0.86);
	display: grid;
	gap: 0.55rem;
	margin: 0.85rem 0 1rem;
	padding-left: 1.25rem;
}

.editor-steps li {
	line-height: 1.55;
}

.editor-help-note {
	border-top: 1px solid rgba(135, 92, 63, 0.14);
	color: rgba(79, 56, 45, 0.72);
	font-size: 0.94rem;
	line-height: 1.6;
	margin: 0;
	padding-top: 0.9rem;
}

.editor-gallery {
	background: rgba(255, 250, 242, 0.6);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 0.75rem;
}

.editor-gallery summary {
	color: var(--brown);
	cursor: pointer;
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.editor-gallery__grid {
	display: grid;
	gap: 0.65rem;
	grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
	margin-top: 0.75rem;
	max-height: 360px;
	overflow: auto;
	padding-right: 0.2rem;
}

.editor-gallery__item {
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--muted);
	cursor: pointer;
	display: grid;
	font: inherit;
	gap: 0.35rem;
	padding: 0.35rem;
	text-align: left;
}

.editor-gallery__item:hover {
	border-color: var(--clay);
	color: var(--brown);
}

.editor-gallery__item img {
	aspect-ratio: 1 / 1;
	border-radius: 6px;
	object-fit: cover;
	width: 100%;
}

.editor-gallery__item span {
	font-size: 0.68rem;
	font-weight: 800;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.editor-icon-button {
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--brown);
	cursor: pointer;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 900;
	padding: 0.45rem 0.7rem;
}

.editor-icon-button:hover {
	border-color: var(--clay);
	color: var(--clay);
}

.editor-add-card {
	align-items: center;
	background: rgba(79, 56, 45, 0.06);
	border: 1px dashed rgba(135, 92, 63, 0.36);
	border-radius: var(--radius);
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin: 1rem 0 2rem;
	padding: 1.2rem;
}

.editor-add-card p {
	color: var(--muted);
	font-size: 0.95rem;
}

.editor-preview {
	background: var(--ink);
	border-left: 1px solid var(--line);
	display: grid;
	grid-template-rows: auto 1fr;
	max-height: calc(100vh - 76px);
	position: sticky;
	top: 76px;
}

.editor-preview__bar {
	align-items: center;
	color: #ffffff;
	display: flex;
	justify-content: space-between;
	padding: 0.75rem 1rem;
}

.editor-preview__bar span {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.85rem;
}

.editor-preview iframe {
	background: var(--white);
	border: 0;
	height: 100%;
	width: 100%;
}

@media (max-width: 960px) {
	.hero,
	.story {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 6rem;
	}

	.hero__content {
		padding-right: 0;
	}

	.hero__media,
	.hero__media img {
		min-height: 420px;
	}

	.section--intro,
	.product-grid,
	.benefits {
		grid-template-columns: 1fr;
		transform: none;
	}

	.category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.section__header,
	.instagram,
	.contact,
	.site-footer {
		align-items: start;
		display: grid;
	}

	.footer-links {
		justify-content: flex-start;
	}
}

@media (max-width: 720px) {
	.site-header {
		padding: 0.7rem 1rem;
	}

	.nav-toggle {
		display: grid;
	}

	.site-nav {
		background: var(--white);
		border-left: 1px solid var(--line);
		bottom: 0;
		display: grid;
		gap: 0;
		justify-content: stretch;
		padding: 5rem 1.2rem 1.2rem;
		position: fixed;
		right: 0;
		top: 0;
		transform: translateX(100%);
		transition: transform 180ms ease;
		width: min(320px, 86vw);
		z-index: -1;
	}

	.nav-open .site-nav {
		transform: translateX(0);
	}

	.site-nav a {
		border-bottom: 1px solid var(--line);
		font-size: 1.05rem;
		padding: 1rem 0;
	}

	.hero {
		min-height: auto;
		padding: 6rem 1rem 2rem;
	}

	.hero h1 {
		font-size: clamp(2.65rem, 14vw, 4.4rem);
	}

	.hero__actions,
	.button {
		width: 100%;
	}

	.category-grid {
		grid-template-columns: 1fr;
	}

	.product-card__footer {
		align-items: stretch;
		display: grid;
	}

	.whatsapp-float {
		height: 52px;
		padding: 0;
		width: 52px;
	}

	.whatsapp-float span {
		display: none;
	}

	.local-tools {
		bottom: 4.65rem;
		right: 0.85rem;
	}

	.editor-shortcut {
		font-size: 0.76rem;
		padding: 0.6rem 0.8rem;
	}
}

@media (max-width: 1100px) {
	.editor-layout {
		grid-template-columns: 1fr;
	}

	.editor-preview {
		display: none;
	}
}

@media (max-width: 760px) {
	.editor-header,
	.editor-actions,
	.editor-section-title,
	.editor-add-card,
	.editor-product {
		align-items: stretch;
		display: grid;
	}

	.editor-grid {
		grid-template-columns: 1fr;
	}

	.editor-product__image {
		max-width: 220px;
	}
}

/* Premium boutique refresh */
.announcement-bar {
	align-items: center;
	background: var(--ink);
	color: rgba(255, 250, 242, 0.86);
	display: flex;
	font-size: 0.72rem;
	font-weight: 800;
	gap: 1rem;
	height: 34px;
	justify-content: center;
	letter-spacing: 0.08em;
	left: 0;
	padding: 0 1rem;
	position: fixed;
	right: 0;
	text-transform: uppercase;
	top: 0;
	z-index: 31;
}

.announcement-bar span + span::before {
	color: var(--sand);
	content: "•";
	margin-right: 1rem;
}

.has-announcement .site-header {
	top: 34px;
}

.has-announcement .hero {
	padding-top: 10rem;
}

.site-header {
	box-shadow: 0 10px 28px rgba(47, 38, 31, 0.06);
}

.hero {
	gap: clamp(1.5rem, 4vw, 4rem);
	grid-template-columns: minmax(360px, 0.82fr) minmax(360px, 1.18fr);
}

.hero__label {
	background: rgba(166, 111, 85, 0.12);
	border: 1px solid rgba(166, 111, 85, 0.24);
	border-radius: 999px;
	color: var(--clay);
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	margin: 0 0 1rem;
	padding: 0.48rem 0.75rem;
	text-transform: uppercase;
}

.hero h1 {
	font-size: clamp(3.15rem, 7.4vw, 7.2rem);
	max-width: 780px;
}

.hero__media {
	border-radius: 0;
	box-shadow: 0 30px 70px rgba(47, 38, 31, 0.18);
	min-height: min(74vh, 780px);
}

.hero__media img {
	min-height: min(74vh, 780px);
}

.hero__media::after {
	bottom: 1.3rem;
	content: "coleção trama";
	left: 1.3rem;
}

.hero__stats {
	border-top: 1px solid var(--line);
	display: grid;
	gap: 0.8rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 2rem;
	max-width: 640px;
	padding-top: 1.1rem;
}

.hero__stats strong {
	color: var(--brown);
	display: block;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	line-height: 1;
}

.hero__stats span {
	color: var(--muted);
	display: block;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	margin-top: 0.35rem;
	text-transform: uppercase;
}

.atelier-feature {
	align-items: center;
	display: grid;
	gap: clamp(2rem, 6vw, 5rem);
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	margin: 0 auto;
	max-width: 1180px;
	padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
}

.atelier-feature__copy h2,
.lookbook__text h2 {
	font-size: clamp(2.2rem, 5vw, 4.4rem);
	line-height: 1;
	margin-bottom: 1rem;
}

.atelier-feature__copy p:not(.eyebrow),
.lookbook__text p:not(.eyebrow) {
	color: var(--muted);
	font-size: 1.05rem;
	margin-bottom: 1.4rem;
	max-width: 640px;
}

.atelier-feature__images {
	display: grid;
	gap: 1rem;
	grid-template-columns: 0.78fr 1fr;
}

.atelier-feature__images img {
	aspect-ratio: 4 / 5;
	border: 1px solid var(--line);
	object-fit: cover;
	width: 100%;
}

.atelier-feature__images img:first-child {
	margin-top: 3rem;
}

.product-showcase {
	max-width: 1280px;
}

.product-grid {
	gap: 1.25rem;
}

.product-card {
	background: rgba(255, 252, 247, 0.92);
	border-color: rgba(79, 56, 45, 0.14);
	box-shadow: none;
}

.product-card:hover {
	box-shadow: 0 22px 52px rgba(47, 38, 31, 0.12);
}

.product-card__image {
	position: relative;
}

.product-card__ribbon {
	background: rgba(255, 250, 242, 0.94);
	border: 1px solid var(--line);
	color: var(--brown);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	padding: 0.42rem 0.58rem;
	position: absolute;
	right: 0.75rem;
	text-transform: uppercase;
	top: 0.75rem;
}

.product-card__body {
	padding: 1.25rem;
}

.product-card h3 {
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	line-height: 1.1;
}

.product-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0 0 1.1rem;
}

.product-card__tags span {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--brown-soft);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	padding: 0.34rem 0.55rem;
	text-transform: uppercase;
}

.category {
	min-height: 156px;
}

.lookbook {
	background: var(--ink);
	color: #ffffff;
	overflow: hidden;
	padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
}

.lookbook__text {
	margin: 0 auto clamp(2rem, 4vw, 3rem);
	max-width: 1180px;
}

.lookbook .eyebrow {
	color: var(--sand);
}

.lookbook__text p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.76);
}

.lookbook__gallery {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1.25fr 0.9fr 1fr;
	margin: 0 auto;
	max-width: 1180px;
}

.lookbook__gallery img {
	aspect-ratio: 4 / 5;
	border: 1px solid rgba(255, 255, 255, 0.16);
	object-fit: cover;
	width: 100%;
}

.lookbook__gallery img:nth-child(2) {
	margin-top: 3rem;
}

.story {
	max-width: none;
	padding-left: max(clamp(1rem, 4vw, 2rem), calc((100vw - 1180px) / 2));
	padding-right: max(clamp(1rem, 4vw, 2rem), calc((100vw - 1180px) / 2));
}

.benefit {
	background: rgba(255, 252, 247, 0.82);
}

@media (max-width: 960px) {
	.announcement-bar {
		justify-content: flex-start;
		overflow: auto;
	}

	.announcement-bar span {
		flex: 0 0 auto;
	}

	.hero,
	.atelier-feature,
	.lookbook__gallery {
		grid-template-columns: 1fr;
	}

	.atelier-feature__images {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.atelier-feature__images img:first-child,
	.lookbook__gallery img:nth-child(2) {
		margin-top: 0;
	}
}

@media (max-width: 720px) {
	.has-announcement .hero {
		padding-top: 8rem;
	}

	.hero__stats,
	.atelier-feature__images {
		grid-template-columns: 1fr;
	}

	.hero__stats strong {
		font-size: 1.5rem;
	}
}

/* Storefront layer */
.shop-toolbar {
	align-items: center;
	background: rgba(255, 252, 247, 0.92);
	border: 1px solid var(--line);
	display: grid;
	gap: 0.75rem;
	grid-template-columns: minmax(220px, 1fr) auto auto auto;
	margin: 0 0 1rem;
	padding: 0.75rem;
}

.shop-search input,
.shop-sort select {
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--ink);
	font: inherit;
	font-weight: 700;
	min-height: 46px;
	padding: 0 1rem;
	width: 100%;
}

.shop-sort {
	align-items: center;
	display: flex;
	gap: 0.5rem;
}

.shop-sort span,
.shop-results {
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.shop-results {
	margin: 0 0 1.25rem;
}

.shop-filter-panel {
	align-items: end;
	background: rgba(255, 252, 247, 0.7);
	border: 1px solid rgba(135, 92, 63, 0.14);
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr) auto;
	margin: -0.35rem auto 1rem;
	max-width: 1180px;
	padding: 0.9rem;
}

.filter-group {
	display: grid;
	gap: 0.55rem;
}

.filter-group > span {
	color: var(--brown);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.filter-chip,
.clear-filters {
	align-items: center;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 900;
	justify-content: center;
	min-height: 36px;
	padding: 0.48rem 0.72rem;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-chip {
	background: #ffffff;
	border: 1px solid var(--line);
	color: var(--brown-soft);
}

.filter-chip:hover {
	border-color: var(--clay);
	color: var(--brown);
	transform: translateY(-1px);
}

.filter-chip.is-active {
	background: var(--brown);
	border-color: var(--brown);
	color: #ffffff;
}

.clear-filters {
	background: transparent;
	border: 1px solid rgba(135, 92, 63, 0.28);
	color: var(--brown);
	white-space: nowrap;
}

.clear-filters:hover {
	background: var(--cream);
	border-color: var(--clay);
	transform: translateY(-1px);
}

.shop-bag-button {
	align-items: center;
	background: var(--ink);
	border: 0;
	border-radius: 999px;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-weight: 900;
	gap: 0.65rem;
	min-height: 46px;
	padding: 0 1rem;
}

.shop-bag-button strong {
	align-items: center;
	background: var(--clay);
	border-radius: 999px;
	display: inline-flex;
	height: 26px;
	justify-content: center;
	min-width: 26px;
	padding: 0 0.35rem;
}

.product-card__footer {
	align-items: end;
	display: grid;
	gap: 0.85rem;
	grid-template-columns: auto 1fr;
}

.product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: flex-end;
}

.product-actions .button {
	cursor: pointer;
}

.product-whatsapp {
	align-items: center;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--brown);
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 900;
	justify-content: center;
	min-height: 42px;
	padding: 0.6rem 0.85rem;
	text-decoration: none;
}

.product-whatsapp:hover {
	border-color: var(--clay);
	color: var(--clay);
}

.cart-drawer {
	background: rgba(47, 38, 31, 0.42);
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 180ms ease;
	z-index: 60;
}

.cart-drawer.is-open {
	opacity: 1;
	pointer-events: auto;
}

.cart-drawer__panel {
	background: var(--white);
	box-shadow: -24px 0 60px rgba(47, 38, 31, 0.24);
	display: grid;
	grid-template-rows: auto 1fr auto;
	height: 100%;
	margin-left: auto;
	max-width: 460px;
	padding: 1.25rem;
	transform: translateX(100%);
	transition: transform 220ms ease;
	width: min(92vw, 460px);
}

.cart-drawer.is-open .cart-drawer__panel {
	transform: translateX(0);
}

.cart-drawer__header {
	align-items: start;
	border-bottom: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	padding-bottom: 1rem;
}

.cart-drawer__header h2 {
	font-size: 2.3rem;
}

.cart-close {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--brown);
	cursor: pointer;
	font-size: 1.6rem;
	height: 42px;
	line-height: 1;
	width: 42px;
}

.cart-items {
	align-content: start;
	display: grid;
	gap: 0.85rem;
	overflow: auto;
	padding: 1rem 0;
}

.cart-item {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: 82px 1fr;
}

.cart-item img {
	aspect-ratio: 1 / 1;
	border: 1px solid var(--line);
	object-fit: cover;
	width: 100%;
}

.cart-item h3 {
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
}

.cart-item span {
	color: var(--muted);
	font-weight: 900;
}

.cart-quantity {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 0.6rem;
}

.cart-quantity button {
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--brown);
	cursor: pointer;
	font: inherit;
	font-size: 0.8rem;
	font-weight: 900;
	min-height: 32px;
	padding: 0.35rem 0.65rem;
}

.cart-empty {
	align-self: start;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--muted);
	margin-top: 1rem;
	padding: 1rem;
}

.cart-empty p {
	color: var(--brown);
	font-weight: 900;
}

.cart-summary {
	border-top: 1px solid var(--line);
	display: grid;
	gap: 1rem;
	padding-top: 1rem;
}

.cart-summary div {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.cart-summary span {
	color: var(--muted);
	font-weight: 900;
}

.cart-summary strong {
	color: var(--brown);
	font-size: 1.25rem;
}

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

	.shop-sort {
		display: grid;
	}

	.shop-filter-panel {
		grid-template-columns: 1fr;
	}

	.clear-filters {
		width: 100%;
	}

	.product-card__footer {
		grid-template-columns: 1fr;
	}

	.product-actions {
		justify-content: stretch;
	}

	.product-actions .button,
	.product-whatsapp {
		width: 100%;
	}
}

/* Boutique commerce polish */
.product-showcase {
	background:
		linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(244, 234, 220, 0.66)),
		linear-gradient(90deg, transparent, rgba(168, 132, 78, 0.08), transparent);
	border-block: 1px solid var(--line);
	max-width: none;
	padding-left: max(clamp(1rem, 4vw, 2rem), calc((100vw - 1180px) / 2));
	padding-right: max(clamp(1rem, 4vw, 2rem), calc((100vw - 1180px) / 2));
}

.product-showcase .section__header {
	align-items: end;
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.45fr);
	max-width: 1180px;
	text-align: left;
}

.product-showcase .section__header p:last-child {
	margin-left: auto;
}

.shop-toolbar {
	backdrop-filter: blur(16px);
	box-shadow: 0 18px 46px rgba(61, 43, 34, 0.08);
	margin-left: auto;
	margin-right: auto;
	max-width: 1180px;
	position: sticky;
	top: 5.4rem;
	z-index: 8;
}

.shop-search {
	position: relative;
}

.shop-search::before {
	color: var(--gold);
	content: "Buscar";
	font-size: 0.68rem;
	font-weight: 900;
	left: 1rem;
	letter-spacing: 0.1em;
	position: absolute;
	text-transform: uppercase;
	top: -0.45rem;
}

.shop-search input {
	padding-left: 1.15rem;
}

.shop-sort select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--brown) 50%),
		linear-gradient(135deg, var(--brown) 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 20px,
		calc(100% - 12px) 20px;
	background-repeat: no-repeat;
	background-size: 6px 6px;
	padding-right: 2.3rem;
}

.shop-bag-button {
	box-shadow: 0 14px 30px rgba(47, 38, 31, 0.2);
	transition: transform 180ms ease, background 180ms ease;
}

.shop-bag-button:hover {
	background: var(--clay);
	transform: translateY(-1px);
}

.shop-results {
	margin-left: auto;
	margin-right: auto;
	max-width: 1180px;
}

.product-grid {
	margin-left: auto;
	margin-right: auto;
	max-width: 1180px;
}

.product-card {
	background: #fffdf9;
	border-color: rgba(135, 92, 63, 0.16);
	box-shadow: 0 20px 42px rgba(61, 43, 34, 0.08);
	position: relative;
}

.product-card::after {
	border: 1px solid rgba(168, 132, 78, 0);
	content: "";
	inset: 0.45rem;
	pointer-events: none;
	position: absolute;
	transition: border-color 180ms ease;
}

.product-card:hover::after {
	border-color: rgba(168, 132, 78, 0.24);
}

.product-card__image {
	background:
		linear-gradient(135deg, rgba(244, 234, 220, 0.8), rgba(255, 250, 242, 0.92)),
		repeating-linear-gradient(90deg, rgba(79, 56, 45, 0.04) 0 1px, transparent 1px 18px);
	overflow: hidden;
}

.product-card__thumbs {
	background: rgba(255, 250, 242, 0.92);
	border-bottom: 1px solid var(--line);
	display: flex;
	gap: 0.45rem;
	overflow-x: auto;
	padding: 0.55rem 0.7rem;
	position: relative;
	z-index: 1;
}

.product-card__thumbs button {
	background: #ffffff;
	border: 1px solid rgba(135, 92, 63, 0.2);
	border-radius: 999px;
	cursor: pointer;
	flex: 0 0 auto;
	height: 42px;
	overflow: hidden;
	padding: 0;
	transition: border-color 180ms ease, transform 180ms ease;
	width: 42px;
}

.product-card__thumbs button:hover,
.product-card__thumbs button.is-active {
	border-color: var(--clay);
	transform: translateY(-1px);
}

.product-card__thumbs img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.product-card__image img {
	aspect-ratio: 4 / 4.6;
}

.product-card__body {
	padding: 1.2rem;
}

.product-card h3 {
	font-size: clamp(1.38rem, 2.3vw, 1.75rem);
	line-height: 1.08;
}

.product-card p {
	min-height: 4.8rem;
}

.price {
	color: var(--ink);
	font-size: 1.22rem;
	font-weight: 900;
	letter-spacing: 0;
}

.product-actions .button,
.product-whatsapp {
	min-height: 40px;
	position: relative;
	z-index: 1;
}

.product-actions .button {
	border-radius: 999px;
	padding-inline: 1rem;
}

.product-whatsapp {
	background: #ffffff;
}

.cart-drawer__panel {
	background:
		linear-gradient(180deg, #fffdf9, #fffaf2),
		repeating-linear-gradient(90deg, rgba(79, 56, 45, 0.025) 0 1px, transparent 1px 18px);
}

.cart-summary .button {
	width: 100%;
}

@media (max-width: 960px) {
	.product-showcase .section__header {
		grid-template-columns: 1fr;
	}

	.product-showcase .section__header p:last-child {
		margin-left: 0;
	}

	.shop-toolbar {
		position: static;
	}
}

/* Campaign carousel */
.banner-carousel {
	background: linear-gradient(180deg, #fffaf2, #f7efe4);
	border-block: 1px solid rgba(135, 92, 63, 0.16);
	padding: 0.8rem max(clamp(1rem, 4vw, 2rem), calc((100vw - 1120px) / 2));
	position: relative;
}

.banner-carousel__viewport {
	background:
		linear-gradient(120deg, rgba(255, 252, 247, 0.98), rgba(244, 234, 220, 0.92)),
		repeating-linear-gradient(90deg, rgba(79, 56, 45, 0.035) 0 1px, transparent 1px 24px);
	border: 1px solid rgba(135, 92, 63, 0.18);
	min-height: clamp(280px, 34vw, 430px);
	overflow: hidden;
	position: relative;
}

.banner-slide {
	align-items: center;
	display: grid;
	gap: clamp(1rem, 3vw, 2rem);
	grid-template-columns: minmax(0, 0.85fr) minmax(360px, 560px);
	inset: 0;
	opacity: 0;
	padding: clamp(1rem, 2.5vw, 1.8rem);
	pointer-events: none;
	position: absolute;
	transition: opacity 520ms ease;
}

.banner-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	position: relative;
}

.banner-slide::after {
	background: linear-gradient(90deg, rgba(168, 132, 78, 0.16), transparent 44%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.banner-slide__content {
	align-self: center;
	color: var(--ink);
	max-width: 430px;
	position: relative;
	z-index: 1;
}

.banner-slide__content .eyebrow {
	color: var(--gold);
}

.banner-slide__content h2 {
	color: var(--brown);
	font-size: clamp(1.35rem, 2.5vw, 2.2rem);
	line-height: 1;
	margin-bottom: 0.55rem;
}

.banner-slide__content p:not(.eyebrow) {
	color: var(--muted);
	font-size: clamp(0.82rem, 1.1vw, 0.92rem);
	margin-bottom: 0.85rem;
	max-width: 380px;
}

.banner-slide__content .button {
	font-size: 0.86rem;
	min-height: 36px;
	padding: 0.55rem 0.85rem;
}

.banner-slide__visual {
	aspect-ratio: 4 / 3;
	background: #ffffff;
	border: 1px solid var(--line);
	justify-self: end;
	max-width: 560px;
	overflow: hidden;
	position: relative;
	width: 100%;
	z-index: 1;
}

.banner-slide__visual img {
	filter: saturate(0.96) contrast(1.02);
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.banner-slide__visual span {
	background: rgba(255, 250, 242, 0.94);
	border: 1px solid var(--line);
	bottom: 0.6rem;
	color: var(--brown);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	padding: 0.35rem 0.5rem;
	position: absolute;
	right: 0.6rem;
	text-transform: uppercase;
}

.banner-carousel__controls {
	display: flex;
	gap: 0.4rem;
	position: absolute;
	right: max(clamp(1rem, 4vw, 2rem), calc((100vw - 1120px) / 2) + 0.75rem);
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}

.banner-carousel__controls button,
.banner-carousel__dots button {
	cursor: pointer;
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.banner-carousel__controls button {
	align-items: center;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--brown);
	display: inline-flex;
	font: inherit;
	font-size: 1.45rem;
	font-weight: 700;
	height: 34px;
	justify-content: center;
	line-height: 1;
	width: 34px;
}

.banner-carousel__controls button:hover {
	background: #ffffff;
	transform: translateY(-1px);
}

.banner-carousel__dots {
	bottom: 1rem;
	display: flex;
	gap: 0.45rem;
	left: max(clamp(1.25rem, 3vw, 2.7rem), calc((100vw - 1120px) / 2) + 1.25rem);
	position: absolute;
	z-index: 2;
}

.banner-carousel__dots button {
	background: rgba(79, 56, 45, 0.2);
	border: 1px solid rgba(79, 56, 45, 0.12);
	border-radius: 999px;
	height: 7px;
	padding: 0;
	width: 22px;
}

.banner-carousel__dots button.is-active {
	background: var(--gold);
	border-color: var(--gold);
	width: 36px;
}

@media (max-width: 860px) {
	.banner-carousel {
		padding-inline: 0;
	}

	.banner-carousel__viewport {
		min-height: 0;
	}

	.banner-slide,
	.banner-slide.is-active {
		grid-template-columns: 1fr;
		padding: 1rem 1rem 3.5rem;
	}

	.banner-slide__visual {
		aspect-ratio: 16 / 9;
		justify-self: stretch;
		max-height: 320px;
		max-width: none;
	}

	.banner-carousel__controls {
		right: 1rem;
		top: 1rem;
		transform: none;
	}

	.banner-carousel__dots {
		bottom: 1.3rem;
		left: 1rem;
	}
}

/* Modern storefront hero */
.hero {
	background:
		linear-gradient(115deg, rgba(255, 250, 242, 0.98), rgba(244, 234, 220, 0.82)),
		repeating-linear-gradient(90deg, rgba(79, 56, 45, 0.028) 0 1px, transparent 1px 22px);
	gap: clamp(2rem, 5vw, 4.5rem);
	grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.88fr);
	min-height: auto;
	padding: 7.8rem max(clamp(1rem, 4vw, 3rem), calc((100vw - 1180px) / 2)) clamp(3rem, 6vw, 5rem);
}

.has-announcement .hero {
	padding-top: 9rem;
}

.hero::before {
	display: none;
}

.hero__content {
	max-width: 620px;
	padding-right: 0;
}

.hero h1 {
	font-size: clamp(2.75rem, 5.7vw, 5.6rem);
	line-height: 0.98;
	max-width: 680px;
}

.hero__text {
	max-width: 520px;
}

.hero__stats {
	max-width: 560px;
}

.hero__media.hero-showcase {
	background:
		linear-gradient(145deg, rgba(255, 252, 247, 0.98), rgba(239, 224, 205, 0.82)),
		repeating-linear-gradient(0deg, rgba(79, 56, 45, 0.035) 0 1px, transparent 1px 18px);
	border: 1px solid rgba(135, 92, 63, 0.18);
	box-shadow: 0 26px 58px rgba(61, 43, 34, 0.12);
	display: grid;
	gap: 0.85rem;
	grid-template-columns: 0.78fr 1fr;
	min-height: 0;
	overflow: visible;
	padding: clamp(1rem, 2.4vw, 1.5rem);
}

.hero__media.hero-showcase::after {
	display: none;
}

.hero-showcase__copy,
.hero-showcase__note {
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--line);
	padding: 1rem;
}

.hero-showcase__copy {
	align-content: center;
	display: grid;
	min-height: 150px;
}

.hero-showcase__copy span,
.hero-showcase__copy small {
	color: var(--gold);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hero-showcase__copy strong {
	color: var(--brown);
	display: block;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.35rem, 2.4vw, 2.05rem);
	line-height: 1.04;
	margin: 0.45rem 0;
}

.hero-showcase__photo {
	background: var(--cream);
	border: 1px solid var(--line);
	overflow: hidden;
}

.hero-showcase__photo img {
	height: 100%;
	min-height: 0;
	object-fit: cover;
	width: 100%;
}

.hero-showcase__photo--main {
	aspect-ratio: 4 / 5;
	grid-row: span 2;
}

.hero-showcase__photo--small {
	aspect-ratio: 4 / 3;
}

.hero-showcase__note {
	align-content: center;
	display: grid;
	gap: 0.35rem;
}

.hero-showcase__note strong {
	color: var(--brown);
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.4rem;
}

.hero-showcase__note span {
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

@media (max-width: 960px) {
	.hero {
		grid-template-columns: 1fr;
		padding-top: 7.2rem;
	}

	.has-announcement .hero {
		padding-top: 8.4rem;
	}

	.hero__media.hero-showcase {
		grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
	}
}

@media (max-width: 640px) {
	.hero h1 {
		font-size: clamp(2.45rem, 13vw, 4rem);
	}

	.hero__media.hero-showcase {
		grid-template-columns: 1fr;
	}

	.hero-showcase__photo--main {
		aspect-ratio: 4 / 4.4;
		grid-row: auto;
	}
}

/* Premium 3D textile background */
body {
	background:
		linear-gradient(rgba(255, 250, 242, 0.86), rgba(255, 250, 242, 0.9)),
		url("../img/background-bolsa-natural-3d.png") center top / cover fixed no-repeat,
		repeating-linear-gradient(90deg, rgba(79, 56, 45, 0.035) 0 1px, transparent 1px 18px);
}

.hero {
	background:
		linear-gradient(115deg, rgba(255, 250, 242, 0.94), rgba(244, 234, 220, 0.72)),
		url("../img/background-bolsa-natural-3d.png") center top / cover no-repeat;
}

.product-showcase,
.section--warm {
	background:
		linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(244, 234, 220, 0.84)),
		url("../img/background-bolsa-natural-3d.png") center / cover no-repeat;
}

.banner-carousel {
	background:
		linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(247, 239, 228, 0.92)),
		url("../img/background-bolsa-natural-3d.png") center / cover no-repeat;
}

@media (max-width: 720px) {
	body {
		background:
			linear-gradient(rgba(255, 250, 242, 0.9), rgba(255, 250, 242, 0.94)),
			url("../img/background-bolsa-natural-3d.png") center top / auto 720px no-repeat,
			repeating-linear-gradient(90deg, rgba(79, 56, 45, 0.035) 0 1px, transparent 1px 18px);
	}
}

/* Stronger first-screen 3D boutique hero */
.hero {
	background:
		linear-gradient(90deg, rgba(255, 250, 242, 0.9) 0%, rgba(255, 250, 242, 0.76) 42%, rgba(255, 250, 242, 0.42) 100%),
		url("../img/background-bolsa-natural-3d.png") center top / cover no-repeat;
	min-height: min(760px, calc(100vh - 34px));
	position: relative;
}

.hero::before {
	background:
		radial-gradient(circle at 18% 45%, rgba(255, 250, 242, 0.9) 0 18%, rgba(255, 250, 242, 0.48) 46%, transparent 72%),
		linear-gradient(180deg, rgba(255, 250, 242, 0.18), rgba(244, 234, 220, 0.22));
	content: "";
	display: block;
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 0;
}

.hero::after {
	background:
		linear-gradient(90deg, transparent 0%, transparent 48%, rgba(255, 250, 242, 0.34) 72%, rgba(255, 250, 242, 0.76) 100%),
		url("../img/produtos/oficial-img-8366.jpg") right -2rem center / min(48vw, 620px) auto no-repeat;
	content: "";
	display: block;
	filter: saturate(0.95) contrast(1.03);
	inset: 0;
	mix-blend-mode: multiply;
	opacity: 0.36;
	pointer-events: none;
	position: absolute;
	z-index: 0;
}

.hero__content,
.hero__media {
	position: relative;
	z-index: 1;
}

.hero__content {
	background: linear-gradient(90deg, rgba(255, 250, 242, 0.74), rgba(255, 250, 242, 0));
	border-radius: var(--radius);
	padding: clamp(0.4rem, 1.5vw, 1rem) clamp(0.6rem, 2vw, 1.2rem) clamp(0.4rem, 1.5vw, 1rem) 0;
}

.hero__media.hero-showcase {
	background: rgba(255, 252, 247, 0.66);
	backdrop-filter: blur(10px);
}

@media (max-width: 960px) {
	.hero {
		background:
			linear-gradient(180deg, rgba(255, 250, 242, 0.86) 0%, rgba(255, 250, 242, 0.76) 58%, rgba(255, 250, 242, 0.9) 100%),
			url("../img/background-bolsa-natural-3d.png") center top / auto 760px no-repeat;
		min-height: auto;
	}

	.hero::after {
		background:
			linear-gradient(180deg, rgba(255, 250, 242, 0.28), rgba(255, 250, 242, 0.9)),
			url("../img/produtos/oficial-img-8366.jpg") right top / min(76vw, 480px) auto no-repeat;
		opacity: 0.22;
	}

	.hero__content {
		background: rgba(255, 250, 242, 0.58);
		padding: 0.6rem;
	}
}

/* Minimal collection storefront */
.minimal-storefront .site-header {
	background: rgba(255, 250, 242, 0.94);
}

.minimal-storefront .hero {
	gap: clamp(1.25rem, 4vw, 3.5rem);
	grid-template-columns: minmax(280px, 0.62fr) minmax(420px, 1.28fr);
	min-height: auto;
	padding-bottom: clamp(2rem, 5vw, 3.8rem);
}

.minimal-storefront .hero::after {
	opacity: 0.12;
}

.minimal-storefront .hero__content {
	background: transparent;
	max-width: 520px;
	padding: 0;
}

.minimal-storefront .hero__label {
	background: rgba(255, 255, 255, 0.62);
	font-size: 0.72rem;
	margin-bottom: 1rem;
	padding: 0.55rem 0.85rem;
}

.minimal-storefront .eyebrow {
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	margin-bottom: 0.7rem;
}

.minimal-storefront .hero h1 {
	font-size: clamp(2.25rem, 4.2vw, 4.25rem);
	line-height: 1.02;
	margin-bottom: 0.75rem;
	max-width: 440px;
}

.minimal-storefront .hero__text {
	font-size: clamp(0.98rem, 1.4vw, 1.1rem);
	line-height: 1.55;
	max-width: 360px;
}

.minimal-storefront .hero__actions {
	margin-top: 1.35rem;
}

.minimal-storefront .button {
	min-height: 42px;
	padding: 0.65rem 1rem;
}

.minimal-storefront .hero__stats {
	display: none;
}

.minimal-storefront .hero__craft {
	gap: 0.4rem;
	margin-top: 1rem;
}

.minimal-storefront .hero__craft span {
	background: transparent;
	border-color: rgba(135, 92, 63, 0.24);
	font-size: 0.68rem;
	padding: 0.42rem 0.62rem;
}

.minimal-storefront .hero__media.hero-showcase {
	grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
	min-height: clamp(430px, 48vw, 640px);
	padding: clamp(0.8rem, 2vw, 1.1rem);
}

.minimal-storefront .hero-showcase__copy {
	min-height: 0;
}

.minimal-storefront .hero-showcase__copy strong {
	font-size: clamp(1.15rem, 1.8vw, 1.65rem);
	line-height: 1.08;
}

.minimal-storefront .hero-showcase__note strong {
	font-size: 1.05rem;
}

.minimal-storefront .hero-showcase__note span {
	font-size: 0.78rem;
	line-height: 1.4;
}

.minimal-storefront .hero-showcase__photo--main {
	aspect-ratio: 4 / 5;
	grid-row: span 2;
}

.minimal-storefront .hero-showcase__photo--small {
	aspect-ratio: 1 / 1;
}

.minimal-storefront .banner-carousel {
	padding-block: 1.15rem;
}

.minimal-storefront .banner-carousel__viewport {
	min-height: clamp(360px, 42vw, 560px);
}

.minimal-storefront .banner-slide {
	grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1.52fr);
	padding: clamp(1rem, 2vw, 1.4rem);
}

.minimal-storefront .banner-slide__content {
	max-width: 300px;
}

.minimal-storefront .banner-slide__content h2 {
	font-size: clamp(1.35rem, 2.2vw, 2rem);
	line-height: 1.08;
}

.minimal-storefront .banner-slide__content p:not(.eyebrow) {
	font-size: 0.9rem;
	line-height: 1.55;
	max-width: 260px;
}

.minimal-storefront .banner-slide__visual {
	aspect-ratio: 16 / 9;
	max-width: none;
}

.minimal-storefront .section {
	padding-block: clamp(2.8rem, 6vw, 4.8rem);
}

.minimal-storefront .section--intro {
	padding-block: 0;
	transform: translateY(-1rem);
}

.minimal-storefront .intro-item {
	box-shadow: none;
	min-height: 110px;
	padding: 1rem;
}

.minimal-storefront .intro-item__icon {
	margin-bottom: 0.65rem;
}

.minimal-storefront .intro-item strong {
	font-size: 1.05rem;
}

.minimal-storefront .intro-item span {
	font-size: 0.9rem;
	line-height: 1.45;
}

.minimal-storefront .section__header {
	align-items: center;
	margin-bottom: 1.25rem;
}

.minimal-storefront .section__header h2,
.minimal-storefront .story h2,
.minimal-storefront .instagram h2,
.minimal-storefront .contact h2,
.minimal-storefront .lookbook__text h2 {
	font-size: clamp(1.55rem, 3vw, 2.65rem);
	line-height: 1.08;
}

.minimal-storefront .section__header p:last-child,
.minimal-storefront .lookbook__text p:not(.eyebrow),
.minimal-storefront .story__body,
.minimal-storefront .benefit p,
.minimal-storefront .contact p,
.minimal-storefront .instagram p:not(.eyebrow) {
	font-size: 0.95rem;
	line-height: 1.55;
}

.minimal-storefront .product-grid {
	gap: 0.9rem;
}

.minimal-storefront .product-card {
	background: rgba(255, 255, 255, 0.9);
	box-shadow: none;
}

.minimal-storefront .product-card__image {
	aspect-ratio: 4 / 5;
}

.minimal-storefront .product-card__body {
	padding: 0.9rem;
}

.minimal-storefront .product-card h3 {
	font-size: 1.15rem;
	margin-bottom: 0.35rem;
}

.minimal-storefront .product-card p {
	display: -webkit-box;
	font-size: 0.88rem;
	line-height: 1.45;
	margin-bottom: 0.75rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.minimal-storefront .product-card__tags {
	display: none;
}

.minimal-storefront .category {
	min-height: 130px;
	padding: 1rem;
}

.minimal-storefront .category span {
	font-size: 1.15rem;
}

.minimal-storefront .category small {
	font-size: 0.86rem;
	line-height: 1.4;
}

.minimal-storefront .lookbook {
	gap: clamp(1rem, 3vw, 2rem);
}

.minimal-storefront .lookbook__gallery img {
	min-height: clamp(250px, 34vw, 430px);
}

.minimal-storefront .story,
.minimal-storefront .benefits {
	padding-block: clamp(2.4rem, 5vw, 4rem);
}

.minimal-storefront .brand-note {
	align-items: center;
	background: rgba(255, 252, 247, 0.86);
	border-block: 1px solid rgba(135, 92, 63, 0.16);
	gap: clamp(1.25rem, 5vw, 4rem);
	grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1.2fr);
	padding-block: clamp(2rem, 4vw, 3rem);
}

.minimal-storefront .brand-note h2 {
	font-size: clamp(1.35rem, 2.2vw, 2.15rem);
	line-height: 1.12;
	max-width: 420px;
}

.minimal-storefront .brand-note .story__body {
	color: var(--brown-soft);
	gap: 0.9rem;
	max-width: 620px;
}

.minimal-storefront .brand-note .story__body p {
	font-size: 0.98rem;
	line-height: 1.55;
	max-width: 520px;
}

.brand-note__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.brand-note__tags span {
	background: #ffffff;
	border: 1px solid rgba(135, 92, 63, 0.18);
	border-radius: 999px;
	color: var(--brown);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	padding: 0.55rem 0.8rem;
	text-transform: uppercase;
}

@media (max-width: 960px) {
	.minimal-storefront .hero {
		grid-template-columns: 1fr;
	}

	.minimal-storefront .hero__content {
		max-width: 620px;
	}

	.minimal-storefront .hero h1 {
		max-width: 560px;
	}

	.minimal-storefront .hero__media.hero-showcase {
		grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
	}

	.minimal-storefront .banner-slide,
	.minimal-storefront .banner-slide.is-active {
		grid-template-columns: 1fr;
	}

	.minimal-storefront .banner-slide__content {
		max-width: 520px;
	}

	.minimal-storefront .banner-slide__visual {
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 640px) {
	.minimal-storefront .hero h1 {
		font-size: clamp(2.1rem, 11vw, 3.2rem);
	}

	.minimal-storefront .hero__media.hero-showcase {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.minimal-storefront .hero-showcase__photo--main,
	.minimal-storefront .hero-showcase__photo--small {
		aspect-ratio: 4 / 4.6;
		grid-row: auto;
	}

	.minimal-storefront .section__header {
		align-items: start;
	}

	.minimal-storefront .brand-note {
		grid-template-columns: 1fr;
	}
}

/* Full-screen 3D textile gradient */
body.minimal-storefront {
	background:
		radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.5) 0 14%, transparent 38%),
		linear-gradient(90deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 250, 242, 0.9) 38%, rgba(255, 250, 242, 0.64) 72%, rgba(255, 250, 242, 0.42) 100%),
		url("../img/background-bolsa-natural-3d.png") center center / cover fixed no-repeat;
}

.minimal-storefront .hero {
	background:
		linear-gradient(90deg, rgba(255, 250, 242, 0.96) 0%, rgba(255, 250, 242, 0.86) 38%, rgba(255, 250, 242, 0.56) 70%, rgba(255, 250, 242, 0.34) 100%),
		url("../img/background-bolsa-natural-3d.png") center center / cover no-repeat;
}

.minimal-storefront .hero::before {
	background:
		radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.36) 0 16%, transparent 42%),
		linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0.58));
	display: block;
}

.minimal-storefront .hero::after {
	opacity: 0.07;
}

.minimal-storefront .hero__media.hero-showcase {
	background: rgba(255, 252, 247, 0.78);
}

.minimal-storefront .banner-carousel,
.minimal-storefront .product-showcase,
.minimal-storefront .section--warm {
	background:
		linear-gradient(180deg, rgba(255, 250, 242, 0.88), rgba(247, 239, 228, 0.82)),
		url("../img/background-bolsa-natural-3d.png") center center / cover fixed no-repeat;
}

@media (max-width: 720px) {
	body.minimal-storefront,
	.minimal-storefront .hero,
	.minimal-storefront .banner-carousel,
	.minimal-storefront .product-showcase,
	.minimal-storefront .section--warm {
		background-attachment: scroll;
		background-position: center top;
	}
}

/* Minimal boutique search bar */
.minimal-storefront .shop-toolbar {
	align-items: center;
	background: rgba(255, 252, 247, 0.9);
	border: 1px solid rgba(135, 92, 63, 0.16);
	border-radius: 999px;
	box-shadow: 0 18px 44px rgba(61, 43, 34, 0.08);
	display: grid;
	gap: 0.65rem;
	grid-template-columns: minmax(260px, 1fr) auto auto auto;
	padding: 0.45rem;
	top: 5.2rem;
}

.minimal-storefront .shop-search {
	align-items: center;
	display: flex;
	min-width: 0;
	position: relative;
}

.minimal-storefront .shop-search::before {
	background: transparent;
	border: 2px solid var(--brown-soft);
	border-radius: 999px;
	content: "";
	height: 14px;
	left: 1.05rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
}

.minimal-storefront .shop-search::after {
	background: var(--brown-soft);
	content: "";
	height: 2px;
	left: 1.9rem;
	position: absolute;
	top: calc(50% + 8px);
	transform: rotate(45deg);
	transform-origin: left center;
	width: 8px;
}

.minimal-storefront .shop-search input,
.minimal-storefront .shop-sort select {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(135, 92, 63, 0.16);
	box-shadow: none;
	min-height: 48px;
}

.minimal-storefront .shop-search input {
	border-radius: 999px;
	font-size: 0.95rem;
	padding-left: 2.85rem;
}

.minimal-storefront .shop-search input:focus,
.minimal-storefront .shop-sort select:focus {
	border-color: var(--gold);
	outline: 2px solid rgba(168, 132, 78, 0.16);
	outline-offset: 1px;
}

.minimal-storefront .shop-sort {
	background: rgba(255, 250, 242, 0.72);
	border: 1px solid rgba(135, 92, 63, 0.12);
	border-radius: 999px;
	gap: 0.4rem;
	padding: 0.25rem;
}

.minimal-storefront .shop-sort span {
	color: var(--gold);
	font-size: 0.68rem;
	letter-spacing: 0.08em;
	padding-left: 0.75rem;
	white-space: nowrap;
}

.minimal-storefront .shop-sort select {
	border-radius: 999px;
	color: var(--brown);
	font-size: 0.92rem;
	min-width: 150px;
	padding-left: 0.85rem;
}

.minimal-storefront .shop-bag-button {
	box-shadow: none;
	min-height: 50px;
	padding-inline: 1.05rem;
}

.minimal-storefront .shop-bag-button strong {
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
}

@media (max-width: 920px) {
	.minimal-storefront .shop-toolbar {
		border-radius: var(--radius);
		grid-template-columns: 1fr 1fr;
	}

	.minimal-storefront .shop-search {
		grid-column: 1 / -1;
	}

	.minimal-storefront .shop-bag-button {
		justify-content: center;
	}
}

@media (max-width: 620px) {
	.minimal-storefront .shop-toolbar {
		grid-template-columns: 1fr;
		padding: 0.55rem;
	}

	.minimal-storefront .shop-sort,
	.minimal-storefront .shop-bag-button {
		width: 100%;
	}

	.minimal-storefront .shop-sort select {
		min-width: 0;
	}
}

/* Desktop and mobile adaptation pass */
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

.minimal-storefront main {
	overflow: hidden;
}

@media (min-width: 1280px) {
	.minimal-storefront .hero {
		grid-template-columns: minmax(320px, 0.55fr) minmax(680px, 1.35fr);
		min-height: calc(100svh - 34px);
	}

	.minimal-storefront .product-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.minimal-storefront .category-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

@media (min-width: 961px) and (max-width: 1279px) {
	.minimal-storefront .product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.minimal-storefront .category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 721px) and (max-width: 960px) {
	.minimal-storefront .site-header {
		padding-inline: 1.35rem;
	}

	.minimal-storefront .site-nav {
		gap: 0.9rem;
	}

	.minimal-storefront .hero {
		padding-inline: 1.35rem;
	}

	.minimal-storefront .hero__media.hero-showcase {
		grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
		min-height: 520px;
	}

	.minimal-storefront .section--intro,
	.minimal-storefront .benefits,
	.minimal-storefront .product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.minimal-storefront .category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.minimal-storefront .lookbook {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.minimal-storefront .announcement-bar {
		font-size: 0.68rem;
		gap: 0.9rem;
		justify-content: flex-start;
		overflow-x: auto;
		padding-inline: 1rem;
		scrollbar-width: none;
		white-space: nowrap;
	}

	.minimal-storefront .announcement-bar::-webkit-scrollbar {
		display: none;
	}

	.minimal-storefront .site-header {
		min-height: 72px;
		padding: 0.7rem 1rem;
	}

	.minimal-storefront .brand {
		gap: 0.55rem;
		min-width: 0;
	}

	.minimal-storefront .brand__mark {
		flex: 0 0 auto;
		height: 40px;
		width: 40px;
	}

	.minimal-storefront .brand strong {
		font-size: 1.08rem;
	}

	.minimal-storefront .brand small {
		font-size: 0.62rem;
		letter-spacing: 0.08em;
	}

	.minimal-storefront .nav-toggle {
		position: relative;
		z-index: 31;
	}

	.minimal-storefront .site-nav {
		box-shadow: -24px 0 48px rgba(47, 38, 31, 0.16);
		padding-top: 6rem;
		z-index: 30;
	}

	.minimal-storefront .hero {
		gap: 1.15rem;
		padding: 7.2rem 1rem 2rem;
	}

	.minimal-storefront .hero h1 {
		font-size: clamp(2.05rem, 12vw, 3.15rem);
		max-width: 340px;
	}

	.minimal-storefront .hero__text {
		font-size: 0.96rem;
		max-width: 300px;
	}

	.minimal-storefront .hero__actions {
		display: grid;
		gap: 0.55rem;
	}

	.minimal-storefront .hero__craft {
		gap: 0.35rem;
	}

	.minimal-storefront .hero__craft span {
		font-size: 0.62rem;
		padding: 0.36rem 0.5rem;
	}

	.minimal-storefront .hero__media.hero-showcase {
		box-shadow: none;
		gap: 0.55rem;
		padding: 0.55rem;
	}

	.minimal-storefront .hero-showcase__copy,
	.minimal-storefront .hero-showcase__note {
		padding: 0.75rem;
	}

	.minimal-storefront .hero-showcase__copy strong {
		font-size: 1.05rem;
	}

	.minimal-storefront .banner-carousel {
		padding-inline: 0.75rem;
	}

	.minimal-storefront .banner-carousel__viewport {
		border-radius: var(--radius);
		min-height: 0;
	}

	.minimal-storefront .banner-slide,
	.minimal-storefront .banner-slide.is-active {
		gap: 0.8rem;
		padding: 0.85rem 0.85rem 3.25rem;
	}

	.minimal-storefront .banner-slide__content h2 {
		font-size: 1.35rem;
	}

	.minimal-storefront .banner-slide__visual {
		aspect-ratio: 4 / 3.15;
	}

	.minimal-storefront .section,
	.minimal-storefront .product-showcase,
	.minimal-storefront .section--warm,
	.minimal-storefront .story,
	.minimal-storefront .instagram,
	.minimal-storefront .contact {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.minimal-storefront .section__header {
		gap: 0.55rem;
		margin-bottom: 1rem;
	}

	.minimal-storefront .section__header h2,
	.minimal-storefront .story h2,
	.minimal-storefront .instagram h2,
	.minimal-storefront .contact h2,
	.minimal-storefront .lookbook__text h2 {
		font-size: clamp(1.42rem, 8vw, 2.05rem);
	}

	.minimal-storefront .section--intro,
	.minimal-storefront .product-grid,
	.minimal-storefront .category-grid,
	.minimal-storefront .benefits,
	.minimal-storefront .lookbook__gallery {
		grid-template-columns: 1fr;
	}

	.minimal-storefront .intro-item,
	.minimal-storefront .benefit,
	.minimal-storefront .category {
		min-height: 0;
	}

	.minimal-storefront .shop-toolbar {
		border-radius: 14px;
		margin-bottom: 0.85rem;
		position: static;
	}

	.minimal-storefront .shop-search input,
	.minimal-storefront .shop-sort select,
	.minimal-storefront .shop-bag-button {
		min-height: 46px;
	}

	.minimal-storefront .shop-filter-panel {
		border-radius: 14px;
		grid-template-columns: 1fr;
		margin-top: 0;
		padding: 0.75rem;
	}

	.minimal-storefront .filter-chips {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 0.15rem;
		scrollbar-width: none;
	}

	.minimal-storefront .filter-chips::-webkit-scrollbar {
		display: none;
	}

	.minimal-storefront .filter-chip {
		flex: 0 0 auto;
	}

	.minimal-storefront .product-card__image {
		aspect-ratio: 4 / 4.9;
	}

	.minimal-storefront .product-card__footer {
		grid-template-columns: 1fr;
	}

	.minimal-storefront .product-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.minimal-storefront .lookbook__gallery img {
		min-height: 0;
	}

	.minimal-storefront .brand-note {
		gap: 0.8rem;
	}

	.minimal-storefront .instagram,
	.minimal-storefront .contact,
	.minimal-storefront .site-footer {
		gap: 1rem;
	}

	.minimal-storefront .whatsapp-float {
		bottom: 1rem;
		right: 1rem;
		z-index: 35;
	}

	.minimal-storefront .local-tools {
		align-items: flex-start;
		bottom: 1rem;
		left: 1rem;
		right: auto;
		z-index: 34;
	}

	.minimal-storefront .editor-shortcut {
		box-shadow: 0 10px 24px rgba(47, 38, 31, 0.18);
	}

	.minimal-storefront .cart-drawer__panel {
		width: min(100vw, 420px);
	}
}

@media (max-width: 420px) {
	.minimal-storefront .brand small {
		display: none;
	}

	.minimal-storefront .hero-showcase__copy,
	.minimal-storefront .hero-showcase__note {
		display: none;
	}

	.minimal-storefront .product-actions {
		grid-template-columns: 1fr;
	}

	.minimal-storefront .local-tools {
		max-width: calc(100vw - 5rem);
	}
}

/* Responsive polish for store view */
.minimal-storefront .hero {
	align-items: center;
	min-height: auto;
	padding-top: clamp(6.2rem, 8vw, 7.4rem);
	padding-bottom: clamp(1.6rem, 3vw, 2.8rem);
}

.minimal-storefront .hero__media.hero-showcase {
	min-height: clamp(360px, 40vw, 540px);
}

.minimal-storefront .hero-showcase__photo--main {
	aspect-ratio: 5 / 4.6;
}

.minimal-storefront .hero-showcase__photo--small {
	aspect-ratio: 4 / 3.15;
}

.minimal-storefront .shop-toolbar {
	border-radius: 20px;
	grid-template-columns: minmax(280px, 1fr) minmax(142px, auto) minmax(142px, auto) auto;
	padding: 0.55rem;
}

.minimal-storefront .shop-search input {
	min-width: 0;
	width: 100%;
}

.minimal-storefront .shop-sort {
	min-width: 0;
}

.minimal-storefront .shop-sort select {
	min-width: 130px;
	width: 100%;
}

@media (min-width: 1280px) {
	.minimal-storefront .hero {
		grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1.28fr);
		min-height: auto;
	}
}

@media (min-width: 961px) and (max-width: 1279px) {
	.minimal-storefront .hero {
		grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
		padding-inline: clamp(1.4rem, 3.2vw, 2rem);
	}

	.minimal-storefront .hero__media.hero-showcase {
		min-height: clamp(340px, 42vw, 460px);
	}

	.minimal-storefront .shop-toolbar {
		grid-template-columns: minmax(240px, 1fr) minmax(128px, auto) minmax(128px, auto) auto;
	}
}

@media (min-width: 721px) and (max-width: 960px) {
	.minimal-storefront .hero {
		gap: 1.4rem;
		padding-top: 6.8rem;
		padding-bottom: 1.6rem;
	}

	.minimal-storefront .hero__content {
		max-width: 560px;
	}

	.minimal-storefront .hero h1 {
		font-size: clamp(2.35rem, 7vw, 3.8rem);
	}

	.minimal-storefront .hero__media.hero-showcase {
		grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
		min-height: 420px;
	}

	.minimal-storefront .shop-toolbar {
		border-radius: 18px;
		grid-template-columns: 1fr 1fr;
	}

	.minimal-storefront .shop-search {
		grid-column: 1 / -1;
	}
}

@media (max-width: 720px) {
	.minimal-storefront .hero {
		gap: 0.95rem;
		padding-top: 5.9rem;
		padding-bottom: 1.1rem;
	}

	.minimal-storefront .hero__label {
		font-size: 0.64rem;
		margin-bottom: 0.55rem;
		padding: 0.42rem 0.68rem;
	}

	.minimal-storefront .hero .eyebrow {
		font-size: 0.62rem;
		margin-bottom: 0.5rem;
	}

	.minimal-storefront .hero h1 {
		font-size: clamp(1.95rem, 10vw, 2.65rem);
		line-height: 1.02;
		margin-bottom: 0.5rem;
		max-width: 320px;
	}

	.minimal-storefront .hero__text {
		font-size: 0.9rem;
		line-height: 1.45;
		max-width: 280px;
	}

	.minimal-storefront .hero__actions {
		grid-template-columns: 1fr;
		margin-top: 0.9rem;
		max-width: 260px;
	}

	.minimal-storefront .hero__craft {
		display: none;
	}

	.minimal-storefront .hero__media.hero-showcase {
		border-radius: 18px;
		grid-template-columns: 0.58fr 1fr;
		min-height: 0;
		padding: 0.45rem;
	}

	.minimal-storefront .hero-showcase__copy {
		display: none;
	}

	.minimal-storefront .hero-showcase__photo--main {
		aspect-ratio: 4 / 4.25;
		grid-row: span 2;
	}

	.minimal-storefront .hero-showcase__photo--small {
		aspect-ratio: 1 / 1;
	}

	.minimal-storefront .hero-showcase__note {
		min-height: 0;
		padding: 0.6rem;
	}

	.minimal-storefront .hero-showcase__note strong {
		font-size: 0.9rem;
	}

	.minimal-storefront .hero-showcase__note span {
		font-size: 0.68rem;
	}

	.minimal-storefront .shop-toolbar {
		box-shadow: 0 10px 28px rgba(61, 43, 34, 0.08);
		gap: 0.5rem;
		grid-template-columns: 1fr 1fr;
		padding: 0.5rem;
	}

	.minimal-storefront .shop-search {
		grid-column: 1 / -1;
	}

	.minimal-storefront .shop-sort,
	.minimal-storefront .shop-bag-button {
		width: 100%;
	}

	.minimal-storefront .shop-sort {
		align-items: stretch;
		display: grid;
		grid-template-columns: 1fr;
	}

	.minimal-storefront .shop-sort span {
		padding: 0.25rem 0.7rem 0;
	}

	.minimal-storefront .shop-sort select {
		min-width: 0;
	}

	.minimal-storefront .shop-bag-button {
		grid-column: 1 / -1;
	}
}

@media (max-width: 420px) {
	.minimal-storefront .hero__media.hero-showcase {
		grid-template-columns: 1fr 0.72fr;
	}

	.minimal-storefront .hero-showcase__photo--main,
	.minimal-storefront .hero-showcase__photo--small {
		aspect-ratio: 4 / 4.4;
	}

	.minimal-storefront .shop-toolbar {
		grid-template-columns: 1fr;
	}

	.minimal-storefront .shop-bag-button {
		grid-column: auto;
	}
}

/* Floating WhatsApp and local editor spacing */
@media (min-width: 721px) {
	.minimal-storefront.footer-is-visible .whatsapp-float {
		bottom: 5.6rem;
	}

	.minimal-storefront.footer-is-visible .local-tools {
		bottom: 9.9rem;
	}
}

@media (max-width: 720px) {
	.minimal-storefront .site-footer {
		padding-bottom: 6.5rem;
		padding-right: 1rem;
	}

	.minimal-storefront .whatsapp-float {
		height: 54px;
		min-width: 54px;
		padding: 0;
		width: 54px;
	}

	.minimal-storefront .whatsapp-float span {
		display: none;
	}

	.minimal-storefront.footer-is-visible .whatsapp-float {
		bottom: 1rem;
	}

	.minimal-storefront.footer-is-visible .local-tools {
		bottom: 1rem;
	}
}

/* Brown opening hero with pink collection bag */
.minimal-storefront .hero {
	background:
		url("../img/produtos/oficial-img-8585.jpg") center center / cover no-repeat,
		#2f231c;
	color: #fffaf2;
}

.minimal-storefront .hero::before {
	background: transparent;
}

.minimal-storefront .hero::after {
	opacity: 0;
}

.minimal-storefront .hero__content {
	background: linear-gradient(90deg, rgba(47, 35, 28, 0.82), rgba(47, 35, 28, 0));
}

.minimal-storefront .hero__label {
	background: rgba(255, 250, 242, 0.1);
	border-color: rgba(255, 250, 242, 0.22);
	color: #f3d4b5;
}

.minimal-storefront .hero .eyebrow {
	color: #d8ad76;
}

.minimal-storefront .hero h1,
.minimal-storefront .hero__text {
	color: #fffaf2;
	text-shadow: 0 14px 36px rgba(18, 11, 8, 0.38);
}

.minimal-storefront .hero__text {
	color: rgba(255, 250, 242, 0.82);
}

.minimal-storefront .hero .button--primary {
	background: #fffaf2;
	color: #3f2b22;
}

.minimal-storefront .hero .button--light {
	background: rgba(255, 250, 242, 0.12);
	border-color: rgba(255, 250, 242, 0.32);
	color: #fffaf2;
}

.minimal-storefront .hero__craft span {
	background: rgba(255, 250, 242, 0.1);
	border-color: rgba(255, 250, 242, 0.22);
	color: rgba(255, 250, 242, 0.82);
}

.minimal-storefront .hero__media.hero-showcase {
	background: rgba(255, 250, 242, 0.9);
	border-color: rgba(255, 250, 242, 0.32);
	box-shadow: 0 34px 90px rgba(18, 11, 8, 0.34);
}

.minimal-storefront .hero-showcase__tile {
	background: transparent;
	border: 0;
	min-height: 0;
	overflow: hidden;
	padding: 0;
}

.minimal-storefront .hero-showcase__tile img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

@media (max-width: 960px) {
	.minimal-storefront .hero {
		background:
			url("../img/produtos/oficial-img-8585.jpg") center center / cover no-repeat,
			#2f231c;
	}

	.minimal-storefront .hero__content {
		background: rgba(47, 35, 28, 0.62);
		border-radius: 18px;
		padding: 0.75rem;
	}
}

@media (max-width: 720px) {
	.minimal-storefront .hero {
		background:
			url("../img/produtos/oficial-img-8585.jpg") center center / cover no-repeat,
			#2f231c;
	}
}

/* Show full product photos without cropping */
.minimal-storefront .product-card__image,
.minimal-storefront .product-card__thumbs button,
.minimal-storefront .banner-slide__visual,
.minimal-storefront .hero-showcase__photo,
.minimal-storefront .hero-showcase__tile,
.minimal-storefront .atelier-feature__images img,
.minimal-storefront .lookbook__gallery img,
.minimal-storefront .cart-item img,
.minimal-storefront .editor-product__image,
.minimal-storefront .editor-gallery__item {
	background:
		linear-gradient(135deg, rgba(255, 250, 242, 0.92), rgba(244, 234, 220, 0.78)),
		repeating-linear-gradient(90deg, rgba(79, 56, 45, 0.035) 0 1px, transparent 1px 18px);
}

.minimal-storefront .product-card__image img,
.minimal-storefront .product-card__thumbs img,
.minimal-storefront .banner-slide__visual img,
.minimal-storefront .hero-showcase__photo img,
.minimal-storefront .hero-showcase__tile img,
.minimal-storefront .atelier-feature__images img,
.minimal-storefront .lookbook__gallery img,
.minimal-storefront .cart-item img,
.minimal-storefront .editor-product__image img,
.minimal-storefront .editor-gallery__item img {
	height: 100%;
	object-fit: contain;
	object-position: center;
	width: 100%;
}

.minimal-storefront .product-card:hover .product-card__image img {
	transform: none;
}

.minimal-storefront .banner-slide__visual,
.minimal-storefront .hero-showcase__photo,
.minimal-storefront .hero-showcase__tile {
	padding: 0.35rem;
}

.minimal-storefront .lookbook__gallery img,
.minimal-storefront .atelier-feature__images img {
	display: block;
	padding: 0.35rem;
}

/* Single-photo opening showcase */
.minimal-storefront .hero__media.hero-showcase--single {
	display: block;
	min-height: clamp(360px, 44vw, 620px);
	padding: 0;
}

.minimal-storefront .hero__media.hero-showcase--single > img {
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

@media (max-width: 720px) {
	.minimal-storefront .hero__media.hero-showcase--single {
		min-height: 300px;
	}
}

/* Hero as background-only campaign banner */
.minimal-storefront .hero {
	grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
	min-height: clamp(560px, calc(100svh - 34px), 760px);
}

.minimal-storefront .hero__content {
	align-self: center;
	background: rgba(47, 35, 28, 0.7);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 250, 242, 0.18);
	border-radius: 24px;
	max-width: 430px;
	padding: clamp(1.1rem, 2vw, 1.6rem);
}

.minimal-storefront .hero__media.hero-showcase {
	display: none;
}

@media (min-width: 1280px) {
	.minimal-storefront .hero {
		grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1.52fr);
	}
}

@media (max-width: 960px) {
	.minimal-storefront .hero {
		grid-template-columns: 1fr;
		min-height: 620px;
	}
}

@media (max-width: 720px) {
	.minimal-storefront .hero {
		min-height: 560px;
	}

	.minimal-storefront .hero__content {
		max-width: 340px;
	}
}

/* Brown boutique sections */
.minimal-storefront .section--warm {
	background:
		linear-gradient(135deg, rgba(94, 64, 49, 0.96), rgba(61, 43, 34, 0.94)),
		radial-gradient(circle at 82% 8%, rgba(216, 173, 118, 0.18), transparent 38%);
	color: #fffaf2;
	max-width: none;
	padding-left: max(clamp(1rem, 4vw, 2rem), calc((100vw - 1180px) / 2));
	padding-right: max(clamp(1rem, 4vw, 2rem), calc((100vw - 1180px) / 2));
}

.minimal-storefront .section--warm .section__header,
.minimal-storefront .section--warm .category-grid {
	margin-left: auto;
	margin-right: auto;
	max-width: 1180px;
}

.minimal-storefront .section--warm .section__header {
	align-items: end;
	display: grid;
	grid-template-columns: 1fr auto;
}

.minimal-storefront .section--warm .eyebrow {
	color: #d8ad76;
}

.minimal-storefront .section--warm h2 {
	color: #fffaf2;
	font-size: clamp(2rem, 4vw, 3.4rem);
}

.minimal-storefront .section--warm .category {
	background: rgba(255, 250, 242, 0.92);
	border-color: rgba(255, 250, 242, 0.28);
	box-shadow: 0 16px 36px rgba(18, 11, 8, 0.14);
	color: var(--brown);
	min-height: 116px;
}

.minimal-storefront .section--warm .category span {
	color: var(--brown);
}

.minimal-storefront .section--warm .category small {
	color: var(--brown-soft);
}

.minimal-storefront .brand-note {
	background:
		linear-gradient(135deg, rgba(79, 56, 45, 0.98), rgba(47, 35, 28, 0.98)),
		repeating-linear-gradient(90deg, rgba(255, 250, 242, 0.05) 0 1px, transparent 1px 20px);
	border-block: 0;
	color: #fffaf2;
}

.minimal-storefront .brand-note .eyebrow {
	color: #d8ad76;
}

.minimal-storefront .brand-note h2,
.minimal-storefront .brand-note .story__body p {
	color: #fffaf2;
}

.minimal-storefront .brand-note .story__body p {
	color: rgba(255, 250, 242, 0.78);
}

.minimal-storefront .brand-note__tags span {
	background: rgba(255, 250, 242, 0.1);
	border-color: rgba(255, 250, 242, 0.22);
	color: #fffaf2;
}

.minimal-storefront .benefit {
	border-top: 4px solid var(--brown);
}

@media (max-width: 720px) {
	.minimal-storefront .section--warm,
	.minimal-storefront .brand-note {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.minimal-storefront .section--warm .section__header {
		align-items: start;
		grid-template-columns: 1fr;
	}
}

/* Minimal handmade refinement */
body.minimal-storefront {
	background:
		linear-gradient(rgba(255, 250, 242, 0.95), rgba(255, 250, 242, 0.96)),
		repeating-linear-gradient(90deg, rgba(79, 56, 45, 0.028) 0 1px, transparent 1px 24px);
	color: #2f261f;
}

.minimal-storefront .announcement-bar {
	background: #3a2a22;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
}

.minimal-storefront .site-header {
	background: rgba(255, 250, 242, 0.92);
	box-shadow: none;
}

.minimal-storefront .hero {
	min-height: clamp(520px, calc(92svh - 34px), 700px);
}

.minimal-storefront .hero__content {
	background: rgba(47, 35, 28, 0.58);
	backdrop-filter: blur(3px);
	border-color: rgba(255, 250, 242, 0.14);
	border-radius: 16px;
	max-width: 390px;
}

.minimal-storefront .hero h1 {
	font-size: clamp(2.35rem, 4.6vw, 4.7rem);
	line-height: 0.98;
}

.minimal-storefront .hero__text {
	font-size: 1rem;
	max-width: 310px;
}

.minimal-storefront .hero__craft span {
	background: rgba(255, 250, 242, 0.08);
	font-size: 0.66rem;
}

.minimal-storefront .button,
.minimal-storefront .product-actions .button,
.minimal-storefront .product-whatsapp,
.minimal-storefront .clear-filters {
	box-shadow: none;
	min-height: 40px;
}

.minimal-storefront .banner-carousel {
	background: #fffaf2;
	border-block: 1px solid rgba(135, 92, 63, 0.12);
	padding-block: 0.7rem;
}

.minimal-storefront .banner-carousel__viewport {
	background: rgba(255, 250, 242, 0.78);
	border-color: rgba(135, 92, 63, 0.12);
}

.minimal-storefront .intro-item,
.minimal-storefront .product-card,
.minimal-storefront .benefit,
.minimal-storefront .category {
	background: rgba(255, 252, 247, 0.74);
	border: 1px solid rgba(135, 92, 63, 0.14);
	box-shadow: none;
}

.minimal-storefront .intro-item {
	padding: 1rem 1.1rem;
}

.minimal-storefront .atelier-feature {
	gap: clamp(1.5rem, 4vw, 3rem);
	padding-block: clamp(2.8rem, 6vw, 5rem);
}

.minimal-storefront .atelier-feature__copy h2,
.minimal-storefront .section__header h2,
.minimal-storefront .lookbook__text h2,
.minimal-storefront .brand-note h2 {
	font-size: clamp(1.8rem, 3.6vw, 3.2rem);
}

.minimal-storefront .atelier-feature__images {
	gap: 0.7rem;
}

.minimal-storefront .product-showcase {
	background:
		linear-gradient(rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.94)),
		repeating-linear-gradient(0deg, rgba(79, 56, 45, 0.024) 0 1px, transparent 1px 26px);
}

.minimal-storefront .shop-toolbar,
.minimal-storefront .shop-filter-panel {
	background: rgba(255, 252, 247, 0.82);
	border-color: rgba(135, 92, 63, 0.14);
	box-shadow: none;
}

.minimal-storefront .product-card:hover {
	box-shadow: none;
	transform: none;
}

.minimal-storefront .product-card::after {
	display: none;
}

.minimal-storefront .product-card__body {
	padding: 1rem;
}

.minimal-storefront .product-card h3 {
	font-size: 1.18rem;
}

.minimal-storefront .section--warm {
	background:
		linear-gradient(rgba(244, 234, 220, 0.84), rgba(255, 250, 242, 0.9)),
		repeating-linear-gradient(90deg, rgba(79, 56, 45, 0.032) 0 1px, transparent 1px 24px);
	color: var(--ink);
}

.minimal-storefront .section--warm .section__header {
	align-items: start;
	grid-template-columns: 1fr;
}

.minimal-storefront .section--warm .eyebrow,
.minimal-storefront .section--warm h2 {
	color: var(--brown);
}

.minimal-storefront .section--warm .category {
	background: rgba(255, 252, 247, 0.78);
	border-color: rgba(135, 92, 63, 0.16);
	box-shadow: none;
}

.minimal-storefront .lookbook {
	background: #3a2a22;
	padding-block: clamp(2.8rem, 6vw, 4.6rem);
}

.minimal-storefront .lookbook__gallery {
	gap: 0.7rem;
}

.minimal-storefront .brand-note {
	background:
		linear-gradient(rgba(79, 56, 45, 0.95), rgba(61, 43, 34, 0.96)),
		repeating-linear-gradient(90deg, rgba(255, 250, 242, 0.04) 0 1px, transparent 1px 24px);
}

.minimal-storefront .benefit {
	border-top: 2px solid rgba(79, 56, 45, 0.45);
}

.minimal-storefront .instagram {
	background: #3a2a22;
	border-radius: 0;
}

.minimal-storefront .contact {
	background: rgba(255, 250, 242, 0.68);
}

@media (max-width: 720px) {
	.minimal-storefront .hero {
		min-height: 520px;
	}

	.minimal-storefront .hero__content {
		max-width: 310px;
	}

	.minimal-storefront .banner-carousel {
		display: none;
	}
}

/* Catarina Mina inspired, original Ane Bella catalog rhythm */
.minimal-storefront .hero__stats {
	display: none;
}

.minimal-storefront .product-showcase {
	padding-top: clamp(3rem, 6vw, 5rem);
	scroll-margin-top: 7rem;
}

.minimal-storefront .section__header {
	border-bottom: 1px solid rgba(135, 92, 63, 0.12);
	padding-bottom: 1rem;
}

.minimal-storefront .product-grid {
	gap: 1.2rem 0.9rem;
}

.minimal-storefront .product-card {
	background: transparent;
	border: 0;
}

.minimal-storefront .product-card__image {
	background: #f4eadc;
	border: 1px solid rgba(135, 92, 63, 0.12);
}

.minimal-storefront .product-card__thumbs {
	border-bottom-color: rgba(135, 92, 63, 0.12);
}

.minimal-storefront .product-card__body {
	background: transparent;
	padding-inline: 0.15rem;
}

.minimal-storefront .product-card h3 {
	font-family: Inter, Arial, sans-serif;
	font-size: 0.98rem;
	font-weight: 800;
	letter-spacing: 0;
}

.minimal-storefront .product-card p {
	color: var(--muted);
	font-size: 0.84rem;
}

.minimal-storefront .product-card__meta,
.minimal-storefront .product-card__price {
	font-size: 0.76rem;
}

.minimal-storefront .craft-proof {
	align-items: stretch;
	background: #fffaf2;
	border-block: 1px solid rgba(135, 92, 63, 0.12);
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
	margin: 0;
}

.minimal-storefront .craft-proof__media {
	background: #f4eadc;
	min-height: clamp(360px, 46vw, 560px);
}

.minimal-storefront .craft-proof__media img {
	height: 100%;
	object-fit: contain;
	object-position: center;
	padding: 0.65rem;
	width: 100%;
}

.minimal-storefront .craft-proof__content {
	align-content: center;
	display: grid;
	padding: clamp(2rem, 5vw, 4rem);
}

.minimal-storefront .craft-proof__content h2 {
	color: var(--brown);
	font-size: clamp(1.8rem, 3.5vw, 3.2rem);
	line-height: 1;
	margin-bottom: 1rem;
}

.minimal-storefront .craft-proof__content p:not(.eyebrow) {
	color: var(--muted);
	font-size: 0.98rem;
	max-width: 520px;
}

.minimal-storefront .craft-proof__list {
	border-top: 1px solid rgba(135, 92, 63, 0.16);
	display: grid;
	gap: 0;
	margin-top: 1.5rem;
	max-width: 520px;
}

.minimal-storefront .craft-proof__list span {
	border-bottom: 1px solid rgba(135, 92, 63, 0.16);
	color: var(--brown);
	font-size: 0.82rem;
	font-weight: 800;
	padding: 0.8rem 0;
}

.minimal-storefront .maker-grid {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: clamp(1.4rem, 3vw, 2rem) auto 0;
	max-width: 1180px;
}

.minimal-storefront .maker-grid a {
	background: rgba(255, 252, 247, 0.76);
	border: 1px solid rgba(135, 92, 63, 0.13);
	color: var(--brown);
	display: grid;
	min-height: 170px;
	padding: 1rem;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease;
}

.minimal-storefront .maker-grid a:hover {
	background: #fffaf2;
	border-color: rgba(135, 92, 63, 0.28);
}

.minimal-storefront .maker-grid span {
	color: var(--gold);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.minimal-storefront .maker-grid strong {
	align-self: end;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.35rem;
	line-height: 1.05;
}

.minimal-storefront .maker-grid small {
	color: var(--muted);
	font-size: 0.82rem;
	line-height: 1.5;
	margin-top: 0.55rem;
}

.minimal-storefront .lookbook {
	background: #fffaf2;
	border-block: 1px solid rgba(135, 92, 63, 0.12);
	color: var(--ink);
}

.minimal-storefront .lookbook .eyebrow,
.minimal-storefront .lookbook__text h2 {
	color: var(--brown);
}

.minimal-storefront .lookbook__text p:not(.eyebrow) {
	color: var(--muted);
}

.minimal-storefront .lookbook__gallery img {
	border-color: rgba(135, 92, 63, 0.12);
}

.minimal-storefront .brand-note {
	background: #3a2a22;
}

@media (max-width: 960px) {
	.minimal-storefront .craft-proof {
		grid-template-columns: 1fr;
	}

	.minimal-storefront .maker-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.minimal-storefront .craft-proof__media {
		min-height: 300px;
	}

	.minimal-storefront .craft-proof__content {
		padding: 1.25rem 1rem 2rem;
	}

	.minimal-storefront .maker-grid {
		grid-template-columns: 1fr;
	}

	.minimal-storefront .maker-grid a {
		min-height: 132px;
	}
}

/* Keep every collection photo fully visible */
.minimal-storefront .hero {
	background-color: #2f231c;
	background-image: url("../img/produtos/oficial-img-8585.jpg");
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
}

.minimal-storefront .product-card__image img,
.minimal-storefront .product-card__thumbs img,
.minimal-storefront .banner-slide__visual img,
.minimal-storefront .atelier-feature__images img,
.minimal-storefront .lookbook__gallery img,
.minimal-storefront .craft-proof__media img,
.minimal-storefront .cart-item img,
.minimal-storefront .editor-product__image img,
.minimal-storefront .editor-gallery__item img {
	object-fit: contain;
	object-position: center;
}

@media (max-width: 720px) {
	.minimal-storefront .hero {
		background-position: center top;
		background-size: 100% auto;
	}
}

/* Ultra minimal bag catalog */
.minimal-storefront .hero {
	min-height: clamp(500px, 82svh, 660px);
}

.minimal-storefront .product-showcase {
	padding-top: clamp(2.4rem, 5vw, 4rem);
}

.minimal-storefront .section,
.minimal-storefront .lookbook,
.minimal-storefront .brand-note,
.minimal-storefront .contact {
	padding-block: clamp(2.5rem, 5vw, 4rem);
}

.minimal-storefront .shop-filter-panel {
	display: none;
}

.minimal-storefront .product-card__tags {
	display: none;
}

.minimal-storefront .section--warm {
	background: #fffaf2;
	border-block: 1px solid rgba(135, 92, 63, 0.12);
}

.minimal-storefront .category-grid {
	gap: 0.65rem;
}

.minimal-storefront .category {
	min-height: 96px;
	padding: 0.85rem;
}

.minimal-storefront .category span {
	font-family: Inter, Arial, sans-serif;
	font-size: 0.95rem;
	font-weight: 800;
}

.minimal-storefront .category small {
	font-size: 0.78rem;
}

.minimal-storefront .lookbook__gallery {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.minimal-storefront .lookbook__gallery img:nth-child(2) {
	margin-top: 0;
}

.minimal-storefront .brand-note {
	background: #fffaf2;
	border-block: 1px solid rgba(135, 92, 63, 0.12);
	color: var(--ink);
}

.minimal-storefront .brand-note .eyebrow,
.minimal-storefront .brand-note h2,
.minimal-storefront .brand-note .story__body p {
	color: var(--brown);
}

.minimal-storefront .brand-note .story__body p {
	color: var(--muted);
}

.minimal-storefront .brand-note__tags span {
	background: transparent;
	border-color: rgba(135, 92, 63, 0.2);
	color: var(--brown);
}

.minimal-storefront .contact {
	margin-bottom: 0;
}

.minimal-storefront .site-footer p:nth-child(2) {
	display: none;
}

@media (max-width: 720px) {
	.minimal-storefront .hero {
		min-height: 500px;
	}

	.minimal-storefront .lookbook__gallery {
		grid-template-columns: 1fr;
	}
}

/* Brown minimal refinement and organized bag showcase */
.minimal-storefront .hero {
	background-color: #2f231c;
	background-image:
		linear-gradient(90deg, rgba(47, 35, 28, 0.92) 0%, rgba(47, 35, 28, 0.72) 34%, rgba(47, 35, 28, 0.18) 62%, rgba(47, 35, 28, 0) 100%),
		url("../img/produtos/oficial-img-8585.jpg");
	background-position: left center, right center;
	background-repeat: no-repeat;
	background-size: 100% 100%, auto min(86vh, 760px);
	min-height: clamp(600px, calc(100svh - 34px), 780px);
}

.minimal-storefront .hero__content {
	background: rgba(47, 35, 28, 0.5);
	border-color: rgba(255, 250, 242, 0.16);
	max-width: 410px;
}

.minimal-storefront .product-showcase {
	background: #fffaf2;
	max-width: none;
	padding-left: max(clamp(1rem, 4vw, 2rem), calc((100vw - 1240px) / 2));
	padding-right: max(clamp(1rem, 4vw, 2rem), calc((100vw - 1240px) / 2));
}

.minimal-storefront .product-showcase .section__header,
.minimal-storefront .product-showcase .shop-toolbar,
.minimal-storefront .product-showcase .shop-results,
.minimal-storefront .product-showcase .product-grid {
	margin-left: auto;
	margin-right: auto;
	max-width: 1240px;
}

.minimal-storefront .shop-toolbar {
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(135, 92, 63, 0.16);
	border-radius: 0;
	display: grid;
	gap: 0.8rem;
	grid-template-columns: minmax(260px, 1fr) auto auto auto;
	padding: 0 0 1rem;
}

.minimal-storefront .shop-search input,
.minimal-storefront .shop-sort,
.minimal-storefront .shop-sort select {
	background: #fffaf2;
}

.minimal-storefront .product-grid {
	gap: clamp(1.2rem, 2.5vw, 2rem) clamp(0.9rem, 2vw, 1.4rem);
}

.minimal-storefront .product-card {
	display: grid;
	grid-template-rows: auto auto 1fr;
	min-width: 0;
}

.minimal-storefront .product-card__image {
	aspect-ratio: 4 / 5;
	background: #f3e7d7;
}

.minimal-storefront .product-card__image img {
	padding: 0.45rem;
}

.minimal-storefront .product-card__ribbon {
	background: rgba(255, 250, 242, 0.86);
	font-size: 0.58rem;
	right: 0.55rem;
	top: 0.55rem;
}

.minimal-storefront .product-card__thumbs {
	background: transparent;
	padding: 0.5rem 0 0;
}

.minimal-storefront .product-card__thumbs button {
	border-radius: 0;
	height: 38px;
	width: 38px;
}

.minimal-storefront .product-card__body {
	display: grid;
	grid-template-rows: auto auto auto 1fr;
	min-height: 220px;
	padding-top: 0.7rem;
}

.minimal-storefront .product-card p {
	-webkit-line-clamp: 2;
	margin-bottom: 0.85rem;
}

.minimal-storefront .product-card__footer {
	align-self: end;
	border-top: 1px solid rgba(135, 92, 63, 0.12);
	display: grid;
	gap: 0.65rem;
	padding-top: 0.8rem;
}

.minimal-storefront .product-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.minimal-storefront .product-actions .button,
.minimal-storefront .product-whatsapp {
	border-radius: 0;
	font-size: 0.78rem;
	min-height: 38px;
}

.minimal-storefront .section--warm {
	background: #3a2a22;
	color: #fffaf2;
}

.minimal-storefront .section--warm .eyebrow,
.minimal-storefront .section--warm h2 {
	color: #fffaf2;
}

.minimal-storefront .section--warm .category {
	background: rgba(255, 250, 242, 0.92);
	border-color: rgba(255, 250, 242, 0.2);
}

.minimal-storefront .lookbook {
	background: #fffaf2;
}

.minimal-storefront .brand-note {
	background: #3a2a22;
	color: #fffaf2;
}

.minimal-storefront .brand-note .eyebrow,
.minimal-storefront .brand-note h2,
.minimal-storefront .brand-note .story__body p {
	color: #fffaf2;
}

.minimal-storefront .brand-note .story__body p {
	color: rgba(255, 250, 242, 0.78);
}

.minimal-storefront .brand-note__tags span {
	border-color: rgba(255, 250, 242, 0.24);
	color: #fffaf2;
}

.minimal-storefront .contact {
	background: #4f382d;
	color: #fffaf2;
}

.minimal-storefront .contact .eyebrow,
.minimal-storefront .contact h2,
.minimal-storefront .contact p {
	color: #fffaf2;
}

.minimal-storefront .contact p {
	color: rgba(255, 250, 242, 0.78);
}

.minimal-storefront .contact .button {
	background: #fffaf2;
	color: var(--brown);
}

@media (min-width: 1280px) {
	.minimal-storefront .product-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (min-width: 961px) and (max-width: 1279px) {
	.minimal-storefront .product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 960px) {
	.minimal-storefront .hero {
		background-position: left center, center top;
		background-size: 100% 100%, auto 72%;
		min-height: 660px;
	}

	.minimal-storefront .shop-toolbar {
		grid-template-columns: 1fr 1fr;
	}

	.minimal-storefront .shop-search {
		grid-column: 1 / -1;
	}
}

@media (max-width: 720px) {
	.minimal-storefront .hero {
		background-image:
			linear-gradient(180deg, rgba(47, 35, 28, 0.2) 0%, rgba(47, 35, 28, 0.78) 48%, rgba(47, 35, 28, 0.95) 100%),
			url("../img/produtos/oficial-img-8585.jpg");
		background-position: center top, center top;
		background-size: 100% 100%, auto 56%;
		min-height: 620px;
	}

	.minimal-storefront .hero__content {
		align-self: end;
		max-width: none;
	}

	.minimal-storefront .shop-toolbar {
		gap: 0.55rem;
		grid-template-columns: 1fr 1fr;
	}

	.minimal-storefront .shop-search,
	.minimal-storefront .shop-bag-button {
		grid-column: 1 / -1;
	}

	.minimal-storefront .shop-sort {
		min-width: 0;
	}

	.minimal-storefront .shop-search input,
	.minimal-storefront .shop-sort select,
	.minimal-storefront .shop-bag-button {
		min-height: 42px;
	}

	.minimal-storefront .shop-sort span {
		font-size: 0.6rem;
		padding-left: 0.55rem;
	}

	.minimal-storefront .product-card p {
		display: none;
	}

	.minimal-storefront .product-card__body {
		min-height: 0;
	}

	.minimal-storefront .product-actions {
		grid-template-columns: 1fr;
	}
}

/* Clean handmade closing section */
.minimal-storefront .brand-note,
.minimal-storefront .contact {
	background: #35261f;
	color: #fffaf2;
	margin: 0;
	max-width: none;
	padding-left: max(clamp(1.1rem, 4vw, 2rem), calc((100vw - 1180px) / 2));
	padding-right: max(clamp(1.1rem, 4vw, 2rem), calc((100vw - 1180px) / 2));
}

.minimal-storefront .brand-note {
	align-items: center;
	border: 0;
	display: grid;
	gap: clamp(1.5rem, 4vw, 3rem);
	grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1.15fr);
	padding-bottom: clamp(2rem, 4vw, 2.8rem);
	padding-top: clamp(2.3rem, 5vw, 3.5rem);
}

.minimal-storefront .brand-note .story__text,
.minimal-storefront .brand-note .story__body {
	max-width: none;
}

.minimal-storefront .brand-note .eyebrow {
	color: #d5ad77;
}

.minimal-storefront .brand-note h2 {
	color: #fffaf2;
	font-size: clamp(1.9rem, 3vw, 2.75rem);
	letter-spacing: 0;
	line-height: 1.08;
	max-width: 500px;
}

.minimal-storefront .brand-note .story__body {
	display: grid;
	gap: 1rem;
}

.minimal-storefront .brand-note .story__body p {
	color: rgba(255, 250, 242, 0.78);
	font-size: 1rem;
	line-height: 1.65;
	margin: 0;
	max-width: 620px;
}

.minimal-storefront .brand-note__tags {
	gap: 0.55rem;
}

.minimal-storefront .brand-note__tags span {
	background: transparent;
	border-color: rgba(255, 250, 242, 0.26);
	color: #fffaf2;
}

.minimal-storefront .contact {
	align-items: center;
	border-top: 1px solid rgba(255, 250, 242, 0.14);
	display: grid;
	gap: clamp(1rem, 4vw, 3rem);
	grid-template-columns: minmax(280px, 1fr) auto;
	padding-bottom: clamp(1.7rem, 3vw, 2.4rem);
	padding-top: clamp(1.7rem, 3vw, 2.4rem);
}

.minimal-storefront .contact .eyebrow {
	color: #d5ad77;
}

.minimal-storefront .contact h2 {
	color: #fffaf2;
	font-size: clamp(1.55rem, 2.4vw, 2.1rem);
	letter-spacing: 0;
	line-height: 1.05;
}

.minimal-storefront .contact p {
	color: rgba(255, 250, 242, 0.78);
	max-width: 620px;
}

.minimal-storefront .contact .button {
	background: #fffaf2;
	color: var(--brown);
	justify-self: end;
	min-width: 210px;
}

.minimal-storefront .site-footer {
	background: #2a211b;
	border-top: 1px solid rgba(255, 250, 242, 0.12);
	color: #fffaf2;
	padding-bottom: 1rem;
	padding-top: 1rem;
}

.minimal-storefront .site-footer p:nth-child(2) {
	display: none;
}

.minimal-storefront .footer-links a {
	color: #fffaf2;
	text-decoration-color: rgba(255, 250, 242, 0.35);
}

.minimal-storefront .local-tools,
.minimal-storefront.footer-is-visible .local-tools {
	bottom: auto;
	left: 1rem;
	right: auto;
	top: 7.6rem;
}

.minimal-storefront.footer-is-visible .whatsapp-float {
	bottom: 4.1rem;
}

@media (max-width: 720px) {
	.minimal-storefront .brand-note,
	.minimal-storefront .contact {
		grid-template-columns: 1fr;
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.minimal-storefront .brand-note {
		padding-top: 2.5rem;
	}

	.minimal-storefront .contact .button {
		justify-self: stretch;
		width: 100%;
	}

	.minimal-storefront .local-tools,
	.minimal-storefront.footer-is-visible .local-tools {
		top: auto;
	}
}

/* Brown lookbook with adaptive photos */
.minimal-storefront .lookbook {
	background: #33251e;
	border: 0;
	color: #fffaf2;
	display: grid;
	gap: clamp(1.6rem, 4vw, 3rem);
	grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
	margin: 0;
	max-width: none;
	padding: clamp(3rem, 6vw, 5rem) max(clamp(1.1rem, 4vw, 2rem), calc((100vw - 1180px) / 2));
}

.minimal-storefront .lookbook__text {
	align-self: start;
	position: sticky;
	top: 8rem;
}

.minimal-storefront .lookbook .eyebrow {
	color: #d5ad77;
}

.minimal-storefront .lookbook__text h2 {
	color: #fffaf2;
	font-size: clamp(2rem, 4vw, 3.2rem);
	letter-spacing: 0;
	line-height: 1.02;
	margin-bottom: 0.75rem;
}

.minimal-storefront .lookbook__text p:not(.eyebrow) {
	color: rgba(255, 250, 242, 0.72);
	font-size: 0.98rem;
	line-height: 1.6;
	max-width: 300px;
}

.minimal-storefront .lookbook__gallery {
	align-items: start;
	display: grid;
	gap: clamp(0.75rem, 1.7vw, 1.1rem);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.minimal-storefront .lookbook__gallery img,
.minimal-storefront .lookbook__gallery img:nth-child(2) {
	background: #fbf4ea;
	border: 1px solid rgba(255, 250, 242, 0.16);
	border-radius: 0;
	box-shadow: none;
	display: block;
	height: auto;
	object-fit: initial;
	padding: clamp(0.35rem, 0.8vw, 0.6rem);
	width: 100%;
}

@media (max-width: 960px) {
	.minimal-storefront .lookbook {
		grid-template-columns: 1fr;
	}

	.minimal-storefront .lookbook__text {
		position: static;
	}

	.minimal-storefront .lookbook__gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.minimal-storefront .lookbook {
		padding-bottom: 3rem;
		padding-top: 3rem;
	}

	.minimal-storefront .lookbook__gallery {
		grid-template-columns: 1fr;
	}

	.minimal-storefront .lookbook__gallery img,
	.minimal-storefront .lookbook__gallery img:nth-child(2) {
		max-height: none;
	}
}

/* Full-screen bag background and subtle handmade texture */
body.minimal-storefront {
	background-color: #fbf4ea;
	background-image:
		linear-gradient(rgba(251, 244, 234, 0.92), rgba(251, 244, 234, 0.92)),
		url("../img/produtos/oficial-img-8416.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.minimal-storefront .hero {
	background-color: #2f231c;
	background-image:
		linear-gradient(90deg, rgba(47, 35, 28, 0.92) 0%, rgba(47, 35, 28, 0.7) 30%, rgba(47, 35, 28, 0.22) 62%, rgba(47, 35, 28, 0.06) 100%),
		linear-gradient(180deg, rgba(47, 35, 28, 0.04) 0%, rgba(47, 35, 28, 0.18) 100%),
		url("../img/produtos/oficial-img-8585.jpg");
	background-position: center, center, center 45%;
	background-repeat: no-repeat;
	background-size: cover, cover, cover;
	display: grid;
	min-height: calc(100svh - 103px);
	overflow: hidden;
	padding-bottom: clamp(1.4rem, 4vw, 3rem);
	padding-top: clamp(1.4rem, 4vw, 3rem);
}

.minimal-storefront .hero::before,
.minimal-storefront .hero::after {
	display: none;
}

.minimal-storefront .hero__content {
	align-self: center;
	background: rgba(47, 35, 28, 0.5);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 250, 242, 0.16);
	border-radius: 0;
	box-shadow: none;
	margin-left: max(clamp(1rem, 6vw, 5rem), calc((100vw - 1180px) / 2));
	max-width: 440px;
	padding: clamp(1.15rem, 2.5vw, 1.7rem);
	width: min(440px, calc(100vw - 2rem));
}

.minimal-storefront .hero h1 {
	font-size: clamp(2.25rem, 4.1vw, 3.9rem);
	line-height: 1;
	margin-bottom: 0.85rem;
}

.minimal-storefront .hero__text {
	max-width: 330px;
}

.minimal-storefront .hero__label {
	display: inline-flex;
	max-width: none;
	white-space: nowrap;
}

.minimal-storefront .hero__stats {
	display: none;
}

.minimal-storefront .product-showcase {
	background-color: rgba(255, 250, 242, 0.94);
	background-image:
		linear-gradient(90deg, rgba(255, 250, 242, 0.99) 0%, rgba(255, 250, 242, 0.97) 55%, rgba(255, 250, 242, 0.92) 100%),
		url("../img/produtos/oficial-img-8416.jpg");
	background-position: center, right center;
	background-repeat: no-repeat;
	background-size: cover, min(52vw, 680px) auto;
}

.minimal-storefront .product-showcase .section__header,
.minimal-storefront .product-showcase .shop-toolbar,
.minimal-storefront .product-showcase .shop-filter-panel,
.minimal-storefront .product-showcase .shop-results,
.minimal-storefront .product-showcase .product-grid {
	position: relative;
	z-index: 1;
}

@media (max-width: 960px) {
	.minimal-storefront .hero {
		background-image:
			linear-gradient(180deg, rgba(47, 35, 28, 0.12) 0%, rgba(47, 35, 28, 0.46) 42%, rgba(47, 35, 28, 0.92) 100%),
			url("../img/produtos/oficial-img-8585.jpg");
		background-position: center top, center top;
		background-size: cover, cover;
		min-height: calc(100svh - 91px);
		padding: 1rem;
	}

	.minimal-storefront .hero__content {
		align-self: end;
		margin: 0;
		max-width: 480px;
	}
}

@media (max-width: 720px) {
	body.minimal-storefront {
		background-attachment: scroll;
	}

	.minimal-storefront .hero {
		background-position: center top, center top;
		min-height: 640px;
	}

	.minimal-storefront .hero__content {
		backdrop-filter: blur(4px);
	}

	.minimal-storefront .product-showcase {
		background-image:
			linear-gradient(rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 0.96)),
			url("../img/produtos/oficial-img-8416.jpg");
		background-position: center, center top;
		background-size: cover, 120% auto;
	}
}

/* Single collection intro and cleaner product flow */
.minimal-storefront .product-showcase {
	padding-top: clamp(3rem, 6vw, 5rem);
}

.minimal-storefront .product-showcase .section__header {
	align-items: center;
	display: grid;
	column-gap: clamp(2rem, 6vw, 5rem);
	grid-template-columns: minmax(300px, 0.7fr) minmax(420px, 1fr);
	margin-bottom: clamp(1.8rem, 3.5vw, 2.7rem);
	min-height: clamp(210px, 19vw, 270px);
	text-align: left;
}

.minimal-storefront .product-showcase .section__header .eyebrow {
	align-self: start;
	color: #a8844e;
	grid-column: 1;
	margin: 0;
}

.minimal-storefront .product-showcase .section__header h2 {
	font-size: clamp(2.7rem, 4.9vw, 4.55rem);
	grid-column: 1;
	line-height: 0.98;
	margin: 0;
	max-width: 500px;
}

.minimal-storefront .product-showcase .section__header p:last-child {
	color: rgba(79, 56, 45, 0.78);
	font-size: clamp(1.16rem, 1.65vw, 1.34rem);
	grid-column: 2;
	grid-row: 1 / span 2;
	line-height: 1.62;
	margin: 0;
	max-width: 690px;
}

.minimal-storefront .shop-toolbar {
	border-radius: 0;
	margin-bottom: 0.9rem;
	position: relative;
	top: auto;
}

.minimal-storefront .shop-filter-panel {
	margin-top: 0;
}

.minimal-storefront .shop-results {
	display: block;
	margin: 0.5rem auto 1.1rem;
	position: relative;
	z-index: 1;
}

.minimal-storefront .local-tools,
.minimal-storefront.footer-is-visible .local-tools {
	bottom: 1rem;
	left: 0.45rem;
	right: auto;
	top: auto;
	transform: none;
	transform-origin: left bottom;
	z-index: 12;
}

.minimal-storefront .local-tools .editor-shortcut {
	border-radius: 999px;
	font-size: 0;
	height: 42px;
	padding: 0;
	width: 42px;
}

.minimal-storefront .local-tools .editor-shortcut::after {
	content: "E";
	font-size: 0.86rem;
	font-weight: 900;
}

.minimal-storefront .local-tools .editor-shortcut--button::after {
	content: "L";
}

/* Hero safe spacing below fixed header */
.minimal-storefront .hero {
	min-height: calc(100svh - 103px);
	padding-bottom: clamp(2rem, 4vw, 3rem);
	padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.minimal-storefront .hero__content {
	align-self: start;
}

@media (max-width: 960px) {
	.minimal-storefront .hero {
		padding-top: clamp(2.25rem, 8vw, 4rem);
	}
}

@media (max-width: 720px) {
	.minimal-storefront .hero {
		padding-top: 1rem;
	}

	.minimal-storefront .hero__content {
		align-self: end;
	}
}

/* Automatic collection carousel */
.minimal-storefront .collection-carousel {
	background: #fffaf2;
	border-bottom: 1px solid rgba(135, 92, 63, 0.14);
	border-top: 0;
	padding: clamp(1rem, 2.6vw, 1.6rem) max(clamp(1rem, 4vw, 2rem), calc((100vw - 1180px) / 2));
}

.minimal-storefront .collection-carousel .banner-carousel__viewport {
	background:
		linear-gradient(120deg, rgba(255, 250, 242, 0.97), rgba(244, 234, 220, 0.82)),
		url("../img/produtos/oficial-img-8416.jpg");
	background-position: center, right center;
	background-repeat: no-repeat;
	background-size: cover, min(42vw, 520px) auto;
	border: 1px solid rgba(135, 92, 63, 0.14);
	min-height: clamp(300px, 35vw, 450px);
}

.minimal-storefront .collection-carousel .banner-slide {
	grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
	padding: clamp(1rem, 2.4vw, 1.6rem);
}

.minimal-storefront .collection-carousel .banner-slide::after {
	display: none;
}

.minimal-storefront .collection-carousel .banner-slide__content {
	max-width: 320px;
}

.minimal-storefront .collection-carousel .banner-slide__content h2 {
	font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.minimal-storefront .collection-carousel .banner-slide__content p:not(.eyebrow) {
	max-width: 260px;
}

.minimal-storefront .collection-carousel .banner-slide__visual {
	aspect-ratio: 16 / 10;
	background: transparent;
	border: 0;
	max-width: none;
}

.minimal-storefront .collection-carousel .banner-slide__visual img {
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.minimal-storefront .collection-carousel .banner-carousel__dots {
	bottom: 0.9rem;
	flex-wrap: nowrap;
	max-width: min(58vw, 620px);
	overflow: hidden;
}

.minimal-storefront .collection-carousel .banner-carousel__dots button {
	flex: 0 0 auto;
	height: 6px;
	width: 18px;
}

.minimal-storefront .collection-carousel .banner-carousel__dots button.is-active {
	width: 32px;
}

@media (max-width: 860px) {
	.minimal-storefront .collection-carousel {
		padding-inline: 0;
	}

	.minimal-storefront .collection-carousel .banner-slide,
	.minimal-storefront .collection-carousel .banner-slide.is-active {
		grid-template-columns: 1fr;
	}

	.minimal-storefront .collection-carousel .banner-slide__visual {
		aspect-ratio: 1 / 1;
	}

	.minimal-storefront .collection-carousel .banner-carousel__dots {
		max-width: calc(100vw - 2rem);
	}
}

/* Lighter final brand and contact bands */
.minimal-storefront .brand-note {
	background:
		linear-gradient(90deg, rgba(255, 250, 242, 0.97), rgba(255, 250, 242, 0.92)),
		url("../img/produtos/oficial-img-8416.jpg");
	background-position: center, right center;
	background-repeat: no-repeat;
	background-size: cover, min(42vw, 520px) auto;
	border-top: 1px solid rgba(135, 92, 63, 0.12);
	color: var(--ink);
}

.minimal-storefront .brand-note .eyebrow {
	color: #a8844e;
}

.minimal-storefront .brand-note h2 {
	color: var(--ink);
}

.minimal-storefront .brand-note .story__body p {
	color: rgba(79, 56, 45, 0.78);
}

.minimal-storefront .brand-note__tags span {
	background: rgba(255, 252, 247, 0.72);
	border-color: rgba(135, 92, 63, 0.18);
	color: var(--brown);
}

.minimal-storefront .contact {
	background: #f1e4d3;
	border-top: 1px solid rgba(135, 92, 63, 0.16);
	color: var(--ink);
}

.minimal-storefront .contact .eyebrow {
	color: #a8844e;
}

.minimal-storefront .contact h2 {
	color: var(--ink);
}

.minimal-storefront .contact p {
	color: rgba(79, 56, 45, 0.78);
}

.minimal-storefront .contact .button {
	background: #3a2a22;
	color: #fffaf2;
}

.minimal-storefront .site-footer {
	background: #2f231c;
}

/* Natural lookbook photo fit */
.minimal-storefront .lookbook {
	grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
}

.minimal-storefront .lookbook__text {
	align-self: center;
	max-width: 310px;
}

.minimal-storefront .lookbook__text h2 {
	font-size: clamp(2.1rem, 3.8vw, 3.7rem);
	line-height: 0.98;
	margin-bottom: 1rem;
}

.minimal-storefront .lookbook__text p:not(.eyebrow) {
	color: rgba(255, 250, 242, 0.82);
	font-size: clamp(1rem, 1.25vw, 1.12rem);
	line-height: 1.65;
	max-width: 300px;
}

.minimal-storefront .lookbook__gallery {
	align-items: start;
	gap: clamp(0.9rem, 2vw, 1.35rem);
}

.minimal-storefront .lookbook__gallery img,
.minimal-storefront .lookbook__gallery img:nth-child(2) {
	aspect-ratio: 1 / 1 !important;
	background: transparent;
	border: 1px solid rgba(255, 250, 242, 0.18);
	display: block;
	height: clamp(240px, 20.5vw, 320px) !important;
	min-height: 0 !important;
	object-fit: cover !important;
	object-position: center;
	padding: 0;
	width: 100%;
}

@media (max-width: 960px) {
	.minimal-storefront .lookbook {
		grid-template-columns: 1fr;
	}
}

/* Softer category band before the brown lookbook */
.minimal-storefront .section--warm {
	background:
		linear-gradient(rgba(255, 250, 242, 0.95), rgba(255, 250, 242, 0.96)),
		url("../img/produtos/oficial-img-8416.jpg");
	background-position: center, right center;
	background-repeat: no-repeat;
	background-size: cover, min(42vw, 520px) auto;
	border-bottom: 1px solid rgba(135, 92, 63, 0.14);
	border-top: 1px solid rgba(135, 92, 63, 0.12);
	color: var(--ink);
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
	padding-top: clamp(2.5rem, 5vw, 4rem);
}

.minimal-storefront .section--warm .section__header {
	margin-bottom: clamp(1.2rem, 3vw, 2rem);
}

.minimal-storefront .section--warm .eyebrow {
	color: #a8844e;
}

.minimal-storefront .section--warm h2 {
	color: var(--ink);
}

.minimal-storefront .section--warm .category-grid {
	gap: 0.75rem;
}

.minimal-storefront .section--warm .category {
	background: rgba(255, 252, 247, 0.86);
	border: 1px solid rgba(135, 92, 63, 0.14);
	box-shadow: none;
	min-height: 92px;
}

.minimal-storefront .section--warm .category span {
	color: var(--ink);
}

.minimal-storefront .section--warm .category small {
	color: rgba(79, 56, 45, 0.74);
}

.minimal-storefront .section--warm .category.is-active,
.minimal-storefront .section--warm .category:hover {
	background: #3a2a22;
	border-color: #3a2a22;
	color: #fffaf2;
}

.minimal-storefront .section--warm .category.is-active span,
.minimal-storefront .section--warm .category:hover span,
.minimal-storefront .section--warm .category.is-active small,
.minimal-storefront .section--warm .category:hover small {
	color: #fffaf2;
}

.minimal-storefront .lookbook {
	border-top: 0;
}

/* Custom handmade order */
.minimal-storefront .custom-order {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: clamp(3.2rem, 6vw, 5.2rem);
}

.minimal-storefront .custom-order__form {
	box-shadow: 0 20px 55px rgba(61, 43, 34, 0.08);
}

.minimal-storefront .brand-note {
	border-top: 0;
	margin-top: 0;
}

.minimal-storefront .contact {
	border-top: 0;
}

@media (min-width: 821px) {
	.minimal-storefront .brand-note {
		margin-top: -1px;
	}
}

/* restore custom order background after transition overrides */
.minimal-storefront .custom-order {
	background:
		linear-gradient(90deg, rgba(255, 250, 242, 0.97) 0%, rgba(255, 250, 242, 0.91) 58%, rgba(255, 250, 242, 0.84) 100%),
		url("../img/produtos/oficial-img-8420.jpg");
	background-position: center, right center;
	background-repeat: no-repeat;
	background-size: cover, min(46vw, 560px) auto;
	border-bottom: 1px solid rgba(135, 92, 63, 0.16);
	display: grid;
	gap: clamp(1.4rem, 4vw, 3rem);
	grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
	padding: clamp(3rem, 6vw, 5rem) max(clamp(1rem, 4vw, 2rem), calc((100vw - 1180px) / 2));
	scroll-margin-top: 7rem;
}

.minimal-storefront .custom-order__intro {
	max-width: 430px;
}

.minimal-storefront .custom-order__intro h2 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(2rem, 4vw, 3.6rem);
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 1rem;
}

.minimal-storefront .custom-order__intro p:not(.eyebrow) {
	color: rgba(79, 56, 45, 0.78);
	font-size: 1rem;
	line-height: 1.7;
}

.minimal-storefront .custom-order__form {
	background: rgba(255, 252, 247, 0.9);
	border: 1px solid rgba(135, 92, 63, 0.16);
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding: clamp(1rem, 2.4vw, 1.6rem);
}

.minimal-storefront .custom-order__form label {
	display: grid;
	gap: 0.45rem;
}

.minimal-storefront .custom-order__form span {
	color: #a8844e;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.minimal-storefront .custom-order__form input,
.minimal-storefront .custom-order__form select,
.minimal-storefront .custom-order__form textarea {
	background: #fffaf2;
	border: 1px solid rgba(135, 92, 63, 0.18);
	color: var(--ink);
	font: inherit;
	min-height: 46px;
	padding: 0.8rem 0.9rem;
	width: 100%;
}

.minimal-storefront .custom-order__form textarea {
	resize: vertical;
}

.minimal-storefront .custom-order__notes,
.minimal-storefront .custom-order__form .button {
	grid-column: 1 / -1;
}

.minimal-storefront .custom-order__form .button {
	justify-self: start;
}

@media (max-width: 820px) {
	.minimal-storefront .custom-order {
		background-image:
			linear-gradient(rgba(255, 250, 242, 0.95), rgba(255, 250, 242, 0.95)),
			url("../img/produtos/oficial-img-8420.jpg");
		grid-template-columns: 1fr;
	}

	.minimal-storefront .custom-order__form {
		grid-template-columns: 1fr;
	}
}

/* Warmer brand story and elegant contact band */
.minimal-storefront .brand-note {
	background:
		linear-gradient(90deg, rgba(246, 236, 223, 0.98) 0%, rgba(246, 236, 223, 0.92) 55%, rgba(226, 203, 183, 0.82) 100%),
		url("../img/produtos/oficial-img-8589.jpg");
	background-position: center, right center;
	background-repeat: no-repeat;
	background-size: cover, min(44vw, 560px) auto;
	border-top: 1px solid rgba(135, 92, 63, 0.16);
	padding-bottom: clamp(2.5rem, 5vw, 3.6rem);
	padding-top: clamp(2.5rem, 5vw, 3.6rem);
}

.minimal-storefront .brand-note .story__text {
	border-left: 3px solid #a8844e;
	padding-left: clamp(1rem, 2vw, 1.4rem);
}

.minimal-storefront .brand-note .story__body {
	background: rgba(255, 252, 247, 0.64);
	border: 1px solid rgba(135, 92, 63, 0.14);
	padding: clamp(1rem, 2vw, 1.4rem);
}

.minimal-storefront .brand-note__tags span {
	background: #fffaf2;
	box-shadow: 0 10px 24px rgba(61, 43, 34, 0.06);
}

.minimal-storefront .contact {
	background:
		linear-gradient(90deg, rgba(71, 48, 38, 0.94), rgba(95, 66, 52, 0.86)),
		url("../img/produtos/oficial-img-8594.jpg");
	background-position: center, right center;
	background-repeat: no-repeat;
	background-size: cover, min(38vw, 520px) auto;
	color: #fffaf2;
}

.minimal-storefront .contact .eyebrow {
	color: #e5bd88;
}

.minimal-storefront .contact h2,
.minimal-storefront .contact p {
	color: #fffaf2;
}

.minimal-storefront .contact p {
	color: rgba(255, 250, 242, 0.8);
}

.minimal-storefront .contact .button {
	background: #fffaf2;
	color: #3a2a22;
}

@media (max-width: 820px) {
	.minimal-storefront .brand-note,
	.minimal-storefront .contact {
		background-size: cover, 120% auto;
	}
}

/* Cohesive elegant handmade direction */
body.minimal-storefront {
	background-color: #f7efe4;
	background-image:
		linear-gradient(rgba(247, 239, 228, 0.94), rgba(247, 239, 228, 0.94)),
		repeating-linear-gradient(90deg, rgba(80, 56, 45, 0.035) 0 1px, transparent 1px 24px);
	color: #2f261f;
}

.minimal-storefront .announcement-bar,
.minimal-storefront .site-footer {
	background: #30231c;
}

.minimal-storefront .site-header {
	background: rgba(255, 250, 242, 0.94);
	border-bottom-color: rgba(135, 92, 63, 0.14);
}

.minimal-storefront .site-nav {
	gap: clamp(0.7rem, 2vw, 1.4rem);
}

.minimal-storefront .site-nav a {
	color: #4c382f;
	font-size: 0.9rem;
}

.minimal-storefront .hero__content,
.minimal-storefront .custom-order__form,
.minimal-storefront .brand-note .story__body,
.minimal-storefront .cart-drawer__panel {
	border-color: rgba(213, 173, 119, 0.22);
}

.minimal-storefront .button,
.minimal-storefront .shop-bag-button,
.minimal-storefront .product-whatsapp,
.minimal-storefront .clear-filters,
.minimal-storefront .filter-chip {
	border-radius: 999px;
	letter-spacing: 0;
}

.minimal-storefront .button--primary,
.minimal-storefront .shop-bag-button,
.minimal-storefront .product-actions .button,
.minimal-storefront .custom-order__form .button {
	background: #8e5f49;
	color: #fffaf2;
}

.minimal-storefront .button--primary:hover,
.minimal-storefront .shop-bag-button:hover,
.minimal-storefront .product-actions .button:hover,
.minimal-storefront .custom-order__form .button:hover {
	background: #6f4939;
}

.minimal-storefront .product-actions .button:only-child {
	grid-column: 1 / -1;
}

.minimal-storefront .product-card.is-sold .product-card__image img {
	filter: saturate(0.72) brightness(0.92);
}

.minimal-storefront .product-card.is-sold .price {
	color: rgba(64, 43, 34, 0.62);
	text-decoration: line-through;
}

.minimal-storefront .product-sold {
	align-items: center;
	background: #fffaf2;
	border: 1px solid rgba(135, 92, 63, 0.22);
	border-radius: 999px;
	color: #8a5d46;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0.04em;
	min-height: 38px;
	text-transform: uppercase;
}

.minimal-storefront .product-buy-link {
	background: #2f221c;
}

.minimal-storefront .product-buy-link:hover {
	background: #1f1713;
}

.minimal-storefront .product-card .product-whatsapp {
	background: #fffaf2;
	border-color: rgba(135, 92, 63, 0.25);
	color: #5b3d31;
}

.minimal-storefront .shop-bag-button {
	display: none;
}

.minimal-storefront .button--light,
.minimal-storefront .product-whatsapp {
	background: rgba(255, 250, 242, 0.1);
	border-color: rgba(255, 250, 242, 0.38);
	color: #fffaf2;
}

.minimal-storefront .section__header h2,
.minimal-storefront .lookbook__text h2,
.minimal-storefront .brand-note h2,
.minimal-storefront .custom-order__intro h2,
.minimal-storefront .contact h2 {
	font-weight: 700;
	letter-spacing: 0;
}

.minimal-storefront .product-showcase,
.minimal-storefront .section--warm,
.minimal-storefront .custom-order,
.minimal-storefront .brand-note {
	position: relative;
}

.minimal-storefront .product-showcase::before,
.minimal-storefront .section--warm::before,
.minimal-storefront .custom-order::before,
.minimal-storefront .brand-note::before {
	background: linear-gradient(90deg, transparent, rgba(168, 132, 78, 0.28), transparent);
	content: "";
	height: 1px;
	left: max(clamp(1rem, 4vw, 2rem), calc((100vw - 1180px) / 2));
	position: absolute;
	right: max(clamp(1rem, 4vw, 2rem), calc((100vw - 1180px) / 2));
	top: 0;
}

.minimal-storefront .product-card,
.minimal-storefront .section--warm .category,
.minimal-storefront .custom-order__form,
.minimal-storefront .brand-note .story__body {
	background-color: rgba(255, 252, 247, 0.86);
	box-shadow: 0 18px 44px rgba(61, 43, 34, 0.06);
}

.minimal-storefront .product-card {
	border-color: rgba(135, 92, 63, 0.14);
}

.minimal-storefront .product-card__image {
	background:
		linear-gradient(135deg, rgba(255, 250, 242, 0.8), rgba(239, 224, 205, 0.72)),
		repeating-linear-gradient(45deg, rgba(168, 132, 78, 0.05) 0 1px, transparent 1px 16px);
}

.minimal-storefront .product-card__image img,
.minimal-storefront .banner-slide__visual img,
.minimal-storefront .lookbook__gallery img {
	filter: saturate(0.96) contrast(1.02);
}

.minimal-storefront .collection-carousel {
	background: #f4eadc;
}

.minimal-storefront .collection-carousel .banner-carousel__viewport {
	background:
		linear-gradient(120deg, rgba(255, 250, 242, 0.94), rgba(226, 203, 183, 0.72)),
		url("../img/produtos/oficial-img-8416.jpg");
	border-color: rgba(135, 92, 63, 0.16);
}

.minimal-storefront .section--warm {
	background:
		linear-gradient(rgba(250, 244, 235, 0.95), rgba(250, 244, 235, 0.96)),
		url("../img/produtos/oficial-img-8416.jpg");
}

.minimal-storefront .lookbook {
	background:
		linear-gradient(180deg, #38281f, #2f231c);
}

.minimal-storefront .custom-order {
	background:
		linear-gradient(90deg, rgba(248, 238, 224, 0.98) 0%, rgba(248, 238, 224, 0.9) 58%, rgba(226, 203, 183, 0.82) 100%),
		url("../img/produtos/oficial-img-8420.jpg");
}

.minimal-storefront .brand-note {
	background:
		linear-gradient(90deg, rgba(248, 238, 224, 0.98) 0%, rgba(248, 238, 224, 0.9) 56%, rgba(226, 203, 183, 0.82) 100%),
		url("../img/produtos/oficial-img-8589.jpg");
}

.minimal-storefront .contact {
	background:
		linear-gradient(90deg, rgba(70, 48, 39, 0.95), rgba(111, 73, 57, 0.86)),
		url("../img/produtos/oficial-img-8594.jpg");
}

.minimal-storefront .whatsapp-float {
	box-shadow: 0 18px 42px rgba(19, 128, 74, 0.26);
}

@media (max-width: 720px) {
	.minimal-storefront .site-nav a {
		font-size: 1rem;
	}

	.minimal-storefront .product-showcase::before,
	.minimal-storefront .section--warm::before,
	.minimal-storefront .custom-order::before,
	.minimal-storefront .brand-note::before {
		left: 1rem;
		right: 1rem;
	}
}

/* Local editing controls should stay helpful without becoming part of the storefront look. */
.minimal-storefront .local-tools,
.minimal-storefront.footer-is-visible .local-tools {
	align-items: flex-start;
	bottom: 0.9rem;
	left: 0.85rem;
	right: auto;
	z-index: 25;
}

.minimal-storefront .local-tools .editor-shortcut {
	backdrop-filter: blur(14px);
	background: rgba(48, 35, 28, 0.76);
	border: 1px solid rgba(255, 250, 242, 0.22);
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(47, 38, 31, 0.18);
	color: #fffaf2;
	font-size: 0.74rem;
	height: auto;
	line-height: 1;
	padding: 0.65rem 0.78rem;
	width: auto;
}

.minimal-storefront .local-tools .editor-shortcut::after {
	content: none;
}

.minimal-storefront .local-tools .editor-shortcut--button {
	background: rgba(111, 73, 57, 0.76);
}

@media (max-width: 720px) {
	.minimal-storefront .local-tools,
	.minimal-storefront.footer-is-visible .local-tools {
		bottom: 0.75rem;
		left: 0.65rem;
		max-width: calc(100vw - 6.5rem);
	}

	.minimal-storefront .local-tools .editor-shortcut {
		font-size: 0.68rem;
		padding: 0.58rem 0.68rem;
	}
}

/* Show the full bags in the automatic collection carousel. */
.minimal-storefront .collection-carousel .banner-slide__visual {
	align-items: center;
	background:
		linear-gradient(135deg, rgba(255, 250, 242, 0.95), rgba(238, 224, 207, 0.86)),
		repeating-linear-gradient(45deg, rgba(168, 132, 78, 0.055) 0 1px, transparent 1px 18px);
	display: flex;
	justify-content: center;
	min-height: clamp(300px, 34vw, 455px);
	overflow: hidden;
}

.minimal-storefront .collection-carousel .banner-slide__visual img {
	display: block;
	height: 100%;
	max-height: clamp(300px, 34vw, 455px);
	object-fit: contain !important;
	object-position: center center;
	width: 100%;
}

@media (max-width: 860px) {
	.minimal-storefront .collection-carousel .banner-slide__visual,
	.minimal-storefront .collection-carousel .banner-slide__visual img {
		min-height: 0;
		max-height: none;
	}
}

/* Refined brand story block */
.minimal-storefront .brand-note {
	align-items: center;
	background:
		linear-gradient(90deg, rgba(255, 250, 242, 0.96) 0%, rgba(250, 241, 229, 0.92) 52%, rgba(239, 224, 205, 0.82) 100%),
		url("../img/produtos/oficial-img-8589.jpg");
	background-position: center, right center;
	background-repeat: no-repeat;
	background-size: cover, min(42vw, 540px) auto;
	border-bottom: 1px solid rgba(135, 92, 63, 0.16);
	border-top: 1px solid rgba(135, 92, 63, 0.16);
	color: #35261f;
	display: grid;
	gap: clamp(2rem, 6vw, 5rem);
	grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1fr);
	margin: 0;
	max-width: none;
	padding: clamp(3.2rem, 6vw, 5.2rem) max(clamp(1.1rem, 4vw, 2rem), calc((100vw - 1180px) / 2));
}

.minimal-storefront .brand-note .story__text {
	border-left: 3px solid #a8844e;
	max-width: 520px;
	padding-left: clamp(1rem, 2vw, 1.5rem);
}

.minimal-storefront .brand-note .eyebrow {
	color: #a8844e;
}

.minimal-storefront .brand-note h2 {
	color: #35261f;
	font-size: clamp(2.25rem, 4vw, 3.9rem);
	letter-spacing: 0;
	line-height: 0.98;
	margin: 0;
	max-width: 560px;
}

.minimal-storefront .brand-note .story__body {
	background: rgba(255, 252, 247, 0.72);
	border: 1px solid rgba(135, 92, 63, 0.16);
	box-shadow: 0 22px 60px rgba(61, 43, 34, 0.07);
	color: rgba(79, 56, 45, 0.82);
	display: grid;
	gap: 0.9rem;
	max-width: 690px;
	padding: clamp(1.35rem, 2.8vw, 2rem);
}

.minimal-storefront .brand-note .story__body p {
	color: rgba(79, 56, 45, 0.82);
	font-size: clamp(1.02rem, 1.35vw, 1.16rem);
	line-height: 1.72;
	margin: 0;
	max-width: none;
}

.minimal-storefront .brand-note__tags {
	gap: 0.6rem;
	margin-top: 0.25rem;
}

.minimal-storefront .brand-note__tags span {
	background: rgba(255, 250, 242, 0.84);
	border-color: rgba(135, 92, 63, 0.18);
	box-shadow: none;
	color: #6f4939;
}

@media (max-width: 820px) {
	.minimal-storefront .brand-note {
		background-image:
			linear-gradient(rgba(255, 250, 242, 0.94), rgba(255, 250, 242, 0.96)),
			url("../img/produtos/oficial-img-8589.jpg");
		grid-template-columns: 1fr;
	}
}

/* Boutique brand section */
.minimal-storefront .brand-note {
	align-items: center;
	background:
		linear-gradient(90deg, rgba(245, 233, 218, 0.98), rgba(255, 250, 242, 0.95)),
		repeating-linear-gradient(90deg, rgba(80, 56, 45, 0.035) 0 1px, transparent 1px 22px);
	border-bottom: 1px solid rgba(135, 92, 63, 0.16);
	border-top: 1px solid rgba(135, 92, 63, 0.16);
	color: #35261f;
	display: grid;
	gap: clamp(1.3rem, 4vw, 3rem);
	grid-template-columns: minmax(260px, 0.85fr) minmax(330px, 1fr) minmax(210px, 0.62fr);
	margin: 0;
	max-width: none;
	padding: clamp(3rem, 5.2vw, 4.6rem) max(clamp(1.1rem, 4vw, 2rem), calc((100vw - 1180px) / 2));
}

.minimal-storefront .brand-note .story__text {
	border-left: 3px solid #a8844e;
	max-width: 520px;
	padding-left: clamp(1rem, 2vw, 1.5rem);
}

.minimal-storefront .brand-note .eyebrow {
	color: #a8844e;
	margin-bottom: 0.9rem;
}

.minimal-storefront .brand-note h2 {
	color: #35261f;
	font-size: clamp(2.1rem, 3.4vw, 3.35rem);
	line-height: 1;
	margin: 0;
	max-width: 520px;
}

.minimal-storefront .brand-note__lead {
	color: rgba(79, 56, 45, 0.78);
	font-size: clamp(1rem, 1.25vw, 1.12rem);
	line-height: 1.62;
	margin: 1rem 0 0;
	max-width: 420px;
}

.minimal-storefront .brand-note .story__body {
	background: transparent;
	border: 0;
	border-block: 1px solid rgba(135, 92, 63, 0.16);
	box-shadow: none;
	color: rgba(79, 56, 45, 0.82);
	display: grid;
	gap: 0.9rem;
	max-width: 620px;
	padding: clamp(1.1rem, 2.2vw, 1.6rem) 0;
}

.minimal-storefront .brand-note .story__body p {
	color: rgba(79, 56, 45, 0.82);
	font-size: clamp(0.98rem, 1.16vw, 1.08rem);
	line-height: 1.72;
	margin: 0;
	max-width: none;
}

.minimal-storefront .brand-note__tags {
	gap: 0.55rem;
	margin-top: 0.15rem;
}

.minimal-storefront .brand-note__tags span {
	background: #fffaf2;
	border-color: rgba(135, 92, 63, 0.2);
	color: #6f4939;
}

.minimal-storefront .brand-note__media {
	align-self: stretch;
	background: #fffaf2;
	border: 1px solid rgba(135, 92, 63, 0.16);
	display: grid;
	gap: 0.65rem;
	margin: 0;
	min-height: 260px;
	padding: 0.65rem;
}

.minimal-storefront .brand-note__media img {
	aspect-ratio: 4 / 5;
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.minimal-storefront .brand-note__media figcaption {
	color: #a8844e;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

@media (max-width: 980px) {
	.minimal-storefront .brand-note {
		grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1fr);
	}

	.minimal-storefront .brand-note__media {
		grid-column: 1 / -1;
		min-height: 220px;
	}

	.minimal-storefront .brand-note__media img {
		aspect-ratio: 16 / 7;
	}
}

@media (max-width: 720px) {
	.minimal-storefront .brand-note {
		grid-template-columns: 1fr;
		padding-block: 2.5rem;
	}

	.minimal-storefront .brand-note__media {
		min-height: 0;
	}

	.minimal-storefront .brand-note__media img {
		aspect-ratio: 4 / 3;
	}
}

/* Connected lookbook photo set */
.minimal-storefront .lookbook {
	align-items: center;
	gap: clamp(1.6rem, 3vw, 2.4rem);
	grid-template-columns: minmax(210px, 0.25fr) minmax(0, 1fr);
	padding-bottom: clamp(2.8rem, 5vw, 4rem);
	padding-top: clamp(2.8rem, 5vw, 4rem);
}

.minimal-storefront .lookbook__text {
	align-self: center;
	max-width: 285px;
	position: static;
}

.minimal-storefront .lookbook__text h2 {
	font-size: clamp(2.05rem, 3.45vw, 3.25rem);
	line-height: 1;
	margin-bottom: 0.85rem;
}

.minimal-storefront .lookbook__text p:not(.eyebrow) {
	font-size: clamp(0.95rem, 1.08vw, 1.03rem);
	line-height: 1.58;
	max-width: 275px;
}

.minimal-storefront .lookbook__gallery {
	align-items: stretch;
	background: rgba(255, 250, 242, 0.08);
	border: 1px solid rgba(255, 250, 242, 0.14);
	display: grid;
	gap: 0;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	padding: clamp(0.45rem, 0.9vw, 0.65rem);
}

.minimal-storefront .lookbook__gallery img,
.minimal-storefront .lookbook__gallery img:nth-child(2) {
	aspect-ratio: 4 / 3 !important;
	border: 0;
	border-right: 1px solid rgba(255, 250, 242, 0.16);
	height: clamp(250px, 24vw, 355px) !important;
	object-fit: cover !important;
	object-position: center;
	padding: 0;
}

.minimal-storefront .lookbook__gallery img:last-child {
	border-right: 0;
}

@media (max-width: 960px) {
	.minimal-storefront .lookbook {
		grid-template-columns: 1fr;
	}

	.minimal-storefront .lookbook__text,
	.minimal-storefront .lookbook__text p:not(.eyebrow) {
		max-width: 640px;
	}
}

@media (max-width: 620px) {
	.minimal-storefront .lookbook__gallery {
		grid-template-columns: 1fr;
	}

	.minimal-storefront .lookbook__gallery img,
	.minimal-storefront .lookbook__gallery img:nth-child(2) {
		border-bottom: 1px solid rgba(255, 250, 242, 0.16);
		border-right: 0;
		height: auto !important;
	}

	.minimal-storefront .lookbook__gallery img:last-child {
		border-bottom: 0;
	}
}

/* Softer hero text panel without a boxed look */
.minimal-storefront .hero__content {
	backdrop-filter: blur(8px);
	background:
		linear-gradient(90deg, rgba(48, 35, 28, 0.82), rgba(48, 35, 28, 0.52) 72%, rgba(48, 35, 28, 0));
	border: 0;
	border-left: 3px solid rgba(213, 173, 119, 0.7);
	box-shadow: none;
	margin-left: max(clamp(1rem, 5vw, 3.5rem), calc((100vw - 1180px) / 2));
	max-width: min(520px, 45vw);
	padding: clamp(1.5rem, 3vw, 2.6rem) clamp(1.3rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.4rem) clamp(1.25rem, 3vw, 2rem);
}

.minimal-storefront .hero__label {
	background: rgba(255, 250, 242, 0.1);
	border-color: rgba(255, 250, 242, 0.22);
}

.minimal-storefront .hero h1 {
	max-width: 440px;
}

.minimal-storefront .hero__text {
	max-width: 390px;
}

.minimal-storefront .hero__actions {
	gap: 0.75rem;
}

.minimal-storefront .hero__craft {
	gap: 0.5rem;
}

.minimal-storefront .hero__craft span {
	background: rgba(255, 250, 242, 0.09);
	border-color: rgba(255, 250, 242, 0.22);
}

@media (max-width: 960px) {
	.minimal-storefront .hero__content {
		max-width: 560px;
	}
}

@media (max-width: 720px) {
	.minimal-storefront .hero__content {
		background: linear-gradient(180deg, rgba(48, 35, 28, 0.8), rgba(48, 35, 28, 0.58));
		border-left-width: 2px;
		margin: 0 1rem 1rem;
		max-width: none;
		padding: 1.25rem;
	}
}

@media (max-width: 960px) {
	.minimal-storefront .product-showcase .section__header {
		grid-template-columns: 1fr;
	}

	.minimal-storefront .product-showcase .section__header .eyebrow,
	.minimal-storefront .product-showcase .section__header h2,
	.minimal-storefront .product-showcase .section__header p:last-child {
		grid-column: 1;
		grid-row: auto;
	}

	.minimal-storefront .product-showcase .section__header h2,
	.minimal-storefront .product-showcase .section__header p:last-child {
		max-width: 640px;
	}
}

@media (max-width: 720px) {
	.minimal-storefront .product-showcase {
		padding-top: 2.5rem;
	}

	.minimal-storefront .product-showcase .section__header {
		margin-bottom: 1.2rem;
	}
}
