/* ===== BASIC ===== */
:root {
	--bulma-link-text: hsl(0, 0%, 4%);
	--gradient-gold: linear-gradient(135deg, #dfba6b 0%, #c29d53 50%, #e8d08d 100%);
	--twoz-gold-soft: #dfba6b;
	--font-title: 'Cormorant Garamond', Georgia, serif;
	--font-btn: 'Jost', system-ui, sans-serif;
}

body.cart-open {
	margin-right: 0;
	overflow: hidden;
}

/* ===== HEADER PRINCIPAL COM LOGO GRANDE ===== */
.header {
	background-color: #ffffff;
	position: sticky;
	top: 0;
	overflow: visible;
	z-index: 10;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
}

.header.scrolled {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
	padding-top: 20px;
	padding-bottom: 10px;
	position: relative;
	min-height: 120px;
	transition: all 0.3s ease;
}

.header.scrolled .header-content {
	min-height: 60px;
	padding-top: 8px;
	padding-bottom: 8px;
}

/* Logo centralizado */
.logo {
	transition: all 0.3s ease;
}

.logo img {
	height: 60px;
	width: auto;
	object-fit: contain;
	transition: all 0.3s ease;
}

.header.scrolled .logo img {
	height: 45px;
}

/* Ações do header */
.header-actions {
	gap: 10px;
	transition: all 0.3s ease;
	justify-content: center;
	padding-right: 16px;
}

/* Remove padding extra quando scrolled */
.header.scrolled .header-actions {
	padding-right: 12px;
}

/* Ocultar ícones sociais quando scrolled */
.header.scrolled .column.is-3:first-child {
	opacity: 0;
	pointer-events: none;
	max-width: 0;
	overflow: hidden;
}

/* Campo de busca */
.search-container {
	position: relative;
	display: flex;
	align-items: center;
}

.search-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: none;
	border: none;
	color: #333;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
}

.search-btn:hover {
	background-color: var(--twoz-cream);
	color: var(--twoz-gold-deep);
}

/* Ícones do usuário e carrinho */
.account-link,
.cart-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: none;
	border: none;
	color: #333;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
}

.account-link:hover,
.cart-toggle:hover {
	background-color: var(--twoz-cream);
	color: var(--twoz-gold-deep);
}

.account-link {
	text-decoration: none;
}

/* Badge do carrinho */
.cart-badge {
	position: absolute;
	top: 3px;
	right: 3px;
	background: var(--gradient-gold);
	color: #1a1a1a;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	font-size: 11px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

/* Cart Drawer */
.cart-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.cart-overlay.active {
	opacity: 1;
	visibility: visible;
}

.cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: 400px;
	height: 100%;
	background-color: #ffffff;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
	z-index: 10001;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

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

.cart-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid #e5e5e5;
	background-color: #f8f9fa;
}

.cart-header h3 {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.close-drawer {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 50%;
	color: #666;
	transition: all 0.2s ease;
}

.close-drawer:hover {
	background-color: #e9ecef;
	color: #333;
}

.cart-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.cart-items {
	flex: 1;
	padding: 20px;
}

.cart-empty {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	text-align: center;
	color: #666;
}

.cart-empty svg {
	margin-bottom: 16px;
	opacity: 0.5;
}

.cart-empty p {
	margin-bottom: 24px;
	font-size: 16px;
}

.cart-footer {
	padding: 20px;
	border-top: 1px solid #e5e5e5;
	background-color: #f8f9fa;
}

.cart-total {
	margin-bottom: 16px;
	font-size: 18px;
	text-align: center;
}

.cart-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* ===== FOOTER ===== */
.footer {
	background: #222;
	color: #fff;
	padding: 48px 0 0 0;
	font-size: 15px;
	margin-top: 60px;
}

.footer-bottom {
	text-align: center;
	padding: 18px 0;
	margin-top: 0;
}

/* ===== BULMA ELEMENTS ===== */

.card,
.box {
	box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
}

.card-header {
	box-shadow: none !important;
}

/* Navbar compacta quando scrolled */
.navbar {
	transition: all 0.3s ease;
	position: relative;
}

/* Quando scrolled, reorganiza todo o layout */
.header.scrolled .header-content {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	position: relative;
}

/* Logo à esquerda quando scrolled (coluna do meio) */
.header.scrolled .header-content .column:nth-child(2) {
	flex: 0 0 auto;
	width: auto !important;
	text-align: left !important;
}

/* Ações à direita quando scrolled (última coluna) */
.header.scrolled .header-content .column:nth-child(3) {
	flex: 0 0 auto;
	width: auto !important;
	margin-left: auto;
}

/* Posiciona navbar no centro absoluto quando scrolled */
.header.scrolled .navbar {
	border-bottom: none !important;
	padding: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: transparent;
	width: auto;
	pointer-events: auto;
}

.header.scrolled .navbar .container {
	padding: 0;
}

.header.scrolled .navbar .navbar-item {
	padding: 0.5rem 1rem;
}

/* Garante que os ícones de ação fiquem bem alinhados */
.header.scrolled .header-actions {
	justify-content: flex-end;
}

/* ===== MOBILE MENU ===== */

/* Botão hamburguer */
.mobile-menu-toggle {
	display: none;
	/* Oculto por padrão (desktop) */
	flex-direction: column;
	justify-content: space-around;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	border-radius: 50%;
	transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover {
	background-color: #f8f9fa;
}

.mobile-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: #333;
	transition: all 0.3s ease;
	border-radius: 2px;
}

/* Animação do X quando aberto */
.mobile-menu-toggle.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Overlay do menu mobile */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Drawer do menu mobile */
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 280px;
	height: 100%;
	background-color: #ffffff;
	box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
	z-index: 9999;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.mobile-menu.active {
	transform: translateX(0);
}

/* Header do menu mobile */
.mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid #e5e5e5;
	background-color: #f8f9fa;
}

.mobile-menu-header span {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.mobile-menu-close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 50%;
	color: #666;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mobile-menu-close:hover {
	background-color: #e9ecef;
	color: #333;
}

/* Navegação do menu mobile */
.mobile-menu-nav {
	flex: 1;
	padding: 20px 0;
	overflow-y: auto;
}

.mobile-menu-item {
	display: block;
	padding: 16px 24px;
	color: #333;
	text-decoration: none;
	font-size: 16px;
	transition: all 0.2s ease;
	border-left: 3px solid transparent;
}

.mobile-menu-item:hover {
	background-color: var(--twoz-cream);
	border-left-color: var(--twoz-gold);
	color: var(--twoz-gold-deep);
}

/* ===== MEDIA QUERIES ===== */

/* Tablets e Mobile (<1024px) */
@media screen and (max-width: 1024px) {

	/* Mostra botão hamburguer */
	.mobile-menu-toggle {
		display: flex;
	}

	/* Oculta navbar desktop em telas menores */
	.navbar {
		display: none !important;
	}

	/* Ajusta logo em tablets */
	.logo img {
		height: 60px;
	}

	.header.scrolled .logo img {
		height: 40px;
	}

	/* Ajusta espaçamento do header */
	.header-content {
		min-height: 80px;
	}

	.header.scrolled .header-content {
		min-height: 60px;
	}
}

/* Mobile pequeno (<480px) */
@media screen and (max-width: 480px) {

	/* Logo ainda menor em mobile */
	.logo img {
		height: 50px;
	}

	.header.scrolled .logo img {
		height: 35px;
	}

	/* Ícones menores */
	.search-btn,
	.account-link,
	.cart-toggle {
		width: 40px;
		height: 40px;
	}

	/* Header mais compacto */
	.header-content {
		min-height: 60px;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.header.scrolled .header-content {
		min-height: 50px;
		padding-top: 8px;
		padding-bottom: 8px;
	}

	/* Oculta ícones sociais em mobile */
	.column.is-3:first-child {
		display: none;
	}

	/* Adiciona margem à logo em mobile */
	.logo {
		margin-left: 18px;
	}

	/* Menu mobile full width */
	.mobile-menu {
		width: 85%;
		max-width: 320px;
	}
}

/* ===== HERO SECTION & GOLD GRADIENT ===== */
.hero-twoz {
	background-image: linear-gradient(to right, rgba(10, 20, 38, 0.8) 0%, rgba(10, 20, 38, 0.45) 50%, rgba(10, 20, 38, 0.1) 100%), url('../img/hero.png');
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	min-height: 600px;
	display: flex;
	align-items: center;
	padding: 80px 0;
	color: #ffffff;
}

.hero-twoz .container {
	width: 100%;
}

.hero-twoz .hero-content {
	max-width: 580px;
	padding: 0 20px;
	text-align: left;
}

.hero-twoz .eyebrow {
	text-transform: uppercase;
	letter-spacing: .4em;
	color: var(--twoz-gold-soft);
	font-size: .75rem;
	margin-bottom: 1.5rem;
	font-family: var(--font-btn);
	font-weight: 500;
}

.hero-twoz .hero-title {
	font-family: var(--font-title);
	font-size: 3.75rem;
	line-height: 1.15;
	font-weight: 400;
	margin-bottom: 1.5rem;
	color: #ffffff;
}

.hero-twoz .hero-subtitle {
	font-family: var(--font-btn);
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 2.5rem;
	max-width: 480px;
	font-weight: 300;
}

.hero-twoz .hero-buttons {
	display: flex;
	gap: 1.25rem;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.hero-twoz .button {
	font-family: var(--font-btn);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-weight: 500;
	padding: 1.5rem 2.25rem;
	border-radius: 4px;
	transition: all 0.3s ease;
	height: auto;
}

.hero-twoz .btn-gold {
	background: var(--gradient-gold);
	color: #1a1a1a;
	border: none;
	box-shadow: 0 4px 15px rgba(194, 157, 83, 0.2);
}

.hero-twoz .btn-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(194, 157, 83, 0.35);
	color: #000000;
	opacity: 0.95;
}

.hero-twoz .btn-outline {
	background: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-twoz .btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #ffffff;
	color: #ffffff;
	transform: translateY(-2px);
}

.text-gradient-gold {
	background: var(--gradient-gold);
	color: #0000;
	-webkit-background-clip: text;
	background-clip: text;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
	.hero-twoz {
		min-height: 480px;
		background-position: 75% center;
		text-align: center;
		padding: 60px 0;
	}

	.hero-twoz .hero-content {
		max-width: 100%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.hero-twoz .hero-title {
		font-size: 2.5rem;
	}

	.hero-twoz .hero-subtitle {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-twoz .hero-buttons {
		justify-content: center;
		width: 100%;
	}
}

/* ===== HIGHLIGHTS SECTION (SECTION-PAD) ===== */
.section-pad {
	background-color: #fcfaf6;
	/* Warm luxury off-white/beige background */
	padding: 80px 0;
	border-bottom: 1px solid rgba(223, 186, 107, 0.15);
}

.container-narrow {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.highlight-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform 0.3s ease;
}

.highlight-item .icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: #f2ece0;
	/* Slightly darker warm beige circle */
	color: #c29d53;
	/* Elegant brand gold color for the SVG */
	margin-bottom: 24px;
	transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.highlight-item h3 {
	font-family: var(--font-title);
	font-size: 1.45rem;
	font-weight: 500;
	color: #121c29;
	/* Navy/dark brand color */
	margin-bottom: 12px;
	line-height: 1.25;
	transition: color 0.3s ease;
}

.highlight-item p {
	font-family: var(--font-btn);
	font-size: 0.95rem;
	line-height: 1.5;
	color: #5d6670;
	max-width: 250px;
	margin: 0 auto;
	font-weight: 300;
}

/* Micro-animations */
.highlight-item:hover .icon-wrap {
	transform: translateY(-4px) scale(1.06);
	background-color: #dfba6b;
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(194, 157, 83, 0.25);
}

.highlight-item:hover h3 {
	color: #dfba6b;
}

/* Responsive design for grid-4 */
@media screen and (max-width: 1023px) {
	.grid-4 {
		grid-template-columns: repeat(2, 1fr);
		gap: 48px 32px;
	}

	.section-pad {
		padding: 60px 0;
	}
}

@media screen and (max-width: 640px) {
	.grid-4 {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.highlight-item p {
		max-width: 280px;
	}
}

/* ===== PRODUCTS SECTION ===== */
.bg-cream-2 {
	background-color: #f5f0e8;
	/* Slightly richer warm cream */
}

/* Section title row: title left, "Ver todos" right */
.section-title-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
}

.products-heading {
	font-family: var(--font-title);
	font-size: 2.25rem;
	font-weight: 400;
	color: #121c29;
	margin-top: 0.5rem;
	line-height: 1.2;
}

/* Typography utilities */
.uppercase {
	text-transform: uppercase;
}

.tracking-3 {
	letter-spacing: 0.3em;
}

.tracking-1 {
	letter-spacing: 0.12em;
}

.text-gold {
	color: var(--twoz-gold-soft);
}

.ver-todos {
	font-family: var(--font-btn);
	text-decoration: none;
	transition: opacity 0.2s ease;
	white-space: nowrap;
	padding-bottom: 4px;
	/* align baseline with h2 */
}

.ver-todos:hover {
	opacity: 0.7;
}

/* Product card */
.product-card-new {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card-new:hover {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
	transform: translateY(-4px);
}

/* Thumbnail area */
.pcard-thumb {
	position: relative;
	aspect-ratio: 4/3;
	background-color: #f0ece4;
	overflow: hidden;
}

.pcard-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.product-card-new:hover .pcard-thumb img {
	transform: scale(1.04);
}

/* Category tag badge */
.pcard-tag {
	position: absolute;
	top: 14px;
	left: 14px;
	background-color: #121c29;
	color: #ffffff;
	font-family: var(--font-btn);
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	padding: 5px 10px;
	border-radius: 3px;
	font-weight: 500;
}

/* Card body */
.pcard-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px 20px 18px;
}

.pcard-name {
	font-family: var(--font-title);
	font-size: 1.35rem;
	font-weight: 400;
	color: #121c29;
	line-height: 1.25;
	margin-bottom: 6px;
}

.pcard-meta {
	font-family: var(--font-btn);
	font-size: 0.7rem;
	color: rgba(0, 0, 0, 0.45);
	margin-bottom: 10px;
}

.pcard-desc {
	font-family: var(--font-btn);
	font-size: 0.88rem;
	color: #5d6670;
	line-height: 1.55;
	font-weight: 300;
	flex: 1;
	margin-bottom: 16px;
}

/* Card footer: price + link */
.pcard-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-top: auto;
}

.pcard-price {
	font-family: var(--font-title);
	font-size: 1.5rem;
	font-weight: 500;
	color: #121c29;
}

.pcard-link {
	font-family: var(--font-btn);
	font-size: 0.7rem;
	color: var(--twoz-gold-soft);
	transition: opacity 0.2s ease;
}

.product-card-new:hover .pcard-link {
	opacity: 0.75;
}

/* Responsive: stack to 2 cols on tablet, 1 col on mobile */
@media screen and (max-width: 1023px) {
	.products-grid-new.grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 560px) {
	.products-grid-new.grid-4 {
		grid-template-columns: 1fr;
	}

	.section-title-row {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ===== CTA SECTION ===== */
.bg-gradient-navy {
	background: linear-gradient(135deg, #0c1229 0%, #1a2140 50%, #0f1730 100%);
}

.container-narrower {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 24px;
}

.text-center {
	text-align: center;
}

.bg-gradient-navy h2 {
	font-family: var(--font-title);
	font-weight: 400;
	line-height: 1.2;
}

/* Global btn-gold (outside hero scope) */
.btn-gold {
	display: inline-block;
	font-family: var(--font-btn);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-weight: 500;
	padding: 1rem 2.5rem;
	border-radius: 4px;
	background: var(--gradient-gold);
	color: #1a1a1a;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
	box-shadow: 0 4px 15px rgba(194, 157, 83, 0.25);
}

.btn-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 22px rgba(194, 157, 83, 0.4);
	opacity: 0.95;
	color: #000;
}

.btn-outline {
	display: inline-block;
	font-family: var(--font-btn);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-weight: 500;
	padding: 1rem 2.5rem;
	border-radius: 4px;
	background: transparent;
	color: #121c29;
	border: 1px solid #121c29;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-outline:hover {
	background: #121c29;
	color: #ffffff;
	transform: translateY(-2px);
}


/* Remove default footer margin-top so CTA sits flush */
.site-footer {
	margin-top: 0 !important;
}

/* ===== SITE FOOTER ===== */
.site-footer {
	background-color: #0c0e18;
	/* Elegant deep dark navy background */
	color: #ffffff;
	padding: 80px 0 40px 0;
	margin-top: 60px;
}

.site-footer .container-narrow {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.site-footer .brand-lockup {
	font-family: var(--font-title);
	font-size: 2.5rem;
	font-weight: 400;
	color: #ffffff;
	line-height: 1;
}

.site-footer .brand-lockup span {
	font-weight: 600;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer-grid h4 {
	font-family: var(--font-btn);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--twoz-gold-soft);
	font-weight: 500;
	margin-bottom: 24px;
}

.footer-grid ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-grid ul li {
	font-family: var(--font-btn);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 12px;
	font-weight: 300;
}

.footer-grid ul li a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-grid ul li a:hover {
	color: var(--twoz-gold-soft);
}

.site-footer .copyright {
	font-family: var(--font-btn);
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.4);
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 30px;
	font-weight: 300;
}

/* Responsive footer */
@media screen and (max-width: 768px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.footer-grid div {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.footer-grid p {
		text-align: center;
	}

	.site-footer {
		padding: 60px 0 30px 0;
	}
}

/* ===== CATEGORY PAGE / PRODUCT CARD STYLES (MATCHING HOMEPAGE DESIGN) ===== */
.section-pad-sm {
	padding: 40px 0;
}

.tracking-4 {
	letter-spacing: 0.4em;
}

.text-gold-soft {
	color: var(--twoz-gold-soft);
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

@media screen and (max-width: 1023px) {
	.grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 640px) {
	.grid-3 {
		grid-template-columns: 1fr;
	}
}

/* Category header description style */
.category-description,
.category-description p {
	color: rgba(255, 255, 255, 0.75) !important;
	font-family: var(--font-btn) !important;
	font-size: 1.05rem !important;
	font-weight: 300 !important;
	line-height: 1.6 !important;
}

/* Product Card */
.product-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
	transform: translateY(-4px);
}

/* Thumbnail area */
.product-card .thumb {
	position: relative;
	aspect-ratio: 4/3;
	background-color: #f0ece4;
	overflow: hidden;
}

.product-card .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.product-card:hover .thumb img {
	transform: scale(1.04);
}

/* Category tag badge override */
.product-card .tag {
	position: absolute;
	top: 14px;
	left: 14px;
	background-color: #121c29 !important;
	color: #ffffff !important;
	font-family: var(--font-btn) !important;
	font-size: 0.68rem !important;
	text-transform: uppercase !important;
	letter-spacing: 0.18em !important;
	padding: 5px 10px !important;
	border-radius: 3px !important;
	font-weight: 500 !important;
	height: auto !important;
	display: inline-block !important;
	margin: 0 !important;
}

/* Card body */
.product-card .body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px 20px 18px;
}

.product-card h3 {
	font-family: var(--font-title);
	font-size: 1.35rem;
	font-weight: 400;
	color: #121c29;
	line-height: 1.25;
	margin-bottom: 6px;
}

.product-card .meta {
	font-family: var(--font-btn);
	font-size: 0.7rem;
	color: rgba(0, 0, 0, 0.45);
	margin-bottom: 10px;
}

.product-card .desc {
	font-family: var(--font-btn);
	font-size: 0.88rem;
	color: #5d6670;
	line-height: 1.55;
	font-weight: 300;
	flex: 1;
	margin-bottom: 16px;
}

/* Card footer: price + link */
.product-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-top: auto;
}

.product-card .price {
	font-family: var(--font-title);
	font-size: 1.5rem;
	font-weight: 500;
	color: #121c29;
}

.product-card .link {
	font-family: var(--font-btn) !important;
	font-size: 0.7rem !important;
	color: var(--twoz-gold-soft) !important;
	transition: opacity 0.2s ease !important;
	text-decoration: none !important;
}

.product-card:hover .link {
	opacity: 0.75;
}

/* ===== PRODUCT DETAILS PAGE STYLES ===== */
.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

@media screen and (max-width: 768px) {
	.grid-2 {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.qty-selector-container {
	display: inline-flex;
	align-items: center;
	height: 48px;
	padding: 0 4px;
	background: #ffffff;
}

.product-qty-btn {
	border: 1px solid #ddd;
	background: white;
	border-radius: 4px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #121c29;
	transition: all 0.2s;
	padding: 0;
}

.product-qty-btn:hover {
	background: #f5f5f5;
	border-color: #999;
}

.product-qty-btn svg {
	width: 24px;
	height: 24px;
}

.qty-val {
	width: 40px;
	text-align: center;
	font-family: var(--font-btn);
	font-size: 0.95rem;
	font-weight: 500;
	color: #121c29;
}

/* Button states for loading/success/error in hybrids component */
.btn-gold.is-loading {
	position: relative;
	color: transparent !important;
	pointer-events: none;
}

.btn-gold.is-loading::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
	border: 2px solid rgba(0, 0, 0, 0.15);
	border-radius: 50%;
	border-top-color: #000;
	animation: spin 0.6s linear infinite;
}

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