*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--linen: #F2F0E8;
	--linen-dk: #E8E2D6;
	--sand: #D8D0BE;
	--sand-dk: #BDB49E;
	--stone: #8A8270;
	--moss: #3D4A30;
	--moss-mid: #556644;
	--moss-lt: #7A8A6A;
	--sage: #A0AA88;
	--sage-lt: #C8D0B8;
	--ink: #1A1C14;
	--ink-soft: #2E3022;
	--bark: #5C4A34;
	--cream: #FAFAF4;

	--serif: 'Cormorant Garamond', Georgia, serif;
	--sans: 'DM Sans', system-ui, sans-serif;
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--linen);
	color: var(--ink);
	font-family: var(--sans);
	font-weight: 300;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	cursor: none;
}

/* GRAIN */
.grain {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 200;
	opacity: 0.04;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 200px;
}

/* CURSOR */
.cursor {
	position: fixed;
	width: 7px;
	height: 7px;
	background: var(--moss);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out);
}

.cursor-ring {
	position: fixed;
	width: 34px;
	height: 34px;
	border: 0.5px solid rgba(61, 74, 48, 0.35);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9998;
	transform: translate(-50%, -50%);
	transition: transform 0.35s var(--ease-out), width 0.4s var(--ease-out), height 0.4s var(--ease-out);
}

/* NAV */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 4rem;
	height: 70px;
	border-bottom: 0.5px solid transparent;
	transition: background 0.5s, border-color 0.5s;
	background-color: var(--header_cor_fundo);
	color: var(--header_cor_menu);
}

nav.scrolled {
	/* use injected rgb variable with alpha fallback */
	background: rgba(var(--header_cor_fundo_rgb, 61,74,48), 0.12);
	border-color: rgba(61, 74, 48, 0.1);
	backdrop-filter: blur(14px);
}

.nav-logo {
	text-decoration: none !important;
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.nav-logo-word {
	font-family: var(--serif);
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--ink);
}

.nav-logo-rule {
	width: 100%;
	height: 0.5px;
	background: var(--moss);
}

.nav-logo-sub {
	font-size: 7.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--stone);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	list-style: none;
	margin-bottom: 0px;
   color: var(--header_cor_menu, var(--stone));
}

.nav-links a {
	font-size: 11px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--header_cor_menu, var(--stone));
	text-decoration: none;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: var(--header_cor_menu_hv, var(--moss));
}

.box-cart-cta{
	display: flex;
	align-items: center;
	gap: 1.25rem;
}


.box-cart-cta .nav-cta {
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	background-color: var(--header_cor_fundo_btn_par, var(--cream));
	color: var(--header_cor_texto_par, var(--stone));
	border: 0.5px solid var(--header_cor_borda_par, var(--stone));
	padding: 8px 20px;
	text-decoration: none !important;
	border-radius: 1px;
	transition: background 0.3s, color 0.3s;
}

.box-cart-cta .nav-cta:hover {
	background: var(--header_cor_fundo_btn_par_hv, var(--moss));
	color: var(--header_cor_texto_par_hv, var(--cream));
	border-color: var(--header_cor_borda_par_hv, var(--moss));
}

.hero {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: relative;
	overflow: hidden;
	background: var(--sb_pr_cor_fundo, var(--cream));
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		repeating-linear-gradient(105deg,
			transparent,
			transparent 80px,
			rgba(61, 74, 48, 0.025) 80px,
			rgba(61, 74, 48, 0.025) 81px);
	pointer-events: none;
}

.hero-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10rem 4rem 6rem;
	position: relative;
	z-index: 2;
}

.hero-eyebrow {
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--sb_pr_cor_texto_tag, var(--moss-lt));
	margin-bottom: 1.75rem;
	display: flex;
	align-items: center;
	gap: 12px;
	opacity: 0;
	transform: translateY(14px);
	animation: fadeUp 0.9s var(--ease-out) 0.2s forwards;
}

.hero-eyebrow::before {
	content: '';
	display: block;
	width: 24px;
	height: 0.5px;
	background: var(--sb_pr_cor_texto_tag, var(--moss-lt));
}

.hero-h1 {
	font-family: var(--serif);
	font-size: clamp(48px, 5.5vw, 74px);
	font-weight: 300;
	line-height: 1.05;
	color: var(--sb_pr_cor_titulo, var(--ink));
	margin-bottom: 1.5rem;
	opacity: 0;
	transform: translateY(24px);
	animation: fadeUp 1s var(--ease-out) 0.38s forwards;
}

.hero-h1 em {
	font-style: italic;
	color: var(--sb_pr_cor_titulo_sec, var(--moss));
}

.hero-desc {
	font-size: 14px;
	font-weight: 300;
	color: var(--sb_pr_cor_texto, var(--stone));
	line-height: 1.8;
	max-width: 380px;
	margin-bottom: 2.5rem;
	opacity: 0;
	transform: translateY(18px);
	animation: fadeUp 1s var(--ease-out) 0.56s forwards;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 2rem;
	opacity: 0;
	transform: translateY(16px);
	animation: fadeUp 1s var(--ease-out) 0.72s forwards;
}

.hero-actions .btn-parceiro{
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--sb_pr_cor_texto_botao_parceiros, var(--cream));
	background: var(--sb_pr_cor_fundo_botao_parceiros, var(--moss));
	padding: 14px 32px;
	text-decoration: none;
	border-radius: 1px;
	transition: background 0.3s, transform 0.2s;
	display: inline-block;
}

.hero-actions .btn-parceiro:hover {
	background: var(--sb_pr_cor_fundo_botao_parceiros_hv, var(--ink-soft));
	color: var(--sb_pr_cor_texto_botao_parceiros_hv, var(--cream));
	transform: translateY(-1px);
}

.btn-primary {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--cream);
	background: var(--moss);
	padding: 14px 32px;
	text-decoration: none;
	border-radius: 1px;
	transition: background 0.3s, transform 0.2s;
	display: inline-block;
}

.btn-primary:hover {
	background: var(--ink-soft);
	transform: translateY(-1px);
}

.hero-actions .btn-ghost {
	font-size: 11px;
	letter-spacing: 0.12em;
	background: var(--sb_pr_cor_fundo_botao_produto, var(--moss));
	color: var(--sb_pr_cor_texto_botao_produto, var(--stone));
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s;
}

.hero-actions .btn-ghost:hover {
	color: var(--sb_pr_cor_texto_botao_produto_hv, var(--moss));
	background-color: var(--sb_pr_cor_fundo_botao_produto_hv, var(--cream));
}

.hero-actions .btn-ghost span {
	width: 20px;
	height: 0.5px;
	background: currentColor;
	display: block;
	transition: width 0.3s;
}

.hero-actions .btn-ghost:hover span {
	width: 32px;
}

.hero-stats {
	display: flex;
	gap: 2.5rem;
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 0.5px solid rgba(61, 74, 48, 0.15);
	opacity: 0;
	animation: fadeUp 1s var(--ease-out) 1s forwards;
}

.stat-num {
	font-family: var(--serif);
	font-size: 28px;
	font-weight: 300;
	color: var(--sb_pr_secao_rodape_cor_titulo, var(--moss));
	line-height: 1;
	margin-bottom: 4px;
}

.stat-label {
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sb_pr_secao_rodape_cor_subtitulo, var(--stone));
}

.hero-right {
	position: relative;
	overflow: hidden;
	background: var(--linen-dk);
}

.hero-visual {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.deco-circle {
	position: absolute;
	border-radius: 50%;
	border: 0.5px solid rgba(61, 74, 48, 0.1);
	animation: rotate 50s linear infinite;
}

.deco-circle:nth-child(1) {
	width: 500px;
	height: 500px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.deco-circle:nth-child(2) {
	width: 360px;
	height: 360px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-direction: reverse;
	animation-duration: 35s;
	border-color: rgba(61, 74, 48, 0.06);
}

.deco-circle:nth-child(3) {
	width: 220px;
	height: 220px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-duration: 20s;
	border-color: rgba(61, 74, 48, 0.14);
}

.hero-leaf {
	position: absolute;
	opacity: 0.07;
	pointer-events: none;
}

.hero-bottle-wrap {
	position: relative;
	z-index: 2;
	opacity: 0;
	animation: fadeIn 1.4s var(--ease-out) 0.5s forwards;
}

.hero-vertical-text {
	position: absolute;
	right: 2.5rem;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	transform-origin: center;
	font-size: 9px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(61, 74, 48, 0.25);
	white-space: nowrap;
}

.marquee-strip {
	padding: 16px 0;
	background: var(--trj_cor_fundo, var(--moss));
	overflow: hidden;
	white-space: nowrap;
}

.marquee-inner {
	display: inline-flex;
	animation: marquee 30s linear infinite;
}

.marquee-item {
	font-size: 10px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--trj_cor_texto, var(--cream));
	padding: 0 2.5rem;
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.marquee-dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--sage-lt);
	opacity: 0.6;
	flex-shrink: 0;
}

section {
	padding: 8rem 4rem;
	position: relative;
}

.section-tag {
	font-size: 9px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--dep_cor_tag, var(--moss-lt));
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 1.5rem;
}

.section-tag::before {
	content: '';
	display: block;
	width: 20px;
	height: 0.5px;
	background: var(--dep_cor_tag, var(--moss-lt));
}

.section-title {
	font-family: var(--serif);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 300;
	line-height: 1.1;
	color: var(--dep_cor_titulo, var(--ink));
}

.section-title em {
	font-style: italic;
	color: var(--dep_cor_titulo_secundario, var(--moss));
}

/* ABOUT */
.about {
	background: var(--sbr_cor_fundo, var(--cream));
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
}

.about .section-tag {
	font-size: 9px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--sbr_cor_tag, var(--moss-lt));
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 1.5rem;
}

.about .section-tag::before {
	content: '';
	display: block;
	width: 20px;
	height: 0.5px;
	background: var(--sbr_cor_tag, var(--moss-lt));
}

.about .section-title {
	font-family: var(--serif);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 300;
	line-height: 1.1;
	color: var(--sbr_cor_titulo, var(--ink));
}

.about .section-title em {
	font-style: italic;
	color: var(--sbr_cor_titulo_sec, var(--moss));
}

.about .about-body {
	font-size: 14px;
	font-weight: 300;
	color: var(--sbr_cor_texto, var(--stone));
	line-height: 1.85;
	margin: 1.5rem 0;
	max-width: 480px;
}

.checklist-card {
	background: var(--sbr_ck_cor_fundo, var(--linen));
	border: 0.5px solid var(--sbr_ck_cor_borda);
	border-radius: 3px;
	padding: 2rem;
	position: relative;
}

.checklist-card::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 2rem;
	width: 52px;
	height: 2px;
	background: var(--moss);
	border-radius: 0 0 2px 2px;
}

.checklist-label {
	font-size: 9px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--sbr_ck_cor_titulo, var(--stone));
	margin-bottom: 1.5rem;
}

.checklist-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 0.5px solid rgba(61, 74, 48, 0.07);
}

.checklist-item:last-child {
	border-bottom: none;
}

.check-icon {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 0.5px solid var(--moss-lt);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}

.check-icon::after {
	content: '';
	width: 6px;
	height: 3.5px;
	border-left: 0.5px solid var(--moss);
	border-bottom: 0.5px solid var(--moss);
	transform: rotate(-45deg) translateY(-1px);
	display: block;
}

.check-text {
	font-size: 13px;
	font-weight: 300;
	color: var(--sbr_ck_cor_texto_item, var(--stone));
	line-height: 1.5;
}

.check-text strong {
	color: var(--sbr_ck_cor_titulo_item, var(--ink));
	font-weight: 400;
	display: block;
	margin-bottom: 2px;
}

.float-card {
	position: absolute;
	bottom: -24px;
	right: -24px;
	background: var(--sbr_ck_cor_fundo_destaque, var(--moss));
	padding: 1.25rem 1.5rem;
	border-radius: 2px;
	min-width: 160px;
}

.float-num {
	font-family: var(--serif);
	font-size: 36px;
	font-weight: 300;
	color: var(--sbr_ck_cor_titulo_destaque, var(--cream));
	line-height: 1;
}

.float-text {
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sbr_ck_cor_texto_destaque);
	margin-top: 4px;
}

.about-visual {
	position: relative;
}

.about .pillars {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 2.5rem;
}

.about .pillar {
	padding: 1.25rem;
	border: 0.5px solid var(--sbr_it_cor_borda);
	border-radius: 2px;
	transition: border-color 0.3s, background 0.3s;
	background-color: var(--sbr_it_cor_fundo_item);
}

.about .pillar-icon {
	width: 24px;
	height: 1px;
	background: var(--sbr_it_cor_titulo_item, var(--moss-lt));
	margin-bottom: 0.85rem;
}

.about .pillar-title {
	font-size: 13px;
	font-weight: 400;
	color: var(--sbr_it_cor_titulo_item, var(--ink));
	margin-bottom: 4px;
}

.about .pillar-desc {
	font-size: 11px;
	color: var(--sbr_it_cor_texto_item, var(--stone));
	line-height: 1.5;
}

.about .pillar:hover {
	border-color: var(--sbr_it_cor_borda_hv);
	background: var(--sbr_it_cor_fundo_item_hv);
}

.about .pillar:hover .pillar-icon {
	background: var(--sbr_it_cor_titulo_item_hv);
}

.about .pillar:hover .pillar-title {
	color: var(--sbr_it_cor_titulo_item_hv);
}

.about .pillar:hover .pillar-desc {
	color: var(--sbr_it_cor_texto_item_hv);
}

/* PRODUCTS */
.products {
	background: var(--pro_cor_fundo, var(--linen-dk));
}

.products-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 4rem;
	gap: 2rem;
}

.products-link {
	font-size: 11px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--pro_cor_tag, var(--moss));
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	transition: gap 0.3s;
	margin-bottom: 0.5rem;
}

.products .products-header .section-tag{
	color: var(--pro_cor_tag, var(--moss-lt));
}

.products .products-header .section-title{
	color: var(--pro_cor_titulo, var(--ink));
}

.products .products-header .section-title em{
	color: var(--pro_cor_titulo_secundario, var(--moss));
}

.products .products-header .products-link{
	color: var(--pro_cor_tag, var(--moss));
	text-decoration: none;
}

.products-link:hover {
	gap: 14px;
}

.products-link::after {
	content: '→';
	font-size: 14px;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(61, 74, 48, 0.08);
}

.product-card {
	background: var(--cream);
	padding: 2.5rem 2rem;
	border: 0.5px solid transparent;
	position: relative;
	overflow: hidden;
	cursor: none;
	transition: background 0.35s;
}

.product-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 1px;
	background: var(--moss);
	transition: width 0.5s var(--ease-out);
}

.product-card:hover {
	background: #EEEAE0;
}

.product-card:hover::after {
	width: 100%;
}

.product-card.reveal{
	padding: 0;
	background-color: var(--pro_vtr_cor_fundo, var(--cream));
}

.product-card.reveal:hover{
	background-color: var(--pro_vtr_cor_fundo_hv, var(--cream));
}

.product-card.reveal .product-visual{
	height: 250px;
}

.product-card.reveal .product-visual img{
	width: auto;
	object-fit: contain;
	height: 100%;
}

.product-card.reveal .product-badge, .product-card.reveal .product-name, .product-card.reveal .product-desc, .product-card.reveal .product-price {
	margin: 0 2.5rem 0.75rem;
}

.product-card.reveal .product-badge{
	background: var(--pro_vtr_cor_fundo_tag, var(--cream));
	color: var(--pro_vtr_cor_texto_tag, var(--moss));
	border-color: var(--pro_vtr_cor_borda_tag, var(--moss));
}

.product-card.reveal:hover .product-badge{
	background: var(--pro_vtr_cor_fundo_tag_hv, var(--moss));
	color: var(--pro_vtr_cor_texto_tag_hv, var(--cream));
	border-color: var(--pro_vtr_cor_borda_tag_hv, var(--moss));
}

.product-card.reveal .product-name{
	color: var(--pro_vtr_cor_titulo, var(--ink));
}

.product-card.reveal:hover .product-name{
	color: var(--pro_vtr_cor_titulo_hv, var(--ink));
}

.product-card.reveal .product-desc{
	color: var(--pro_vtr_cor_descricao, var(--stone));
}

.product-card.reveal:hover .product-desc{
	color: var(--pro_vtr_cor_descricao_hv, var(--stone));
}

.product-card.reveal .product-price{
	color: var(--pro_vtr_cor_valor, var(--moss));
}

.product-card.reveal:hover .product-price{
	color: var(--pro_vtr_cor_valor_hv, var(--moss));
}

.product-card.featured {
	background: var(--pro_vtr_des_cor_fundo, var(--moss));
	grid-row: span 2;
	display: flex;
	flex-direction: column;
	position: relative;
    padding: 0px 0px 2.5rem 0px;
}

.product-card.featured::after {
	background: var(--pro_vtr_des_cor_fundo_tag, var(--sage-lt));
}

.product-card.featured:hover {
	background: var(--pro_vtr_des_cor_fundo_hv, var(--moss));
}

.product-visual {
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.product-card.featured .product-visual{
	height: 70%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 100%;
    padding-bottom: 2.5rem;
}

.product-card.featured .product-visual img{
    width: auto;
    object-fit: contain;
    height: 100%;
}

.product-badge {
	display: inline-block;
	font-size: 9px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--moss);
	border: 0.5px solid rgba(61, 74, 48, 0.25);
	padding: 4px 10px;
	border-radius: 1px;
	margin-bottom: 0.75rem;
}

.product-card.featured .product-badge {
	background-color: var(--pro_vtr_des_cor_fundo_tag, var(--moss));
	color: var(--pro_vtr_des_cor_texto_tag, var(--sage-lt));
	border-color: var(--pro_vtr_des_cor_borda_tag, var(--sage-lt));
	margin: 0 2.5rem 0.75rem;
}

.product-card.featured:hover .product-badge {
	background-color: var(--pro_vtr_des_cor_fundo_tag_hv, var(--moss));
	color: var(--pro_vtr_des_cor_texto_tag_hv, var(--sage-lt));
	border-color: var(--pro_vtr_des_cor_borda_tag_hv, var(--sage-lt));
}


.product-name {
	font-family: var(--serif);
	font-size: 20px;
	font-weight: 300;
	color: var(--ink);
	margin-bottom: 6px;
	line-height: 1.2;
}

.product-card.featured .product-name {
	color: var(--pro_vtr_des_cor_titulo, var(--cream));
	margin: 0 2.5rem 0.75rem;
}

.product-card.featured:hover .product-name {
	color: var(--pro_vtr_des_cor_titulo_hv, var(--cream));
}

.product-desc {
	font-size: 12px;
	color: var(--stone);
	line-height: 1.6;
	margin-bottom: 1.25rem;
}

.product-card.featured .product-desc {
	color: var(--pro_vtr_des_cor_texto, rgba(250, 250, 244, 0.55));
	margin: 0 2.5rem 0.75rem;
}

.product-card.featured:hover .product-desc {
	color: var(--pro_vtr_des_cor_texto_hv, rgba(250, 250, 244, 0.55));
}

.product-price {
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 300;
	color: var(--moss);
	display: flex;
	align-items: baseline;
	gap: 5px;
}

.product-price sup {
	font-size: 12px;
	font-family: var(--sans);
	font-weight: 300;
}

.product-card a {
	text-decoration: none !important;
}

.product-card.featured .product-price {
	color: var(--pro_vtr_des_cor_valor, var(--sage-lt));
	margin: 0 2.5rem 0.75rem;
}

.product-card.featured:hover .product-price {
	color: var(--pro_vtr_des_cor_valor_hv, var(--sage-lt));
}

/* MANIFESTO */
.manifesto {
	background: var(--qlid_cor_fundo, var(--ink));
	padding: 10rem 4rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.manifesto::before {
	content: '"';
	position: absolute;
	top: -80px;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--serif);
	font-size: 420px;
	font-weight: 300;
	color: rgba(160, 170, 136, 0.05);
	line-height: 1;
	pointer-events: none;
	user-select: none;
}

.manifesto .section-tag {
	justify-content: center;
	color: var(--qlid_cor_tag, var(--sage));
}

.manifesto .section-tag::before {
	background: var(--qlid_cor_tag, var(--sage));
}

.manifesto .section-title {
	color: var(--qlid_cor_titulo, var(--cream));
}

.manifesto .section-title em {
	color: var(--qlid_cor_titulo_secundario, var(--sage));
}

.manifesto-sub {
	font-size: 14px;
	color: var(--qlid_cor_texto);
	max-width: 500px;
	margin: 1rem auto 3.5rem;
	line-height: 1.8;
}

.manifesto-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--qlid_cor_fundo);
	max-width: 820px;
	margin: 0 auto;
}

.manifesto-item {
	background: var(--qlid_cor_fundo, var(--ink));
	padding: 2.25rem 1.75rem;
	text-align: left;
}

.manifesto-num {
	font-family: var(--serif);
	font-size: 40px;
	font-weight: 300;
	color: var(--qlid_des_cor_titulo, var(--sage));
	line-height: 1;
	margin-bottom: 0.6rem;
	opacity: 0.35;
}

.manifesto-title {
	font-size: 13px;
	font-weight: 400;
	color: var(--qlid_des_cor_subtitulo, var(--cream));
	margin-bottom: 5px;
}

.manifesto-text {
	font-size: 11px;
	color: var(--qlid_des_cor_texto, var(--ink));
	line-height: 1.65;
}

/* TESTIMONIALS */
.testimonials {
	background: var(--dep_cor_fundo, var(--linen));
	padding: 8rem 4rem;
}

.testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5px;
	background: var(--dep_cor_fundo, rgba(61, 74, 48, 0.07));
	margin-top: 3.5rem;
}

.testi-card {
	background: var(--dep_card_cor_fundo, var(--cream));
	padding: 2.5rem 2rem;
	border: 0.5px solid var(--dep_card_cor_borda);
	transition: border-color 0.3s;
}

.testi-card:hover {
	border-color: var(--dep_card_cor_borda_hv, var(--moss));
	background: var(--dep_card_cor_fundo_hv, var(--linen-dk));
}

.testi-stars {
	display: flex;
	gap: 3px;
	margin-bottom: 1.25rem;
}

.star {
	width: 10px;
	height: 10px;
	background: var(--dep_card_cor_estrelas, var(--moss-lt));
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testi-quote {
	font-family: var(--serif);
	font-size: 15px;
	font-style: italic;
	font-weight: 300;
	color: var(--dep_card_cor_texto, var(--ink-soft));
	line-height: 1.75;
	margin-bottom: 1.5rem;
}

.testi-author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.testi-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--linen-dk);
	border: 0.5px solid rgba(61, 74, 48, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--serif);
	font-size: 14px;
	color: var(--moss);
	flex-shrink: 0;
}

.testi-name {
	font-size: 12px;
	font-weight: 400;
	color: var(--dep_card_cor_nome, var(--ink));
}

.testi-role {
	font-size: 10px;
	color: var(--dep_card_cor_localizacao, var(--stone));
	margin-top: 1px;
}

.testi-card:hover .testi-stars .star{
	background: var(--dep_card_cor_estrelas_hv, var(--moss-lt));
}

.testi-card:hover .testi-quote {
	color: var(--dep_card_cor_texto_hv, var(--ink));
}

.testi-card:hover .testi-name {
	color: var(--dep_card_cor_nome_hv, var(--moss));
}

.testi-card:hover .testi-role {
	color: var(--dep_card_cor_localizacao_hv, var(--moss-lt));
}


/* BRAND STRIP */
.brand-strip {
	background: var(--mar_cor_fundo, var(--sage-lt));
	padding: 3rem 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4rem;
	flex-wrap: wrap;
	border-top: 0.5px solid rgba(61, 74, 48, 0.1);
	border-bottom: 0.5px solid rgba(61, 74, 48, 0.1);
}

.brand-item {
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--mar_cor_titulo, rgba(61, 74, 48, 0.5));
	font-weight: 400;
}

.brand-item:hover{
	color: var(--mar_cor_titulo_hv, var(--moss));
}

/* CTA */
.cta-section {
	background: var(--new_par_cor_fundo, var(--linen-dk));
	padding: 9rem 4rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: start;
	gap: 5rem;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	right: -60px;
	top: -60px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	border: 0.5px solid rgba(61, 74, 48, 0.08);
	pointer-events: none;
}

.cta-section::after {
	content: '';
	position: absolute;
	right: 80px;
	bottom: -60px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 0.5px solid rgba(61, 74, 48, 0.06);
	pointer-events: none;
}

.cta-kicker {
	display: inline-block;
	font-size: 9px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--new_par_cor_texto_tag, var(--moss));
	border: 0.5px solid var(--new_par_cor_borda_tag);
	padding: 5px 12px;
	border-radius: 1px;
	margin-bottom: 1.5rem;
	background-color: var(--new_par_cor_fundo_tag);
}

.cta-h2 {
	font-family: var(--serif);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 300;
	color: var(--new_par_cor_titulo, var(--ink));
	line-height: 1.1;
	margin-bottom: 1.25rem;
}

.cta-h2 em {
	font-style: italic;
	color: var(--new_par_cor_titulo_secundario, var(--moss));
}

.cta-body {
	font-size: 14px;
	color: var(--new_par_cor_texto, var(--stone));
	line-height: 1.8;
	max-width: 400px;
}

.cta-right {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.cta-form-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.cta-form-label {
	font-size: 9px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--stone);
}

.cta-form-input {
	background: var(--cream);
	border: 0.5px solid rgba(61, 74, 48, 0.18);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 300;
	padding: 12px 16px;
	border-radius: 1px;
	outline: none;
	transition: border-color 0.3s;
	width: 100%;
}

.cta-form-input::placeholder {
	color: var(--sand);
}

.cta-form-input:focus {
	border-color: var(--moss-lt);
}

.cta-section .btn-submit {
	background: var(--new_par_cor_fundo_botao, var(--moss));
	color: var(--new_par_cor_texto_botao, var(--cream));
	font-family: var(--sans);
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 15px 24px;
	border: none;
	border-radius: 1px;
	cursor: none;
	margin-top: 0.5rem;
	transition: background 0.3s;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.cta-section .btn-submit:hover {
	background: var(--new_par_cor_fundo_botao_hv, var(--ink-soft));
	color: var(--new_par_cor_texto_botao_hv, var(--cream));
}

.btn-submit-arrow {
	font-size: 16px;
	transition: transform 0.3s;
}

.btn-submit:hover .btn-submit-arrow {
	transform: translateX(4px);
}

/* FOOTER */
footer {
	background: var(--rp_cor_fundo, var(--ink));
	border-top: 0.5px solid rgba(160, 170, 136, 0.1);
	padding: 4.5rem 4rem 3rem;
	color: var(--rp_cor_texto, var(--cream));
}

.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-brand-word {
	font-family: var(--serif);
	font-size: 20px;
	font-weight: 300;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--linen);
	margin-bottom: 2px;
}

.footer-brand-rule {
	width: 30px;
	height: 0.5px;
	background: var(--sage);
	margin-bottom: 6px;
}

.footer-brand-sub {
	font-size: 7.5px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(242, 240, 232, 0.25);
	margin-bottom: 1.5rem;
}

.footer-brand-desc {
	font-size: 12px;
	color: var(--rp_cor_texto);
	line-height: 1.75;
	max-width: 260px;
}

.footer-col-title {
	font-size: 9px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--rp_cor_texto);
	margin-bottom: 1.25rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.6rem;
}

.footer-links a {
	font-size: 13px;
	color: var(--rp_cor_menu, var(--cream));
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: var(--rp_cor_menu_hv, var(--sage-lt));
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 2rem;
	border-top: 0.5px solid rgba(160, 170, 136, 0.08);
}

.footer-copy {
	font-size: 10px;
	color: var(--rp_cor_texto);
	letter-spacing: 0.06em;
}

.footer-legal {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.footer-legal a {
	font-size: 10px;
	color: var(--rp_cor_menu, var(--cream));
	text-decoration: none;
	transition: color 0.3s;
}

.footer-legal a:hover {
	color: var(--rp_cor_menu_hv, var(--cream));
}

/* SCROLL REVEAL */
.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 {
	transition-delay: 0.12s;
}

.reveal-delay-2 {
	transition-delay: 0.24s;
}

.reveal-delay-3 {
	transition-delay: 0.38s;
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

@keyframes rotate {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* RESPONSIVE */
@media (max-width: 900px) {
	nav {
		padding: 0 1.5rem;
	}

	.nav-links {
		display: none;
	}

	section {
		padding: 5rem 1.5rem;
	}

	.hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hero-left {
		padding: 8rem 1.5rem 4rem;
	}

	.hero-right {
		display: none;
	}

	.about {
		grid-template-columns: 1fr;
		gap: 3rem;
		padding: 5rem 1.5rem;
	}

	.float-card {
		display: none;
	}

	.products-grid {
		grid-template-columns: 1fr 1fr;
	}

	.product-card.featured {
		grid-row: span 1;
	}

	.manifesto {
		padding: 6rem 1.5rem;
	}

	.manifesto-grid {
		grid-template-columns: 1fr;
	}

	.testi-grid {
		grid-template-columns: 1fr;
	}

	.cta-section {
		grid-template-columns: 1fr;
		padding: 5rem 1.5rem;
	}

	.footer-top {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1rem;
	}

	.brand-strip {
		gap: 2rem;
		padding: 2rem 1.5rem;
	}
}

/* =============================================
   SHOP PAGE — NEW STYLES (landing page untouched)
   ============================================= */

/* PAGE SWITCHING */
#page-landing {
	display: block;
}

/* SHOP HERO BANNER */
.shop-banner {
	margin-top: 70px;
	background: var(--linen-dk);
	position: relative;
	overflow: hidden;
	padding: 3.5rem 4rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 3rem;
	border-bottom: 0.5px solid rgba(61, 74, 48, 0.1);
}

.shop-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(105deg, transparent, transparent 80px,
			rgba(61, 74, 48, 0.025) 80px, rgba(61, 74, 48, 0.025) 81px);
	pointer-events: none;
}

.shop-banner-kicker {
	font-size: 9px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--moss-lt);
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 0.75rem;
}

.shop-banner-kicker::before {
	content: '';
	display: block;
	width: 18px;
	height: 0.5px;
	background: var(--moss-lt);
}

.shop-banner-title {
	font-family: var(--serif);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 300;
	line-height: 1.1;
	color: var(--ink);
}

.shop-banner-title em {
	font-style: italic;
	color: var(--moss);
}

.shop-banner-sub {
	font-size: 13px;
	color: var(--stone);
	line-height: 1.7;
	margin-top: 0.75rem;
}

.shop-banner-deco {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1.5rem;
}

.shop-banner-stat {
	text-align: center;
	padding: 1.25rem 1.5rem;
	border: 0.5px solid rgba(61, 74, 48, 0.12);
	border-radius: 2px;
	background: var(--cream);
}

.shop-banner-stat-num {
	font-family: var(--serif);
	font-size: 26px;
	font-weight: 300;
	color: var(--moss);
	line-height: 1;
}

.shop-banner-stat-label {
	font-size: 9px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--stone);
	margin-top: 4px;
}

/* SHOP LAYOUT */
.shop-layout {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 0;
	min-height: 70vh;
	background: var(--linen);
}

/* SIDEBAR */
.shop-sidebar {
	background: var(--cream);
	border-right: 0.5px solid rgba(61, 74, 48, 0.1);
	padding: 2.5rem 1.75rem;
	position: sticky;
	top: 70px;
	align-self: start;
}

.shop-sidebar-section {
	margin-bottom: 2rem;
}

.shop-sidebar-title {
	font-size: 9px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--stone);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: none;
}

.shop-sidebar-title-arrow {
	font-size: 10px;
	color: var(--moss-lt);
	transition: transform 0.3s;
}

.shop-sidebar-title-arrow.open {
	transform: rotate(180deg);
}

.shop-sidebar-list {
	list-style: none;
}

.shop-sidebar-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 5px 0;
	cursor: none;
}

.shop-sidebar-list li label {
	font-size: 12px;
	color: var(--stone);
	cursor: none;
	transition: color 0.2s;
	line-height: 1.4;
}

.shop-sidebar-list li:hover label {
	color: var(--moss);
}

.shop-checkbox {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	border: 0.5px solid rgba(61, 74, 48, 0.25);
	border-radius: 1px;
	background: var(--cream);
	appearance: none;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, border-color 0.2s;
	position: relative;
}

.shop-checkbox:checked {
	background: var(--moss);
	border-color: var(--moss);
}

.shop-checkbox:checked::after {
	content: '';
	position: absolute;
	width: 5px;
	height: 3px;
	border-left: 1px solid var(--cream);
	border-bottom: 1px solid var(--cream);
	transform: rotate(-45deg) translate(0.5px, -0.5px);
}

.shop-sidebar-divider {
	height: 0.5px;
	background: rgba(61, 74, 48, 0.08);
	margin: 1.5rem 0;
}

.shop-brand-search, .shop-category-search {
	width: 100%;
	padding: 8px 12px;
	background: var(--linen);
	border: 0.5px solid rgba(61, 74, 48, 0.15);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 300;
	border-radius: 1px;
	outline: none;
	margin-bottom: 0.75rem;
	transition: border-color 0.3s;
}

.shop-brand-search::placeholder {
	color: var(--sand-dk);
}

.shop-brand-search:focus {
	border-color: var(--moss-lt);
}

/* SHOP MAIN */
.shop-main {
	padding: 2.5rem 3rem;
	background: var(--linen);
}

.shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.shop-toolbar-left {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.shop-toolbar-heading {
	font-family: var(--serif);
	font-size: 28px;
	font-weight: 300;
	color: var(--ink);
}

.shop-toolbar-count {
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--stone);
}

.shop-toolbar-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.shop-sort-label {
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--stone);
}

.shop-sort-select {
	background: var(--cream);
	border: 0.5px solid rgba(61, 74, 48, 0.18);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 300;
	padding: 7px 28px 7px 12px;
	border-radius: 1px;
	outline: none;
	appearance: none;
	cursor: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A8270' stroke-width='0.8' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	transition: border-color 0.3s;
}

.shop-sort-select:focus {
	border-color: var(--moss-lt);
}

/* SHOP PRODUCT GRID */
.shop-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(61, 74, 48, 0.07);
}

/* SHOP PRODUCT CARD */
.shop-card {
	background: var(--cream);
	position: relative;
	overflow: hidden;
	cursor: none;
	transition: background 0.3s;
	display: flex;
	flex-direction: column;
}

.shop-card:hover {
	background: #EEEAE0;
}

.shop-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 1px;
	background: var(--moss);
	transition: width 0.45s var(--ease-out);
}

.shop-card:hover::after {
	width: 100%;
}

.shop-card-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--linen-dk);
	position: relative;
}

.shop-card-img-inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shop-card-badges {
	position: absolute;
	top: 10px;
	left: 10px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	z-index: 1;
}

.shop-badge-new {
	font-size: 8px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	background: var(--moss);
	color: var(--cream);
	padding: 3px 8px;
	border-radius: 1px;
}

.shop-badge-off {
	font-size: 8px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: var(--ink);
	color: var(--linen);
	padding: 3px 8px;
	border-radius: 1px;
}

.shop-card-body {
	padding: 1.1rem 1.25rem 1.4rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.shop-card-brand {
	font-size: 8px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--stone);
	margin-bottom: 4px;
}

.shop-card-name {
	font-family: var(--serif);
	font-size: 15px;
	font-weight: 300;
	color: var(--ink);
	line-height: 1.25;
	margin-bottom: auto;
	padding-bottom: 0.75rem;
}

.shop-card-pricing {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 0.5rem;
}

/* Ajustes para produtos relacionados na página de produto */
.shop-grid.related-products {
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	margin-top: 0.5rem;
}

@media (max-width: 900px) {
	.shop-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.shop-grid.related-products {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.shop-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.shop-grid.related-products {
		grid-template-columns: repeat(1, 1fr);
	}
}

.shop-card-price {
	font-family: var(--serif);
	font-size: 17px;
	font-weight: 300;
	color: var(--moss);
}

.shop-card-price-old {
	font-size: 11px;
	color: var(--stone);
	text-decoration: line-through;
}

.shop-card-color-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-left: auto;
	flex-shrink: 0;
	border: 0.5px solid rgba(61, 74, 48, 0.15);
}

/* ADD TO CART HOVER BUTTON */
.shop-card-action {
	margin: 0 1.25rem 1.25rem;
	background: var(--moss);
	color: var(--cream);
	font-family: var(--sans);
	font-size: 9px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 10px 16px;
	border: none;
	border-radius: 1px;
	cursor: none;
	width: calc(100% - 2.5rem);
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.25s, transform 0.25s, background 0.2s;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.shop-card:hover .shop-card-action {
	opacity: 1;
	transform: translateY(0);
}

.shop-card-action:hover {
	background: var(--ink-soft);
}

/* LOAD MORE */
.shop-load-more {
	text-align: center;
	padding: 3rem 0 1rem;
}

.shop-load-btn {
	background: transparent;
	color: var(--ink);
	font-family: var(--sans);
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 13px 32px;
	border: 0.5px solid rgba(61, 74, 48, 0.25);
	border-radius: 1px;
	cursor: none;
	transition: background 0.3s, border-color 0.3s, color 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.shop-load-btn:hover {
	background: var(--moss);
	color: var(--cream);
	border-color: var(--moss);
}

.shop-load-progress {
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--stone);
	margin-top: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.shop-load-bar {
	width: 60px;
	height: 1px;
	background: rgba(61, 74, 48, 0.12);
	position: relative;
}

.shop-load-bar-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: var(--moss);
	width: 50%;
}

/* CART DRAWER */
.cart-overlay {
	position: fixed;
	inset: 0;
	background: rgba(26, 28, 20, 0.4);
	z-index: 300;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s;
}

.cart-overlay.open {
	opacity: 1;
	pointer-events: all;
}

.nav-hamburger {
	display: none;
	background: transparent;
	border: none;
	padding: 6px;
	margin-left: 8px;
	cursor: pointer;
}
.nav-hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: #23321a;
	margin: 4px 0;
}

@media (max-width: 900px) {
	.nav-hamburger {
		display: block;
	}
}

.nav-login { display:flex; align-items:center; gap:.5rem; color:var(--ink); text-decoration:none; }
.nav-login svg { width:20px; height:20px; }
.nav-login:hover { color:var(--moss); }

.cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 420px;
	background: var(--cl_hr_cor_fundo, var(--cream));
	z-index: 301;
	transform: translateX(100%);
	transition: transform 0.45s var(--ease-out);	
	display: flex;
	flex-direction: column;
	border-left: 0.5px solid rgba(61, 74, 48, 0.12);
}

.mobile-drawer{
	position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 420px;
    background: var(--cl_hr_cor_fundo, var(--cream));
    z-index: 301;
    transform: translateX(-100%);
    transition: transform 0.45s var(--ease-out);
    display: flex;
    flex-direction: column;
    border-right: 0.5px solid rgba(61, 74, 48, 0.12);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 28, 20, 0.4);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}

.mobile-overlay.open {
	opacity: 1;
	pointer-events: all;
}

.cart-drawer.open {
	transform: translateX(0);
}

.cart-drawer .cart-header {
	padding: 1.75rem 2rem;
	border-bottom: 0.5px solid rgba(61, 74, 48, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--cl_hr_cor_fundo, var(--cream));
	
}
.mobile-drawer.open {
	transform: translateX(0);
}
.mobile-drawer .mobile-drawer-close {
	background: transparent;
	border: none;
	font-size: 18px;
	position: absolute;
	right: 12px;
	top: 10px;
	cursor: pointer;
}

.mobile-drawer-inner{	
    margin-top: 96px;

}

.mobile-drawer-inner ul {
	list-style: none;
	padding: 48px 0 0 0;
	margin: 0;
}
.mobile-drawer-inner li {
	margin: 14px 0;
}
.mobile-drawer-inner a {
	color: var(--ink);
	font-weight: 700;
	text-decoration: none;
	font-size: 18px;
}

.cart-drawer .cart-header-title {
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 300;
	color: var(--cl_hr_cor_titulo, var(--ink));
}

/* removed previous override; mobile rules will be properly scoped below */

.cart-drawer .cart-header-count {
	font-size: 9px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--cl_hr_cor_subtitulo, var(--stone));
	margin-top: 2px;
}

.cart-drawer .cart-close {
	background: none;
	border: none;
	cursor: none;
	padding: 6px;
	color: var(--cl_hr_cor_titulo, var(--stone));
	font-size: 20px;
	line-height: 1;
	transition: color 0.2s;
}

.cart-drawer .cart-close:hover {
	color: var(--cl_hr_cor_titulo, var(--stone));
}

.cart-items {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem 2rem;
}

.cart-item {
	display: grid;
	grid-template-columns: 60px 1fr auto;
	gap: 1rem;
	padding: 1.25rem 0;
	border-bottom: 0.5px solid rgba(61, 74, 48, 0.07);
	align-items: center;
}

.cart-item:last-child {
	border-bottom: none;
}

.cart-item-img {
	width: 60px;
	height: 60px;
	background: var(--linen-dk);
	border: 0.5px solid rgba(61, 74, 48, 0.1);
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart-item-name {
	font-family: var(--serif);
	font-size: 14px;
	font-weight: 300;
	color: var(--cl_bd_cor_nome, var(--ink));
	line-height: 1.3;
}

.cart-item-brand {
	font-size: 9px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--cl_bd_cor_marca, var(--stone));
	margin-top: 2px;
}

.cart-item-qty {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
}

.cart-qty-btn {
	width: 22px;
	height: 22px;
	background: var(--cl_bd_cor_fundo_botao_pm, var(--cream));
	border: 0.5px solid var(--cl_bd_cor_borda_botao_pm, rgba(61, 74, 48, 0.18));
	border-radius: 1px;
	font-size: 13px;
	color: var(--cl_bd_cor_texto_botao_pm, var(--moss));
	cursor: none;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.cart-qty-btn:hover {
	background: var(--cl_bd_cor_fundo_botao_pm, var(--linen-dk));
}

.cart-qty-num {
	font-size: 12px;
	color: var(--cl_bd_cor_nome, var(--ink));
	min-width: 16px;
	text-align: center;
}

.cart-item-price {
	font-family: var(--serif);
	font-size: 16px;
	font-weight: 300;
	color: var(--cl_bd_cor_valor, var(--ink));
	white-space: nowrap;
}

.cart-item-remove {
	background: none;
	border: none;
	cursor: none;
	color: var(--cl_bd_cor_remover_item, var(--stone));
	font-size: 14px;
	padding: 2px;
	transition: color 0.2s;
	display: block;
	margin-top: 4px;
}

.cart-item-remove:hover {
	color: var(--cl_bd_cor_remover_item, var(--moss));
}

.cart-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	gap: 1rem;
	color: var(--cl_hr_cor_subtitulo, var(--stone));
}

.cart-empty-icon {
	font-size: 36px;
	opacity: 0.3;
}

.cart-empty-text {
	font-size: 13px;
}

.cart-drawer .cart-footer {
	padding: 1.5rem 2rem;
	border-top: 0.5px solid rgba(61, 74, 48, 0.1);
	background: var(--cl_ft_cor_fundo, var(--cream));
	color: var(--cl_ft_cor_texto, var(--ink));
}

.cart-subtotal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.6rem;
}

.cart-subtotal-label {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cl_ft_cor_texto, var(--stone));
}

.cart-subtotal-value {
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 300;
	color: var(--cl_ft_cor_valor, var(--ink));
}

.cart-shipping-note {
	font-size: 11px;
	color: var(--cl_ft_cor_texto, var(--stone));
	margin-bottom: 1.25rem;
}

.cart-checkout-btn {
	width: 100%;
	background: var(--cl_ft_cor_fundo_btn_fin, var(--moss));
	color: var(--cl_ft_cor_texto_btn_fin, var(--cream));
	font-family: var(--sans);
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 15px 24px;
	border: 1px solid var(--cl_ft_cor_borda_btn_fin, var(--moss));
	border-radius: 1px;
	cursor: none;
	transition: background 0.3s;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cart-checkout-btn:hover {
	background: var(--cl_ft_cor_fundo_btn_fin_hv, var(--moss));
	color: var(--cl_ft_cor_texto_btn_fin_hv, var(--cream));
	border-color: var(--cl_ft_cor_borda_btn_fin_hv, var(--moss));
}

.cart-continue-btn {
	width: 100%;
	background: var(--cl_ft_cor_fundo_btn_cont, var(--cream));
	color: var(--cl_ft_cor_texto_btn_cont, var(--stone));
	font-family: var(--sans);
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 11px 24px;
	border: 0.5px solid var(--cl_ft_cor_borda_btn_cont, rgba(61, 74, 48, 0.18));
	border-radius: 1px;
	margin-top: 0.6rem;
	cursor: none;
	transition: border-color 0.3s, color 0.3s;
}

.cart-continue-btn:hover {
	border-color: var(--cl_ft_cor_borda_btn_cont_hv, var(--moss));
	color: var(--cl_ft_cor_texto_btn_cont_hv, var(--moss));
	background: var(--cl_ft_cor_fundo_btn_cont_hv, var(--cream));
}

/* CART ICON NAV BUTTON */
.box-cart-cta .shop-cart-trigger {
	position: relative;
	background: none;
	border: none;
	cursor: none;
	color: var(--header_cor_car);
	display: flex;
	align-items: center;
	gap: 6px;
	transition: color 0.3s;
	padding: 0;
}

.box-cart-cta .shop-cart-trigger:hover {
	color: var(--header_cor_cart);
}

.box-cart-cta .shop-cart-badge {
	position: absolute;
	top: -6px;
	right: -8px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--header_cor_fundo_qtd_car, var(--moss));
	color: var(--header_cor_numero_qtd_car, var(--cream));
	font-size: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	line-height: 1;
	transition: transform 0.3s var(--ease-out);
}

.box-cart-cta .shop-cart-badge.bump {
	animation: cartBump 0.35s var(--ease-out);
}

/* SHOP NAV EXTRA ITEMS */
.shop-nav-item {
	font-size: 11px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--header_cor_menu, var(--stone));
}

.nav-shop-link {
	font-size: 11px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--header_cor_menu, var(--stone));
	text-decoration: none;
	cursor: none;
	transition: color 0.3s;
}

.nav-shop-link:hover {
	color: var(--header_cor_menu_hv, var(--moss));
}

.nav-shop-link.active {
	color: var(--header_cor_menu_ativo, var(--stone));
	border-bottom: 0.5px solid var(--header_cor_menu_ativo, var(--moss));
	padding-bottom: 1px;
}

/* ACTIVE NAV STATE FOR SHOP */
nav.shop-mode {
	background: rgba(242, 240, 232, 0.96);
	border-color: rgba(61, 74, 48, 0.1);
	backdrop-filter: blur(14px);
}

@keyframes cartBump {

	0%,
	100% {
		transform: scale(1)
	}

	40% {
		transform: scale(1.3)
	}
}

/* SHOP RESPONSIVE */
@media (max-width: 900px) {
	.shop-layout {
		grid-template-columns: 1fr;
	}

	.shop-sidebar {
		position: static;
		border-right: none;
		border-bottom: 0.5px solid rgba(61, 74, 48, 0.1);
	}

	.shop-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.shop-main {
		padding: 1.5rem;
	}

	.shop-banner {
		grid-template-columns: 1fr;
		padding: 2rem 1.5rem;
	}

	.shop-banner-deco {
		display: none;
	}

	.cart-drawer {
		width: 100%;
	}
}

@media (max-width: 500px) {
	.shop-grid {
		grid-template-columns: 1fr;
	}
}