/*
Theme Name: Mokha & Minas
Theme URI: https://lightblue-woodcock-203708.hostingersite.com
Author: Mokha & Minas
Description: A premium bilingual (English / Türkçe) coffee-roastery theme for an Istanbul specialty coffee shop pouring single-origin coffee from Yemen (Mokha) and Brazil (Minas Gerais). WooCommerce-ready with a built-in EN/TR language toggle.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mokha-minas
Tags: coffee, restaurant, ecommerce, woocommerce, bilingual, custom-colors, full-width-template
*/

/* =========================================================================
   Tokens — Bosphorus at night: petrol teal, copper cezve brass, porcelain.
   ====================================================================== */
:root {
	--night:      #0E1E24;
	--night-2:    #0A171C;
	--deep:       #143038;
	--deep-2:     #1B3E47;
	--brass:      #C9A25A;
	--brass-lite: #E4C486;
	--brass-deep: #A67C3D;
	--iznik:      #B5443A; /* İznik red — rare accent only */
	--porcelain:  #F3EEE4;
	--porcelain-2:#E7DFCE;
	--muted:      #93A9AD;
	--muted-2:    #6B8388;
	--line:       rgba(201,162,90,.22);
	--line-soft:  rgba(243,238,228,.10);

	--display: "Fraunces", Georgia, "Times New Roman", serif;
	--body:    "DM Sans", system-ui, -apple-system, Segoe UI, sans-serif;
	--mono:    "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

	--maxw: 1200px;
	--gutter: clamp(1.25rem, 5vw, 4rem);
	--radius: 2px;
	--ease: cubic-bezier(.2, .7, .2, 1);
}

/* =========================================================================
   Base
   ====================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	background: var(--night);
	color: var(--porcelain);
	font-family: var(--body);
	font-size: 1.0625rem;
	line-height: 1.65;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

/* Subtle grain so the dark fields never read as flat digital black. */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: .04;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a { color: var(--brass-lite); text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.02; margin: 0; letter-spacing: -.01em; }

::selection { background: var(--brass); color: var(--night); }

:focus-visible { outline: 2px solid var(--brass-lite); outline-offset: 3px; }

.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 100;
	background: var(--brass); color: var(--night); padding: .75rem 1.25rem;
	font-family: var(--mono); font-size: .8rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 1; }

.eyebrow {
	font-family: var(--mono);
	font-size: .72rem;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--brass);
	margin: 0 0 1.4rem;
	display: inline-flex;
	align-items: center;
	gap: .7rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--brass); opacity: .7; }

.lede { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.7; max-width: 46ch; }

/* =========================================================================
   Buttons
   ====================================================================== */
.btn {
	display: inline-flex; align-items: center; gap: .6rem;
	font-family: var(--mono); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
	padding: 1rem 1.6rem; border-radius: var(--radius);
	border: 1px solid var(--brass); background: var(--brass); color: var(--night);
	cursor: pointer; transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
	will-change: transform;
}
.btn:hover { background: var(--brass-lite); border-color: var(--brass-lite); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(201,162,90,.6); }
.btn .arw { transition: transform .35s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn--ghost { background: transparent; color: var(--porcelain); border-color: var(--line); }
.btn--ghost:hover { background: transparent; color: var(--brass-lite); border-color: var(--brass); box-shadow: none; transform: translateY(-2px); }

/* =========================================================================
   Header
   ====================================================================== */
.site-header {
	position: sticky; top: 0; z-index: 50;
	backdrop-filter: saturate(140%) blur(10px);
	background: color-mix(in srgb, var(--night) 82%, transparent);
	border-bottom: 1px solid var(--line-soft);
	transition: background .4s var(--ease), border-color .4s var(--ease);
}
.site-header.is-scrolled { background: color-mix(in srgb, var(--night-2) 92%, transparent); border-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 76px; }

.brand { display: flex; align-items: baseline; gap: .5ch; font-family: var(--display); font-size: 1.35rem; letter-spacing: -.01em; color: var(--porcelain); white-space: nowrap; }
.brand .amp { color: var(--brass); font-style: italic; }
.brand:hover { color: var(--porcelain); }

.primary-nav { margin-left: auto; }
.primary-nav ul { list-style: none; display: flex; gap: 2rem; margin: 0; padding: 0; }
.primary-nav a { color: var(--porcelain); font-size: .82rem; font-family: var(--mono); letter-spacing: .06em; text-transform: uppercase; position: relative; padding: .3rem 0; }
.primary-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--brass); transition: width .35s var(--ease); }
.primary-nav a:hover { color: var(--brass-lite); }
.primary-nav a:hover::after { width: 100%; }

.header-tools { display: flex; align-items: center; gap: 1rem; }

.lang-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: 100px; padding: 2px; font-family: var(--mono); }
.lang-toggle a { padding: .3rem .7rem; font-size: .72rem; letter-spacing: .08em; border-radius: 100px; color: var(--muted); transition: color .3s, background .3s; }
.lang-toggle a.is-active { background: var(--brass); color: var(--night); }

.cart-link { position: relative; color: var(--porcelain); display: inline-flex; align-items: center; }
.cart-link:hover { color: var(--brass-lite); }
.cart-count { position: absolute; top: -8px; right: -10px; background: var(--iznik); color: #fff; font-family: var(--mono); font-size: .62rem; min-width: 16px; height: 16px; border-radius: 100px; display: grid; place-items: center; padding: 0 4px; }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); color: var(--porcelain); width: 42px; height: 42px; border-radius: var(--radius); cursor: pointer; }

/* =========================================================================
   Hero
   ====================================================================== */
.hero {
	position: relative;
	min-height: 92vh;
	display: flex; align-items: center;
	padding: 8rem 0 4rem;
	overflow: hidden;
	background:
		radial-gradient(120% 90% at 85% 10%, rgba(201,162,90,.16), transparent 55%),
		radial-gradient(100% 80% at 0% 100%, rgba(27,62,71,.9), transparent 60%),
		linear-gradient(180deg, var(--night-2), var(--night) 60%, var(--deep));
}
/* The brass meridian — the Bosphorus line dividing two continents. */
.hero::after {
	content: "";
	position: absolute; top: 0; bottom: 0; left: 62%;
	width: 1px;
	background: linear-gradient(180deg, transparent, var(--brass) 30%, var(--brass) 70%, transparent);
	opacity: .5;
}
@media (max-width: 900px) { .hero::after { display: none; } }

.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; width: 100%; }

.hero-title {
	font-size: clamp(3rem, 8.5vw, 6.5rem);
	line-height: .98;
	letter-spacing: -.025em;
	margin: .2rem 0 1.8rem;
}
.hero-title .accent { font-style: italic; color: var(--brass-lite); }

.hero-lede { max-width: 40ch; margin-bottom: 2.4rem; }
.hero-lede em { color: var(--porcelain); font-style: italic; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Right-side "cezve" plate — a copper coffee vignette rendered in CSS. */
.hero-plate { position: relative; aspect-ratio: 3/4; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: linear-gradient(160deg, var(--deep-2), var(--night-2)); }
.hero-plate img { width: 100%; height: 100%; object-fit: cover; opacity: .92; filter: saturate(.9) contrast(1.02); }
.hero-plate::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,23,28,.75)); }
.hero-plate figcaption {
	position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
	font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
	color: var(--porcelain-2); background: rgba(10,23,28,.55); border: 1px solid var(--line);
	padding: .4rem .7rem; backdrop-filter: blur(4px);
}
.hero-scroll { position: absolute; bottom: 1.5rem; left: var(--gutter); font-family: var(--mono); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); display: flex; align-items: center; gap: .6rem; z-index: 2; }
.hero-scroll span { width: 34px; height: 1px; background: var(--muted-2); position: relative; overflow: hidden; }
.hero-scroll span::after { content: ""; position: absolute; inset: 0; background: var(--brass); animation: scrolldash 2.4s var(--ease) infinite; }
@keyframes scrolldash { 0% { transform: translateX(-100%); } 60%,100% { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll span::after { animation: none; } }

/* =========================================================================
   Section shell
   ====================================================================== */
.section { padding: clamp(4.5rem, 10vw, 8rem) 0; position: relative; }
.section--deep { background: var(--deep); }
.section--night2 { background: var(--night-2); }
.section-head { max-width: 60ch; margin-bottom: 3.5rem; }
.section-title { font-size: clamp(2.1rem, 5vw, 3.6rem); margin-bottom: 1.3rem; }
.section-title em { font-style: italic; color: var(--brass-lite); }

/* =========================================================================
   Origins — the signature: two roastery spec cards + brass meridian
   ====================================================================== */
.origins-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; }
.origin-card { padding: clamp(1.75rem, 3vw, 2.75rem); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(20,48,56,.5), rgba(10,23,28,.4)); position: relative; }
.origin-card--yem { border-right: none; }
.origin-card--bra { border-left: none; }
@media (max-width: 820px) { .origin-card--yem, .origin-card--bra { border: 1px solid var(--line); } }

.origin-meridian { width: 1px; background: linear-gradient(180deg, transparent, var(--brass), transparent); position: relative; }
.origin-meridian::after { content: "•"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: var(--brass); background: var(--deep); padding: .4rem; font-size: 1rem; }

.origin-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.75rem; }
.origin-flag { font-family: var(--mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass); }
.origin-name { font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; }
.origin-name em { font-style: italic; }
.origin-sub { font-family: var(--mono); font-size: .74rem; letter-spacing: .06em; color: var(--muted); margin-top: .5rem; }
.origin-story { color: var(--muted); font-size: .98rem; margin: 1.5rem 0 1.75rem; max-width: 40ch; }

.spec-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-soft); }
.spec-list li { display: grid; grid-template-columns: 9rem 1fr; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line-soft); align-items: baseline; }
.spec-key { font-family: var(--mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }
.spec-val { font-family: var(--body); font-size: .98rem; color: var(--porcelain); }
.spec-val--notes { color: var(--brass-lite); }

/* =========================================================================
   Menu / counter
   ====================================================================== */
.menu-block + .menu-block { margin-top: 3.5rem; }
.menu-cat { font-family: var(--mono); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem; }
.menu-cat::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.menu-item { background: var(--night); padding: 1.6rem 1.75rem; display: flex; flex-direction: column; gap: .5rem; transition: background .35s var(--ease); position: relative; }
.menu-item:hover { background: var(--deep); }
.menu-item-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.menu-item-name { font-family: var(--display); font-size: 1.3rem; }
.menu-item-price { font-family: var(--mono); font-size: .95rem; color: var(--brass-lite); white-space: nowrap; }
.menu-item-desc { color: var(--muted); font-size: .92rem; line-height: 1.55; }
.menu-item-cta { margin-top: auto; padding-top: 1rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); display: inline-flex; align-items: center; gap: .5rem; opacity: 0; transform: translateY(4px); transition: opacity .3s, transform .3s; }
.menu-item:hover .menu-item-cta, .menu-item:focus-within .menu-item-cta { opacity: 1; transform: none; }
.origin-tag { position: absolute; top: 1.6rem; right: 1.75rem; width: 8px; height: 8px; border-radius: 50%; }
.origin-tag--yem { background: var(--iznik); }
.origin-tag--bra { background: var(--brass); }
.origin-tag--mix { background: linear-gradient(90deg, var(--iznik) 50%, var(--brass) 50%); }

/* =========================================================================
   Craft — stats
   ====================================================================== */
.craft-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.craft-stats { display: grid; gap: 0; border-top: 1px solid var(--line); margin-top: 2.5rem; }
.craft-stat { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: baseline; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.craft-stat-n { font-family: var(--display); font-size: clamp(2.5rem, 6vw, 3.75rem); color: var(--brass-lite); line-height: 1; font-variant-numeric: lining-nums; }
.craft-stat-l { color: var(--muted); font-size: .95rem; max-width: 34ch; }
.craft-figure { aspect-ratio: 4/5; border: 1px solid var(--line); overflow: hidden; position: relative; background: linear-gradient(160deg, var(--deep-2), var(--night-2)); }
.craft-figure img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.craft-figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, transparent 50%, rgba(10,23,28,.6)); }

/* =========================================================================
   Visit
   ====================================================================== */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.visit-addr { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.25; white-space: pre-line; margin: 0 0 2rem; }
.visit-meta { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-bottom: 2.25rem; }
.visit-meta-k { font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: .4rem; }
.visit-meta-v { font-size: 1rem; }
.visit-map { aspect-ratio: 1/1; border: 1px solid var(--line); position: relative; overflow: hidden; background:
	repeating-linear-gradient(90deg, transparent, transparent 39px, var(--line-soft) 40px),
	repeating-linear-gradient(0deg, transparent, transparent 39px, var(--line-soft) 40px),
	radial-gradient(120% 100% at 30% 20%, var(--deep-2), var(--night-2)); }
.visit-map .pin { position: absolute; top: 44%; left: 52%; width: 14px; height: 14px; border-radius: 50%; background: var(--iznik); box-shadow: 0 0 0 6px rgba(181,68,58,.25); }
.visit-map .strait { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 45%, rgba(27,62,71,.85) 46%, rgba(27,62,71,.85) 60%, transparent 61%); }
.visit-map .label { position: absolute; bottom: 1rem; left: 1rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* =========================================================================
   Order band
   ====================================================================== */
.order-band { position: relative; text-align: center; padding: clamp(4.5rem, 10vw, 7.5rem) 0; overflow: hidden; background:
	radial-gradient(90% 120% at 50% 0%, rgba(201,162,90,.18), transparent 60%), var(--night-2); }
.order-band .section-title { margin-inline: auto; }
.order-lede { color: var(--muted); max-width: 44ch; margin: 1.25rem auto 2.5rem; }
.order-pay { margin-top: 1.5rem; font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); display: inline-flex; align-items: center; gap: .6rem; }
.order-pay svg { color: var(--brass); }

/* =========================================================================
   Footer
   ====================================================================== */
.site-footer { background: var(--night-2); border-top: 1px solid var(--line); padding: clamp(3.5rem, 7vw, 5rem) 0 2.5rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-soft); }
.footer-brand { font-family: var(--display); font-size: 2rem; margin-bottom: 1rem; }
.footer-brand .amp { color: var(--brass); font-style: italic; }
.footer-tag { color: var(--muted); font-style: italic; font-family: var(--display); font-size: 1.05rem; max-width: 26ch; }
.footer-col h4 { font-family: var(--mono); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer-col a { color: var(--muted); font-size: .95rem; }
.footer-col a:hover { color: var(--porcelain); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-top: 2rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; color: var(--muted-2); }

/* =========================================================================
   Reveal-on-scroll
   ====================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================================================
   Generic content (pages, posts, WooCommerce fallbacks)
   ====================================================================== */
.page-shell { padding: clamp(6rem, 12vw, 9rem) 0 6rem; min-height: 60vh; }
.entry-title { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1.5rem; }
.entry-content { max-width: 68ch; }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.entry-content h2, .entry-content h3 { margin: 2rem 0 1rem; }
.entry-content p, .entry-content ul, .entry-content ol { margin: 0 0 1.25rem; color: var(--porcelain-2); }

.error-404 { text-align: center; padding: clamp(7rem, 15vw, 11rem) 0; }
.error-404 .glyph { font-family: var(--display); font-size: clamp(5rem, 18vw, 10rem); color: var(--brass); font-style: italic; line-height: 1; }

/* WooCommerce brass buttons, kept light-touch. */
.woocommerce a.button, .woocommerce button.button, .woocommerce .button, .woocommerce #respond input#submit {
	background: var(--brass) !important; color: var(--night) !important; border-radius: var(--radius) !important;
	font-family: var(--mono) !important; text-transform: uppercase !important; letter-spacing: .08em !important; font-size: .8rem !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--brass-lite) !important; }
.woocommerce span.price, .woocommerce div.product p.price { color: var(--brass-lite) !important; font-family: var(--mono) !important; }

/* Bundled product artwork (inline SVG, always renders) */
.mm-product-img { display: block; width: 100%; aspect-ratio: 6 / 7; margin: 0 0 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--night-2); overflow: hidden; }
.mm-product-img svg { display: block; width: 100%; height: 100%; }
.woocommerce ul.products li.product a .mm-product-img { margin: 0 0 1rem; }
.mm-product-img--single { max-width: 440px; margin-bottom: 1.5rem; }
.woocommerce div.product .mm-product-img--single { float: none; }
.mm-product-img--cart { width: 72px; margin: 0; }
.woocommerce td.product-thumbnail .mm-product-img--cart { width: 72px; }

/* =========================================================================
   Slide-in cart drawer
   ====================================================================== */
.mm-cart-count { position: absolute; top: -8px; right: -10px; background: var(--iznik); color: #fff; font-family: var(--mono); font-size: .62rem; min-width: 16px; height: 16px; border-radius: 100px; display: none; place-items: center; padding: 0 4px; }
.mm-cart-count.is-visible { display: grid; }

.mm-drawer-overlay { position: fixed; inset: 0; background: rgba(10,23,28,.62); backdrop-filter: blur(3px); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .35s var(--ease); }
body.mm-drawer-open .mm-drawer-overlay { opacity: 1; pointer-events: auto; }

.mm-drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw); background: var(--night-2); border-left: 1px solid var(--line); z-index: 100; transform: translateX(101%); transition: transform .42s var(--ease); display: flex; flex-direction: column; box-shadow: -30px 0 60px -30px rgba(0,0,0,.6); }
body.mm-drawer-open .mm-drawer { transform: none; }
@media (prefers-reduced-motion: reduce) { .mm-drawer, .mm-drawer-overlay { transition: none; } }

.mm-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--line); }
.mm-drawer-heading { font-family: var(--mono); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); }
.mm-drawer-close { background: none; border: 1px solid var(--line); color: var(--porcelain); width: 34px; height: 34px; border-radius: var(--radius); font-size: 1.2rem; line-height: 1; cursor: pointer; transition: color .3s, border-color .3s; }
.mm-drawer-close:hover { color: var(--brass-lite); border-color: var(--brass); }

.mm-drawer-body { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-height: 0; }
.mm-drawer-items { list-style: none; margin: 0; padding: .25rem 0; overflow-y: auto; flex: 1; }
.mm-drawer-item { display: grid; grid-template-columns: 54px 1fr auto; gap: 1rem; align-items: center; padding: 1rem 1.5rem; border-bottom: 1px solid var(--line-soft); }
.mm-drawer-thumb { width: 54px; }
.mm-drawer-thumb .mm-product-img { width: 54px; aspect-ratio: 6/7; margin: 0; }
.mm-drawer-thumb img { width: 54px; height: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.mm-drawer-info { display: flex; flex-direction: column; gap: .25rem; min-width: 0; }
.mm-drawer-name { font-family: var(--display); font-size: 1.05rem; color: var(--porcelain); }
.mm-drawer-qty { font-family: var(--mono); font-size: .78rem; color: var(--muted); }
.mm-drawer-remove { color: var(--muted-2); font-size: 1.2rem; line-height: 1; text-decoration: none; padding: .25rem; transition: color .3s; }
.mm-drawer-remove:hover { color: var(--iznik); }

.mm-drawer-foot { border-top: 1px solid var(--line); padding: 1.5rem; }
.mm-drawer-subtotal { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.25rem; }
.mm-drawer-subtotal span { font-family: var(--mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.mm-drawer-subtotal strong { font-family: var(--display); font-size: 1.5rem; color: var(--brass-lite); font-weight: 400; }
.mm-drawer-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.mm-drawer-actions .btn { justify-content: center; padding: .9rem 1rem; }

.mm-drawer-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; padding: 2rem; text-align: center; color: var(--muted); }
.mm-drawer-empty-mark { font-family: var(--display); font-style: italic; font-size: 3rem; color: var(--brass); }

/* =========================================================================
   Responsive
   ====================================================================== */
@media (max-width: 980px) {
	.hero-grid { grid-template-columns: 1fr; }
	.hero-plate { display: none; }
	.craft-grid, .visit-grid { grid-template-columns: 1fr; }
	.footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
	.origins-grid { grid-template-columns: 1fr; gap: 1.25rem; }
	.origin-meridian { display: none; }
	.craft-grid .craft-figure, .visit-grid .visit-map { order: -1; }
}
@media (max-width: 760px) {
	.primary-nav, .lang-toggle { display: none; }
	.nav-toggle { display: inline-grid; place-items: center; }
	.header-inner { height: 66px; }
	.mobile-open .primary-nav { display: block; position: absolute; top: 66px; left: 0; right: 0; background: var(--night-2); border-bottom: 1px solid var(--line); padding: 1.5rem var(--gutter); }
	.mobile-open .primary-nav ul { flex-direction: column; gap: 1.25rem; }
	.mobile-open .lang-toggle { display: inline-flex; position: absolute; top: calc(66px + 1.5rem + 0px); }
	.footer-top { grid-template-columns: 1fr; gap: 2rem; }
	.spec-list li { grid-template-columns: 7rem 1fr; }
}
