:root {
  --ink: #17130f; --muted: #72695f; --paper: #f7f3ec; --card: #fffdf8;
  --accent: #d93926; --accent-dark: #a91f14; --gold: #f4b83f; --line: #e7ddd0;
  --shadow: 0 18px 50px rgba(55, 37, 22, .12); --radius: 24px;
  color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; min-width: 320px; color: var(--ink); background: radial-gradient(circle at 80% -10%, #ffd38a 0, transparent 32rem), var(--paper); font: 16px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
button, input { font: inherit; }
button { cursor: pointer; }
button:focus-visible, input:focus-visible, a:focus-visible { outline: 3px solid #1d6fbd; outline-offset: 3px; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 20; padding: .75rem 1rem; color: white; background: var(--ink); border-radius: 10px; }
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.topbar { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; min-height: 76px; padding: 12px clamp(18px, 5vw, 72px); background: color-mix(in srgb, var(--paper) 88%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--line) 75%, transparent); backdrop-filter: blur(18px); }
.brand { display: flex; gap: 12px; align-items: center; color: inherit; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 46px; aspect-ratio: 1; color: #fff; background: var(--accent); border-radius: 16px 16px 16px 5px; font-weight: 900; font-size: 1.4rem; transform: rotate(-3deg); }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1.05rem; letter-spacing: -.02em; }
.brand small { color: var(--muted); font-size: .76rem; }
.cart-button, .primary, .add-button { border: 0; color: #fff; background: var(--accent); font-weight: 800; border-radius: 999px; box-shadow: 0 8px 20px rgba(217,57,38,.22); }
.cart-button { padding: .7rem .85rem .7rem 1.1rem; }
.cart-button span { display: inline-grid; place-items: center; min-width: 26px; height: 26px; margin-left: .4rem; color: var(--accent); background: #fff; border-radius: 50%; }
main { width: min(1180px, calc(100% - 36px)); margin: 0 auto 100px; }
.hero { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 32px; padding: clamp(54px, 9vw, 110px) 0 44px; }
.hero-copy { max-width: 760px; }
.eyebrow { margin: 0 0 8px; color: var(--accent); font-size: .74rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h1 { max-width: 13ch; margin: 0; font-size: clamp(2.45rem, 7.2vw, 6.6rem); line-height: .92; letter-spacing: -.065em; }
.hero-copy > p:last-child { max-width: 50ch; margin: 26px 0 0; color: var(--muted); font-size: clamp(1rem, 2vw, 1.25rem); }
.hero-badge { padding: .72rem 1rem; background: rgba(255,255,255,.68); border: 1px solid var(--line); border-radius: 999px; font-size: .83rem; font-weight: 700; white-space: nowrap; }
.hero-badge span { display: inline-block; width: 9px; height: 9px; margin-right: 8px; background: #35a854; border-radius: 50%; box-shadow: 0 0 0 5px rgba(53,168,84,.13); }
.tools { position: sticky; top: 76px; z-index: 8; padding: 16px 0 14px; background: color-mix(in srgb, var(--paper) 92%, transparent); backdrop-filter: blur(16px); }
.search { display: flex; align-items: center; gap: 10px; padding: 0 16px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 8px 30px rgba(55,37,22,.06); }
.search svg { width: 21px; fill: none; stroke: var(--muted); stroke-width: 1.8; }
.search input { width: 100%; min-height: 52px; border: 0; outline: 0; background: transparent; }
.categories { display: flex; gap: 8px; padding-top: 12px; overflow-x: auto; scrollbar-width: none; }
.categories button { flex: 0 0 auto; padding: .58rem .95rem; color: var(--muted); background: transparent; border: 1px solid var(--line); border-radius: 999px; }
.categories button.active { color: #fff; background: var(--ink); border-color: var(--ink); }
.menu { container-type: inline-size; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding-top: 18px; }
.product-card { display: grid; grid-template-columns: minmax(150px, 42%) 1fr; min-height: 240px; overflow: hidden; background: var(--card); border: 1px solid rgba(231,221,208,.85); border-radius: var(--radius); box-shadow: 0 10px 35px rgba(55,37,22,.07); transition: transform .22s ease, box-shadow .22s ease; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-media { display: grid; place-items: center; min-height: 220px; overflow: hidden; color: rgba(255,255,255,.88); background: linear-gradient(145deg, var(--accent), #7e150f 55%, #32100d); font-size: 5rem; font-weight: 950; }
.product-media picture { width: 100%; height: 100%; }
.product-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover img { transform: scale(1.035); }
.product-copy { display: flex; flex-direction: column; min-width: 0; padding: clamp(18px, 3vw, 28px); }
.product-copy .tag { align-self: flex-start; color: var(--accent); font-size: .69rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.product-copy h3 { margin: 9px 0 6px; font-size: clamp(1.15rem, 2.2vw, 1.55rem); line-height: 1.08; letter-spacing: -.03em; }
.product-copy p { display: -webkit-box; margin: 0; overflow: hidden; color: var(--muted); font-size: .9rem; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.product-copy footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 18px; }
.product-copy footer strong { font-size: 1.08rem; }
.add-button { min-height: 40px; padding: .55rem .85rem; }
.add-button:disabled { cursor: not-allowed; opacity: .45; }
.skeleton { min-height: 240px; border-radius: var(--radius); background: linear-gradient(100deg,#eee6da 30%,#fffaf2 48%,#eee6da 66%); background-size: 300% 100%; animation: shimmer 1.4s infinite; }
.empty { grid-column: 1/-1; padding: 48px; text-align: center; color: var(--muted); }
.cart { position: fixed; inset: 0 0 0 auto; z-index: 30; display: flex; flex-direction: column; width: min(430px, 100%); padding: 28px; background: var(--card); box-shadow: -30px 0 70px rgba(23,19,15,.18); transform: translateX(105%); transition: transform .28s ease; }
.cart[aria-hidden="false"] { transform: translateX(0); }
.cart-head, .cart-summary > div, .cart-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.cart-head h2 { margin: 0; font-size: 2rem; }
.icon-button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.7rem; }
.cart-items { display: grid; align-content: start; gap: 12px; flex: 1; padding: 28px 0; overflow-y: auto; color: var(--muted); }
.cart-row { padding: 14px 0; color: var(--ink); border-bottom: 1px solid var(--line); }
.cart-summary { display: grid; gap: 16px; padding-top: 20px; border-top: 1px solid var(--line); }
.cart-summary strong { font-size: 1.35rem; }
.primary, .secondary { min-height: 48px; padding: .75rem 1.2rem; border-radius: 999px; font-weight: 800; }
.primary:disabled { opacity: .45; cursor: not-allowed; }
.secondary { color: var(--ink); background: transparent; border: 1px solid var(--line); }
.overlay { position: fixed; inset: 0; z-index: 29; background: rgba(23,19,15,.48); backdrop-filter: blur(4px); }
.consent { width: min(560px, calc(100% - 30px)); padding: clamp(24px, 5vw, 38px); background: var(--card); border: 0; border-radius: 26px; box-shadow: var(--shadow); }
.consent::backdrop { background: rgba(23,19,15,.62); backdrop-filter: blur(5px); }
.consent h2 { margin: 0; font-size: 1.7rem; letter-spacing: -.035em; }
.consent p { color: var(--muted); }
.consent > div { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; }
@keyframes shimmer { to { background-position: -150% 0; } }
@container (max-width: 520px) { .product-card { grid-template-columns: 38% 1fr; min-height: 190px; } .product-media { min-height: 190px; } }
@media (max-width: 820px) { .menu { grid-template-columns: 1fr; } .hero { grid-template-columns: 1fr; } .hero-badge { justify-self: start; } }
@media (max-width: 520px) { .topbar { min-height: 68px; padding-inline: 16px; } .tools { top: 68px; } main { width: min(100% - 24px, 1180px); } .hero { padding-top: 42px; } h1 { font-size: clamp(2.55rem, 15vw, 4rem); } .product-card { border-radius: 19px; } .product-copy { padding: 16px; } .product-copy p { -webkit-line-clamp: 2; } .add-button { width: 40px; overflow: hidden; color: transparent; } .add-button::after { content: '+'; display: block; color: #fff; font-size: 1.35rem; } .consent > div { display: grid; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }
