:root {
	--cream: #faf8f4;
	--warm-white: #ffffff;
	--ink: #1a1714;
	--ink-soft: #4a4540;
	--ink-muted: #9a9390;
	--border: #e8e4de;
	--border-light: #f0ede8;
	--accent: #c4a882;
	--accent-dark: #8b6e4e;
	--accent-light: #f5efe6;
	--success: #4a7c59;
	--danger: #c0392b;
}
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: "DM Sans", sans-serif;
	background: var(--cream);
	color: var(--ink);
	min-height: 100vh;
	overflow-x: hidden;
}

/* ── HEADER ── */
.site-header {
	background: var(--warm-white);
	border-bottom: 1px solid var(--border);
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 62px;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 1px 10px rgba(26, 23, 20, 0.05);
}
.header-left {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.back-link {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	color: var(--ink-muted);
	text-decoration: none;
	transition: color 0.2s;
}
.back-link:hover {
	color: var(--ink);
}
.back-link svg {
	width: 14px;
	height: 14px;
}
.divider-v {
	width: 1px;
	height: 20px;
	background: var(--border);
}
.logo {
	font-family: "Cormorant Garamond", serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.3px;
	color: var(--ink);
	text-decoration: none;
}
.logo span {
	color: var(--accent-dark);
}
.header-right {
	display: flex;
	align-items: center;
	gap: 8px;
}
.icon-btn {
	width: 38px;
	height: 38px;
	border-radius: 9px;
	border: 1px solid var(--border);
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ink);
	transition: all 0.15s;
	position: relative;
}
.icon-btn:hover {
	background: var(--border-light);
	border-color: var(--accent);
}
.icon-btn svg {
	width: 18px;
	height: 18px;
}
.cart-badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background: var(--accent-dark);
	color: #fff;
	border-radius: 50%;
	width: 17px;
	height: 17px;
	font-size: 10px;
	font-weight: 600;
	display: none;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--warm-white);
}
.cart-badge.show {
	display: flex;
}

/* Language Toggle */
.lang-btn {
	height: 32px;
	padding: 0 12px;
	border-radius: 7px;
	border: 1px solid var(--border);
	background: transparent;
	font-family: "DM Sans", sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: var(--ink-soft);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: all 0.15s;
	letter-spacing: 0.3px;
}
.lang-btn:hover {
	border-color: var(--accent);
	color: var(--ink);
}
.lang-btn .lang-flag {
	font-size: 14px;
	line-height: 1;
}

/* ── HERO ── */
.hero {
	padding: 2.5rem 1.5rem 1.5rem;
	max-width: 940px;
	margin: 0 auto;
}
.hero-eyebrow {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--accent-dark);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.hero-eyebrow::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 1px;
	background: var(--accent);
}
.hero h1 {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(28px, 5vw, 40px);
	font-weight: 500;
	line-height: 1.15;
	color: var(--ink);
	margin-bottom: 8px;
}
.hero h1 em {
	font-style: italic;
	color: var(--accent-dark);
}
.hero p {
	font-size: 13px;
	color: var(--ink-muted);
	line-height: 1.7;
	max-width: 520px;
}

/* ── CATEGORY NAV ── */
.category-nav {
	padding: 0 1.5rem;
	max-width: 940px;
	margin: 0 auto 1.5rem;
	display: flex;
	gap: 7px;
	flex-wrap: wrap;
}
.cat-btn {
	padding: 6px 16px;
	border-radius: 20px;
	border: 1px solid var(--border);
	background: transparent;
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	color: var(--ink-soft);
	cursor: pointer;
	transition: all 0.15s;
}
.cat-btn:hover {
	border-color: var(--accent);
	color: var(--ink);
}
.cat-btn.active {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

/* ── PRODUCT GRID ── */
.menu-container {
	padding: 0 1.5rem 9rem;
	max-width: 940px;
	margin: 0 auto;
}
.category-section {
	margin-bottom: 2rem;
}
.category-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--accent-dark);
	background: var(--accent-light);
	border: 1px solid var(--accent);
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 12px;
}
.category-label-icon {
	font-size: 13px;
}
.menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 12px;
}

/* ── PRODUCT CARD ── */
.product-card {
	background: var(--warm-white);
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	transition:
		border-color 0.2s,
		transform 0.2s,
		box-shadow 0.2s;
	cursor: pointer;
	display: flex;
	flex-direction: column;
}
.product-card:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(26, 23, 20, 0.09);
}
.product-card.in-cart {
	border-color: var(--accent-dark);
	box-shadow: 0 4px 16px rgba(139, 110, 78, 0.12);
}

.card-img {
	width: 100%;
	height: 130px;
	background: var(--accent-light);
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
}
.card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	filter: brightness(0.93);
}
.product-card:hover .card-img img {
	transform: scale(1.06);
}
.card-img-emoji {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
}
.in-cart-tag {
	position: absolute;
	top: 8px;
	right: 8px;
	background: var(--accent-dark);
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.4px;
	padding: 3px 8px;
	border-radius: 5px;
	display: none;
}
.product-card.in-cart .in-cart-tag {
	display: block;
}

.card-body {
	padding: 12px 14px 14px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.card-name {
	font-size: 13px;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 4px;
	line-height: 1.35;
}
.card-desc {
	font-size: 11px;
	color: var(--ink-muted);
	margin-bottom: 9px;
	line-height: 1.6;
	flex: 1;
}
.card-features {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 10px;
}
.feat-tag {
	font-size: 10px;
	padding: 2px 6px;
	border: 1px solid var(--border);
	border-radius: 3px;
	color: var(--ink-muted);
	background: var(--border-light);
}
.card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 9px;
	border-top: 1px solid var(--border-light);
	margin-top: auto;
}
.card-price {
	/* font-family: "Cormorant Garamond", serif; */
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
}
.card-price small {
	font-family: "DM Sans", sans-serif;
	font-size: 10px;
	color: var(--ink-muted);
	display: block;
	margin-top: 1px;
}
.add-btn {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: var(--ink);
	color: #fff;
	border: none;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.15s;
	flex-shrink: 0;
}
.add-btn:hover {
	opacity: 0.78;
}
.qty-control {
	display: flex;
	align-items: center;
	gap: 6px;
}
.qty-control button {
	width: 26px;
	height: 26px;
	border-radius: 6px;
	border: 1px solid var(--border);
	background: transparent;
	cursor: pointer;
	font-size: 14px;
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.1s;
}
.qty-control button:hover {
	background: var(--border-light);
}
.qty-num {
	font-size: 13px;
	font-weight: 500;
	min-width: 14px;
	text-align: center;
}

/* ── FLOATING CART BAR ── */
.cart-bar {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 150;
	width: calc(100% - 3rem);
	max-width: 500px;
	background: var(--ink);
	color: #fff;
	border-radius: 14px;
	padding: 14px 18px;
	display: none;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	box-shadow: 0 8px 32px rgba(26, 23, 20, 0.28);
	gap: 12px;
}
.cart-bar.visible {
	display: flex;
}
.cart-bar:hover {
	opacity: 0.92;
}
.cart-bar-left {
	display: flex;
	align-items: center;
	gap: 12px;
}
.cart-bar-icon {
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.cart-bar-icon svg {
	width: 17px;
	height: 17px;
}
.cart-bar-label {
	font-size: 14px;
	font-weight: 500;
}
.cart-bar-sub {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 1px;
}
.cart-bar-cta {
	font-size: 13px;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.14);
	padding: 6px 14px;
	border-radius: 7px;
	white-space: nowrap;
}

/* ── OVERLAYS & DRAWERS ── */
.overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(26, 23, 20, 0.38);
	z-index: 200;
	opacity: 0;
	transition: opacity 0.2s;
}
.overlay.open {
	display: block;
	opacity: 1;
}
.drawer {
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	background: var(--warm-white);
	transform: translateX(100%);
	transition: transform 0.27s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
}
.drawer.open {
	transform: translateX(0);
}
#cartDrawer {
	width: 100%;
	max-width: 440px;
	z-index: 201;
}
#sideDrawer {
	width: 260px;
	z-index: 301;
}
.side-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(26, 23, 20, 0.35);
	z-index: 300;
	opacity: 0;
	transition: opacity 0.2s;
}
.side-overlay.open {
	display: block;
	opacity: 1;
}
.drawer-header {
	padding: 20px 22px 16px;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-shrink: 0;
}
.drawer-header h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: 22px;
	font-weight: 500;
}
.close-btn {
	background: none;
	border: 1px solid var(--border);
	width: 30px;
	height: 30px;
	border-radius: 7px;
	font-size: 18px;
	cursor: pointer;
	color: var(--ink-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition: all 0.15s;
}
.close-btn:hover {
	background: var(--border-light);
	color: var(--ink);
}

/* ── CART BODY ── */
.cart-body {
	flex: 1;
	overflow-y: auto;
	padding: 16px 22px;
	scrollbar-width: thin;
	scrollbar-color: var(--border) transparent;
}
.cart-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	gap: 10px;
	color: var(--ink-muted);
}
.empty-icon {
	font-size: 2rem;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--border-light);
	display: flex;
	align-items: center;
	justify-content: center;
}
.cart-empty p {
	font-size: 13px;
}

/* Summary box */
.summary-box {
	background: var(--accent-light);
	border: 1px solid var(--accent);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 14px;
}
.sum-row {
	display: flex;
	justify-content: space-between;
	padding: 9px 14px;
	font-size: 12px;
	border-bottom: 1px solid rgba(196, 168, 130, 0.25);
}
.sum-row:last-child {
	border-bottom: none;
}
.s-label {
	color: var(--accent-dark);
	font-weight: 500;
}
.s-val {
	color: var(--ink);
	font-weight: 600;
}
.sum-row.total-row {
	background: var(--ink);
}
.sum-row.total-row .s-label {
	color: rgba(255, 255, 255, 0.65);
}
.sum-row.total-row .s-val {
	color: #fff;
	font-size: 13px;
}

/* Cart items */
.cart-items-section {
	margin-bottom: 16px;
}
.cart-items-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: var(--ink-muted);
	margin-bottom: 8px;
}
.cart-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 11px 0;
	border-bottom: 1px solid var(--border-light);
	animation: slideIn 0.25s ease;
}
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(8px);
	}
}
.ci-info {
	flex: 1;
	min-width: 0;
}
.ci-name {
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 3px;
	line-height: 1.35;
}
.ci-price {
	font-size: 11px;
	color: var(--ink-muted);
}
.ci-controls {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}
.ci-btn {
	width: 26px;
	height: 26px;
	border-radius: 6px;
	border: 1px solid var(--border);
	background: transparent;
	cursor: pointer;
	font-size: 14px;
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.1s;
}
.ci-btn:hover {
	background: var(--border-light);
}
.ci-qty {
	font-size: 13px;
	font-weight: 500;
	min-width: 18px;
	text-align: center;
}

/* Add more */
.add-more-section {
	margin-top: 4px;
	margin-bottom: 4px;
}
.add-more-label {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: var(--ink-muted);
	margin-bottom: 10px;
}
.add-more-slider {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 6px;
	scrollbar-width: none;
}
.add-more-slider::-webkit-scrollbar {
	display: none;
}
.add-more-card {
	flex-shrink: 0;
	width: 128px;
	background: var(--cream);
	border: 1px solid var(--border);
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	transition: border-color 0.15s;
}
.add-more-card:hover {
	border-color: var(--accent);
}
.add-more-img {
	width: 100%;
	height: 64px;
	background: var(--accent-light);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}
.add-more-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.add-more-body {
	padding: 7px 9px 9px;
}
.add-more-name {
	font-size: 11px;
	font-weight: 500;
	color: var(--ink);
	margin-bottom: 5px;
	line-height: 1.3;
}
.add-more-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.add-more-price {
	font-size: 10px;
	color: var(--ink-soft);
}
.add-more-btn {
	width: 22px;
	height: 22px;
	border-radius: 5px;
	background: var(--ink);
	color: #fff;
	border: none;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Cart footer */
.cart-footer {
	padding: 14px 22px 22px;
	border-top: 1px solid var(--border);
	background: var(--warm-white);
	flex-shrink: 0;
}
.customer-form {
	background: var(--cream);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 14px 16px;
	margin-bottom: 12px;
}
.cf-title {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	color: var(--ink-muted);
	margin-bottom: 12px;
}
.cf-field {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 10px;
}
.cf-field:last-child {
	margin-bottom: 0;
}
.cf-label {
	font-size: 11px;
	color: var(--ink-soft);
	font-weight: 500;
}
.cf-label .req {
	color: var(--danger);
}
.cf-input {
	padding: 8px 12px;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	color: var(--ink);
	background: var(--warm-white);
	outline: none;
	transition: border-color 0.15s;
	width: 100%;
}
.cf-input:focus {
	border-color: var(--accent);
}
.cf-input::placeholder {
	color: var(--ink-muted);
}
.note-wrap {
	margin-bottom: 12px;
}
.note-wrap label {
	font-size: 11px;
	color: var(--ink-soft);
	font-weight: 500;
	display: block;
	margin-bottom: 5px;
}
.note-input {
	width: 100%;
	padding: 9px 12px;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	color: var(--ink);
	resize: none;
	background: var(--cream);
	outline: none;
	transition: border-color 0.15s;
	height: 68px;
}
.note-input:focus {
	border-color: var(--accent);
}
.note-input::placeholder {
	color: var(--ink-muted);
}
.checkout-btn {
	width: 100%;
	padding: 14px;
	background: var(--ink);
	color: #fff;
	border: none;
	border-radius: 11px;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: opacity 0.15s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.checkout-btn:hover:not(:disabled) {
	opacity: 0.85;
}
.checkout-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

/* Side nav */
.side-nav {
	padding: 10px 0;
}
.side-nav-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 20px;
	font-size: 14px;
	color: var(--ink-soft);
	cursor: pointer;
	transition: all 0.15s;
	border-left: 2px solid transparent;
}
.side-nav-item:hover {
	color: var(--ink);
	background: var(--border-light);
}
.side-nav-item.active {
	color: var(--ink);
	border-left-color: var(--accent-dark);
	background: var(--accent-light);
	font-weight: 500;
}
.side-nav-item svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.page-section {
	display: none;
}
.page-section.active {
	display: block;
}

/* Info page */
.info-page {
	padding: 2rem 1.5rem 8rem;
	max-width: 620px;
	margin: 0 auto;
}
.info-page h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 1rem;
	color: var(--ink);
}
.info-page p {
	font-size: 13px;
	color: var(--ink-soft);
	line-height: 1.8;
	margin-bottom: 1rem;
}
.info-card {
	background: var(--warm-white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px 18px;
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
	gap: 13px;
}
.ic-icon {
	width: 38px;
	height: 38px;
	border-radius: 9px;
	background: var(--accent-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	flex-shrink: 0;
}
.ic-label {
	font-size: 11px;
	color: var(--ink-muted);
	margin-bottom: 3px;
}
.ic-value {
	font-size: 14px;
	font-weight: 500;
	color: var(--ink);
}
.ic-value a {
	color: var(--accent-dark);
	text-decoration: none;
}
.ic-value a:hover {
	text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
	.hero h1 {
		font-size: 26px;
	}
	.menu-grid {
		grid-template-columns: 1fr 1fr;
	}
	#cartDrawer {
		max-width: 100%;
	}
	#sideDrawer {
		width: 240px;
	}
}
@media (max-width: 420px) {
	.menu-grid {
		grid-template-columns: 1fr 1fr;
	}
	.lang-btn span.lang-text {
		display: none;
	}
	.cart-bar {
		bottom: 14px;
	}
}
@media (min-width: 900px) {
	.menu-grid {
		grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	}
}
