/* Header and mobile navigation */

/* ── RESET GLOBAL ───────────────────────────────────────────────── */
	*, *::before, *::after { box-sizing: border-box; }
	html,
	body {
		overflow-x: hidden;
	}
	body {
		font-family: 'Manrope', system-ui, sans-serif;
		background: #FAFAF8;
		margin: 0;
		color: #2B231B;
		-webkit-font-smoothing: antialiased;
	}
	h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; margin: 0; }
	a { text-decoration: none; color: inherit; }
	img { display: block; max-width: 100%; height: auto; }
	button { font-family: inherit; cursor: pointer; }

	/* ── HEADER CONTAINER ────────────────────────────────────────────── */
	.ax-header {
		background: #fff;
		border-bottom: 1px solid rgba(43,35,27,.07);
		position: sticky;
		top: 0;
		z-index: 9999;
		transition: box-shadow .3s ease;
	}
	.ax-header.is-scrolled {
		box-shadow: 0 2px 28px rgba(0,0,0,.06);
	}

	/* Barra superior */
	.ax-header__bar {
		background: #181410;
		padding: 9px 0;
		text-align: center;
		font-size: 9px;
		font-weight: 700;
		letter-spacing: .22em;
		text-transform: uppercase;
		color: rgba(255,255,255,.45);
		white-space: nowrap;
		overflow: hidden;
	}
	.ax-header__bar em {
		font-style: normal;
		color: #D9C49E;
	}
	.ax-header__bar span { margin: 0 14px; opacity: .3; }

	/* Layout 3 colunas: logo | nav | ações */
	.ax-header__layout {
		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: center;
		max-width: 1060px;
		margin: 0 auto;
		padding: 20px 24px;
		gap: 14px;
	}

	/* ── LOGO (esquerda) ─────────────────────────────────────────────── */
	.ax-header__logo {
		grid-column: 1;
		justify-self: start;
	}
	.ax-header__logo img {
		height: 42px;
		width: auto;
	}

	/* ── NAVEGAÇÃO (após a logo) ─────────────────────────────────────── */
	.ax-header__nav {
		grid-column: 2;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 22px;
	}

	.ax-nav-link {
		font-family: 'Cormorant Garamond', serif;
		font-size: 18px;
		font-weight: 500;
		color: #2B231B;
		letter-spacing: .01em;
		position: relative;
		padding-bottom: 2px;
		transition: color .2s;
	}
	.ax-nav-link::after {
		content: '';
		position: absolute;
		bottom: 0; left: 0;
		width: 0; height: 1px;
		background: #B98E55;
		transition: width .35s ease;
	}
	.ax-nav-link:hover { color: #B98E55; }
	.ax-nav-link:hover::after { width: 100%; }

	/* Dropdown acessórios */
	.ax-nav-drop {
		position: relative;
	}
	.ax-nav-drop__link {
		font-family: 'Cormorant Garamond', serif;
		font-size: 18px;
		font-weight: 500;
		color: #2B231B;
		letter-spacing: .01em;
		position: relative;
		padding-bottom: 2px;
		display: inline-block;
		transition: color .2s;
	}
	.ax-nav-drop__link::after {
		content: '';
		position: absolute;
		bottom: 0; left: 0;
		width: 0; height: 1px;
		background: #B98E55;
		transition: width .35s ease;
	}
	.ax-nav-drop__link--static { cursor: default; }
	.ax-nav-drop:hover .ax-nav-drop__link { color: #B98E55; }
	.ax-nav-drop:hover .ax-nav-drop__link::after { width: 100%; }

	.ax-nav-drop__menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		background: #fff;
		border: 1px solid rgba(43,35,27,.08);
		min-width: 220px;
		padding: 20px 0 6px;
		box-shadow: 0 16px 48px rgba(0,0,0,.07);
		z-index: 10;
	}
	.ax-nav-drop:hover .ax-nav-drop__menu { display: block; }
	.ax-nav-drop__menu a {
		display: block;
		padding: 11px 22px;
		font-family: 'Manrope', sans-serif;
		font-size: 10.5px;
		font-weight: 700;
		letter-spacing: .14em;
		text-transform: uppercase;
		color: #7C7168;
		transition: color .2s, background .2s;
	}
	.ax-nav-drop__menu a:hover {
		color: #B98E55;
		background: #FAFAF8;
	}

	/* ── AÇÕES (direita) ─────────────────────────────────────────────── */
	.ax-header__actions {
		grid-column: 3;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 12px;
	}

	.ax-btn-atend {
		font-family: 'Manrope', sans-serif;
		font-size: 9px;
		font-weight: 700;
		letter-spacing: .16em;
		text-transform: uppercase;
		color: #00504A;
		border: 1px solid rgba(0,80,74,.3);
		padding: 10px 18px;
		transition: background .25s, color .25s, border-color .25s;
		white-space: nowrap;
	}
	.ax-btn-atend:hover {
		background: #00504A;
		color: #fff;
		border-color: #00504A;
	}

	.ax-cart {
		position: relative;
		display: flex;
		align-items: center;
		color: #2B231B;
		transition: color .2s;
	}
	.ax-cart:hover { color: #B98E55; }
	.ax-cart svg { display: block; }
	.ax-cart__count {
		position: absolute;
		top: -7px; right: -10px;
		background: #B98E55;
		color: #fff;
		font-size: 8px;
		font-weight: 800;
		width: 16px; height: 16px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	/* Hamburger — só mobile */
	.ax-hamburger {
		display: none;
		background: none;
		border: none;
		padding: 4px;
		color: #2B231B;
		transition: color .2s;
	}
	.ax-hamburger:hover { color: #B98E55; }

	/* ── MOBILE PANEL ────────────────────────────────────────────────── */
	.ax-mobile-panel {
		position: fixed;
		top: 0; right: 0;
		width: min(360px, 88vw);
		height: 100dvh;
		background: #fff;
		z-index: 99999;
		transform: translateX(100%);
		transition: transform .38s cubic-bezier(.22,1,.36,1);
		display: flex;
		flex-direction: column;
		overflow-y: auto;
		overscroll-behavior: contain;
	}
	.ax-mobile-panel.is-open { transform: translateX(0); }

	.ax-mobile-panel__head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 22px 26px;
		border-bottom: 1px solid rgba(43,35,27,.07);
		flex-shrink: 0;
	}
	.ax-mobile-panel__logo img { height: 32px; }

	.ax-mobile-close {
		background: none;
		border: none;
		padding: 4px;
		color: #7C7168;
		transition: color .2s;
	}
	.ax-mobile-close:hover { color: #2B231B; }

	.ax-mobile-nav {
		flex: 1;
		padding: 12px 0;
		display: flex;
		flex-direction: column;
	}
	.ax-mobile-nav a {
		display: block;
		font-family: 'Cormorant Garamond', serif;
		font-size: 22px;
		font-weight: 500;
		color: #2B231B;
		padding: 15px 26px;
		border-bottom: 1px solid rgba(43,35,27,.05);
		transition: color .2s, padding-left .2s;
	}
	.ax-mobile-nav a:hover {
		color: #B98E55;
		padding-left: 32px;
	}
	.ax-mobile-nav__sublabel {
		display: block;
		font-family: 'Manrope', sans-serif;
		font-size: 9.5px;
		font-weight: 700;
		letter-spacing: .18em;
		text-transform: uppercase;
		color: #7C7168;
		padding: 18px 26px 8px;
	}
	.ax-mobile-nav__sub a {
		font-family: 'Manrope', sans-serif;
		font-size: 12px;
		font-weight: 600;
		letter-spacing: .1em;
		text-transform: uppercase;
		color: #7C7168;
		padding: 10px 26px 10px 36px;
	}
	.ax-mobile-nav__sub a:hover { color: #B98E55; }

	.ax-mobile-panel__foot {
		flex-shrink: 0;
		padding: 20px 26px 32px;
		display: flex;
		flex-direction: column;
		gap: 10px;
		border-top: 1px solid rgba(43,35,27,.07);
	}
	.ax-mobile-panel__foot a {
		display: block;
		text-align: center;
		padding: 14px;
		font-family: 'Manrope', sans-serif;
		font-size: 9.5px;
		font-weight: 700;
		letter-spacing: .16em;
		text-transform: uppercase;
		transition: background .22s, color .22s;
	}
	.ax-mobile-panel__foot .is-primary { background: #181410; color: #fff; }
	.ax-mobile-panel__foot .is-primary:hover { background: #2B231B; }
	.ax-mobile-panel__foot .is-secondary { border: 1px solid rgba(43,35,27,.18); color: #2B231B; }
	.ax-mobile-panel__foot .is-secondary:hover { background: #181410; color: #fff; border-color: #181410; }

	/* Backdrop */
	.ax-menu-backdrop {
		position: fixed;
		inset: 0;
		background: rgba(0,0,0,.42);
		z-index: 99998;
		opacity: 0;
		pointer-events: none;
		transition: opacity .35s ease;
	}
	.ax-menu-backdrop.is-visible {
		opacity: 1;
		pointer-events: all;
	}

	/* ── RESPONSIVO ──────────────────────────────────────────────────── */
	@media (max-width: 1160px) {
		.ax-header__layout {
			grid-template-columns: 44px minmax(0, 1fr) 44px;
			padding: 18px 28px;
			gap: 0;
		}
		.ax-header__logo {
			grid-column: 2;
			justify-self: center;
		}
		.ax-header__nav { display: none; }
		.ax-header__actions {
			grid-column: 3;
			justify-self: end;
		}
		.ax-btn-atend { display: none; }
		.ax-cart { display: none; }
		.ax-hamburger { display: flex; }
	}
	@media (max-width: 600px) {
		.ax-header__layout {
			grid-template-columns: 40px minmax(0, 1fr) 40px;
			padding: 14px 16px;
		}
		.ax-header__logo img { height: 40px; }
		.ax-header__bar { font-size: 8px; letter-spacing: .15em; }
	}
	@media (max-width: 640px) {
		.lux-footer-v14 { padding: 3rem 0 1.5rem !important; }
		.lux-footer-v14__grid {
			grid-template-columns: 1fr 1fr !important;
			gap: 1.6rem 1.2rem !important;
			margin-bottom: 2.25rem !important;
		}
		.lux-footer-v14__brand { grid-column: 1 / -1 !important; }
		.lux-footer-v14__grid h4 {
			margin-bottom: .9rem !important;
			font-size: .66rem !important;
			letter-spacing: .08em !important;
		}
		.lux-footer-v14__grid ul {
			gap: .55rem !important;
			font-size: .78rem !important;
			line-height: 1.25 !important;
		}
		.lux-footer-v14__bottom {
			display: grid !important;
			gap: .6rem !important;
			justify-content: stretch !important;
			font-size: .62rem !important;
			line-height: 1.45 !important;
		}
	}
