/* ==========================================================================
   Kazze — מגשי אירוח / Catering
   Premium bilingual (He RTL / En LTR) catering site. Vanilla CSS.
   Brand: cream base, espresso ink, olive accent, real Kazze pattern texture.
   ========================================================================== */

:root {
  --cream:      #FFFDF8;
  --cream-2:    #FBF7EF;
  --cream-3:    #F7F3EA;
  --card:       #ffffff;
  --chip:       #F4F0E6;
  --row-hover:  #FAF7F0;

  --border:     #ECE8DE;
  --border-2:   #DCD6C8;
  --border-3:   #F0ECE2;

  --ink:        #1E1A15;
  --ink-2:      #3A352D;
  --sub:        #5A5247;
  --muted:      #6E665B;
  --muted-2:    #9A9184;

  --olive:      #54663B;
  --olive-dk:   #3B4A2A;
  --olive-tint: #E8EDDB;
  --olive-ink:  #4A5730;
  --espresso:   #241C15;
  --espresso-2: #1B1611;
  --espresso-3: #100C08;

  --warn:       #C2933A;
  --danger:     #B4533A;

  --maxw: 1280px;
  --pattern: url("assets/kazze-pattern.png");
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: Heebo, "Assistant", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}
:lang(en) body, [dir="ltr"] body { font-family: "Assistant", Heebo, system-ui, -apple-system, "Segoe UI", sans-serif; }

::selection { background: var(--olive); color: #fff; }
input, textarea, select, button { font-family: inherit; }
input:focus, textarea:focus, select:focus { outline: none; }
img { max-width: 100%; display: block; }
a { color: inherit; }

.kz-x::-webkit-scrollbar { height: 6px; width: 6px; }
.kz-x::-webkit-scrollbar-thumb { background: #E0DACB; border-radius: 99px; }

@keyframes kzpop { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes kzfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes kzfloat2 { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(2deg); } }

.is-hidden { display: none !important; }

/* ---- Brand pattern overlay (real Kazze tile) ---------------------------- */
.kz-pattern {
  position: absolute; inset: 0;
  background-image: var(--pattern);
  background-size: 360px auto;
  background-repeat: repeat;
  mix-blend-mode: multiply;
  opacity: .12;
  pointer-events: none;
}
.kz-pattern.soft { opacity: .06; }
/* light pattern on dark surfaces */
.cta-inner .kz-pattern, .menu-hero .kz-pattern, .admin-login .kz-pattern {
  mix-blend-mode: screen; filter: invert(1); opacity: .08;
}

/* Logo wordmark — lowercase, heavy, tight to echo the Kazze brandmark */
.wordmark, .hero-card-k, .product-media-k, .menu-hero-k, .about-hero-k {
  text-transform: lowercase; font-family: Heebo, system-ui, sans-serif; direction: ltr;
}
.wordmark { font-weight: 900; letter-spacing: -.045em; color: var(--ink); }
.descriptor { font-size: 10.5px; letter-spacing: .16em; color: var(--olive); font-weight: 600; text-transform: lowercase; }
/* Real logo image — dark on light surfaces, auto-whitened on dark ones */
.logo-img { height: 30px; width: auto; display: block; }
.logo-light { filter: brightness(0) invert(1); }
.hero-card-logo { height: 22px; }
.menu-logo { height: clamp(46px, 8vw, 76px); margin: 0 auto; }
.about-logo { height: clamp(48px, 9vw, 84px); margin: 0 auto; }
.login-logo { height: 36px; margin: 0 auto; }
.aside-logo { height: 26px; }
.footer-brand .logo-img { height: 30px; margin-bottom: 10px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header-stack { position: sticky; top: 0; z-index: 50; }
.utility-bar { background: var(--espresso-3); color: #D6D0C4; }
.utility-bar .inner { max-width: var(--maxw); margin: 0 auto; padding: 8px 24px; display: flex; justify-content: flex-end; gap: 26px; font-size: 12.5px; font-weight: 500; }
.utility-bar a { cursor: pointer; transition: color .18s; text-decoration: none; }
.utility-bar a:hover { color: #fff; }

.site-header { background: var(--cream); border-bottom: 1px solid var(--border); }
.site-header .inner { max-width: var(--maxw); margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header-icons { display: flex; align-items: center; gap: 17px; flex-shrink: 0; color: var(--ink); }
.icon-btn { background: none; border: none; cursor: pointer; color: inherit; padding: 0; display: flex; transition: color .18s, transform .18s; }
.icon-btn:hover { color: var(--olive); transform: translateY(-1px); }
.icon-btn.has-badge { position: relative; }
.cart-badge { position: absolute; top: -7px; inset-inline-end: -8px; min-width: 17px; height: 17px; display: flex; align-items: center; justify-content: center; background: var(--olive); color: #fff; border-radius: 999px; font-size: 10.5px; font-weight: 700; padding: 0 4px; }

.lang-btn { background: transparent; border: 1.5px solid var(--border-2); color: var(--ink-2); border-radius: 999px; padding: 5px 12px; font-size: 12.5px; font-weight: 700; cursor: pointer; transition: all .18s; letter-spacing: .02em; }
.lang-btn:hover { border-color: var(--olive); color: var(--olive); }

.main-nav { display: flex; align-items: center; gap: 30px; overflow-x: auto; font-size: 15.5px; font-weight: 500; color: var(--ink); white-space: nowrap; }
.main-nav a { cursor: pointer; transition: color .18s; text-decoration: none; }
.main-nav a:hover { color: var(--olive); }

.brand { display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer; flex-shrink: 0; }
.brand .descriptor { font-size: 9.5px; color: var(--ink); }

.announce { background: var(--cream); border-bottom: 1px solid var(--border); }
.announce .inner { max-width: var(--maxw); margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; font-size: 14px; color: var(--ink-2); }
.announce strong { font-weight: 700; }
.announce a { text-decoration: underline; cursor: pointer; color: var(--olive); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn { font-weight: 600; cursor: pointer; border: none; transition: all .18s; }
.btn-outline-ink { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--ink); border: 1.5px solid var(--ink); border-radius: 4px; padding: 15px 40px; font-size: 16px; }
.btn-outline-ink:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); box-shadow: 0 16px 30px -18px rgba(30,26,21,.7); }
.btn-outline-ink .chev { font-size: 18px; line-height: 1; }
.btn-olive { background: var(--espresso); color: #fff; border-radius: 11px; padding: 12px; font-size: 15px; width: 100%; }
.btn-olive:hover { background: var(--ink-2); }
.btn-espresso { background: var(--espresso); color: var(--cream); border-radius: 12px; }
.btn-espresso:hover { background: var(--espresso-3); }
.btn-cream { background: var(--cream); color: var(--ink); border-radius: 12px; padding: 16px 30px; font-size: 16px; font-weight: 700; }
.btn-cream:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -18px rgba(0,0,0,.4); }
.btn-wa { background: transparent; color: var(--cream); border: 1.5px solid var(--olive); border-radius: 12px; padding: 15px 26px; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background .18s; }
.btn-wa:hover { background: var(--olive); }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-wa { background: #B7C58A; } .dot-wa-green { background: #7BC47F; }
/* Live "online" indicator — blinks like a light to signal a real-time bot */
.chat-head .status .dot-live { background: #6CC04A; animation: chatLive 1.5s ease-in-out infinite; }
@keyframes chatLive { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(108,192,74,.55); } 50% { opacity: .35; box-shadow: 0 0 0 5px rgba(108,192,74,0); } }

.stepper { display: flex; align-items: center; gap: 5px; background: var(--chip); border: 1px solid var(--border); border-radius: 999px; padding: 3px; }
.stepper button { width: 29px; height: 29px; border: none; background: transparent; border-radius: 50%; color: var(--olive); cursor: pointer; line-height: 1; }
.stepper button.minus { font-size: 18px; } .stepper button.plus { font-size: 17px; }
.stepper .qty { min-width: 16px; text-align: center; font-weight: 700; font-size: 14px; }
.stepper-lg { border-radius: 12px; padding: 5px; gap: 8px; }
.stepper-lg button { width: 40px; height: 40px; border-radius: 9px; }
.stepper-lg button.minus { font-size: 22px; } .stepper-lg button.plus { font-size: 21px; }
.stepper-lg .qty { min-width: 26px; font-size: 18px; }

/* ==========================================================================
   HERO (with 3D parallax)
   ========================================================================== */
.hero { background: var(--cream-2); border-bottom: 1px solid var(--border); overflow: hidden; }
.hero .inner { max-width: 1320px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: stretch; min-height: clamp(440px, 58vh, 580px); }
.hero-text { flex: 1 1 380px; min-width: 300px; display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 5vw, 68px); }
.hero-eyebrow { display: inline-block; align-self: flex-start; background: var(--cream); border: 1px solid var(--border); color: var(--olive); font-size: 12.5px; font-weight: 700; letter-spacing: .04em; padding: 7px 14px; border-radius: 999px; margin-bottom: 18px; box-shadow: 0 10px 24px -16px rgba(30,26,21,.5); }
.hero-text h1 { font-weight: 800; font-size: clamp(34px, 5vw, 58px); line-height: 1.07; color: var(--ink); margin: 0; letter-spacing: -.02em; text-wrap: balance; }
.hero-text p { font-size: clamp(16px, 1.9vw, 19px); line-height: 1.6; color: var(--sub); margin: 20px 0 0; max-width: 440px; }
.hero-cta { margin-top: 32px; }
.hero-img { flex: 1.3 1 460px; min-width: 300px; position: relative; overflow: hidden; min-height: 320px; background: linear-gradient(150deg, #F3EAD9, #E6D3B4 60%, #D8BE96); }
.hero-img::before { content: ""; position: absolute; inset: 0; background: radial-gradient(85% 75% at 38% 42%, rgba(255,255,255,.55), transparent 62%); }
.hero-orb { position: absolute; width: 320px; height: 320px; border-radius: 50%; top: 50%; inset-inline-start: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle at 35% 30%, #F6EEDD, #C79A63 70%, #9A7240); box-shadow: 0 40px 80px -30px rgba(120,86,52,.6), inset -20px -24px 60px rgba(120,80,40,.45), inset 18px 18px 50px rgba(255,255,255,.5); }
[dir="ltr"] .hero-orb { transform: translate(50%,-50%); }
.hero-card { position: absolute; bottom: 30px; inset-inline-end: 34px; background: rgba(255,253,248,.92); backdrop-filter: blur(6px); border: 1px solid var(--border); border-radius: 16px; padding: 14px 20px; box-shadow: 0 26px 50px -22px rgba(30,26,21,.55); animation: kzfloat 6s ease-in-out infinite; }
.hero-card-k { font-family: Heebo; font-weight: 800; font-size: 22px; color: var(--ink); direction: ltr; letter-spacing: -.02em; }
.hero-card-d { font-size: 10px; letter-spacing: .2em; color: var(--olive); font-weight: 700; }

/* ---- Full-bleed photographic hero (image covers the whole top) ---------- */
.hero-full { position: relative; overflow: hidden; min-height: clamp(540px, 72vh, 760px); display: flex; align-items: center; background: var(--espresso-2); border-bottom: 1px solid var(--border); }
.hero-bg { position: absolute; inset: -7%; background-size: cover; background-position: center; transform: scale(1.08); will-change: transform; }
.hero-veil { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(20,14,8,.40), rgba(20,14,8,.48) 55%, rgba(20,14,8,.66)),
  radial-gradient(135% 105% at 72% 36%, transparent 34%, rgba(20,14,8,.42)); }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(24px, 5vw, 56px); }
.hero-full .hero-text { flex: none; min-width: 0; max-width: 600px; padding: 0; }
.hero-full .hero-eyebrow { background: rgba(255,253,248,.14); border-color: rgba(255,253,248,.32); color: #FFFDF8; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); box-shadow: 0 12px 26px -18px rgba(0,0,0,.7); }
.hero-full h1 { color: var(--cream); text-shadow: 0 2px 34px rgba(20,14,8,.45); }
.hero-full .hero-text p { color: rgba(255,253,248,.9); text-shadow: 0 1px 18px rgba(20,14,8,.5); }
.btn-hero { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--cream); border: 1.6px solid rgba(255,253,248,.78); border-radius: 4px; padding: 15px 40px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all .18s; }
.btn-hero:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); transform: translateY(-2px); box-shadow: 0 18px 32px -16px rgba(0,0,0,.55); }
.btn-hero .chev { font-size: 18px; line-height: 1; }
.hero-glass { position: absolute; z-index: 3; bottom: clamp(20px, 4vw, 40px); inset-inline-end: clamp(20px, 4vw, 44px); display: flex; flex-direction: column; align-items: center; background: rgba(255,253,248,.13); -webkit-backdrop-filter: blur(13px) saturate(1.25); backdrop-filter: blur(13px) saturate(1.25); border: 1px solid rgba(255,253,248,.3); border-radius: 18px; padding: 15px 22px; box-shadow: 0 32px 64px -28px rgba(0,0,0,.65); }
.hero-glass-logo { height: 24px; display: block; }
.hero-glass .hero-card-d { color: rgba(255,253,248,.85); font-size: 10px; letter-spacing: .2em; font-weight: 600; margin-top: 6px; text-transform: lowercase; text-align: center; text-indent: .2em; }
.gf-badge { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; text-align: center; }
.hero-gf { position: absolute; z-index: 3; top: clamp(16px, 3vw, 28px); inset-inline-end: clamp(20px, 4vw, 44px); width: 74px; height: 74px; gap: 2px; border-radius: 50%; color: #FFFDF8; background: rgba(255,253,248,.13); -webkit-backdrop-filter: blur(13px) saturate(1.25); backdrop-filter: blur(13px) saturate(1.25); border: 1px solid rgba(255,253,248,.3); box-shadow: 0 18px 38px -22px rgba(0,0,0,.6); }
.hero-gf svg { width: 25px; height: 25px; }
.hero-gf span { font-size: 7.5px; letter-spacing: .04em; font-weight: 700; text-transform: uppercase; }
@media (max-width: 560px) { .hero-glass { display: none; } .hero-gf { width: 60px; height: 60px; top: 12px; } .hero-gf svg { width: 20px; height: 20px; } .hero-gf span { font-size: 6.5px; } .hero-full { min-height: clamp(460px, 78vh, 620px); } }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { max-width: var(--maxw); margin: 60px auto 0; padding: 0 24px; }
.section.first { margin-top: 56px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--olive); }
.h2 { font-size: clamp(26px, 3.2vw, 34px); font-weight: 800; color: var(--ink); margin: 0; letter-spacing: -.01em; }
.h2.mt { margin-top: 6px; } .center { text-align: center; }
.see-all { font-size: 15px; font-weight: 600; color: var(--olive); cursor: pointer; }

.grid-products { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 22px; margin-top: 24px; }

/* 3D flip cards (recommended) */
.grid-flip { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.flip-card { height: 360px; perspective: 1300px; outline: none; cursor: pointer; }
.flip-inner { position: relative; width: 100%; height: 100%; transition: transform .55s cubic-bezier(.2,.8,.2,1); transform-style: preserve-3d; }
.flip-card:hover .flip-inner, .flip-card:focus-within .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back { position: absolute; inset: 0; -webkit-backface-visibility: hidden; backface-visibility: hidden; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 18px 38px -24px rgba(30,26,21,.5); display: flex; flex-direction: column; background: var(--card); }
.flip-front .pcard-img { height: 196px; flex-shrink: 0; }
.flip-front-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; justify-content: center; }
.flip-price-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.flip-price-row .price { font-size: 19px; font-weight: 800; color: var(--ink); }
.flip-hint { font-size: 12px; color: var(--muted); font-weight: 600; }
.flip-back { transform: rotateY(180deg); background: var(--espresso); color: var(--cream); }
.flip-back .kz-pattern { opacity: .1; }
.flip-back-inner { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 14px; padding: 26px 24px; text-align: start; }
.flip-back-name { font-size: 20px; font-weight: 800; }
.flip-back-desc { font-size: 14.5px; line-height: 1.6; color: rgba(255,253,248,.86); display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.flip-back .btn { width: 100%; }
@media (hover: none) { .flip-card:hover .flip-inner { transform: none; } }

/* Location map + navigation */
.map-section { margin-bottom: clamp(56px, 7vw, 92px); }
.map-addr { text-align: center; color: var(--sub); font-size: 16px; margin: 0 0 22px; }
.map-wrap { position: relative; max-width: 1000px; margin: 0 auto; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 22px 46px -28px rgba(30,26,21,.5); }
.map-frame { display: block; width: 100%; height: 400px; border: 0; }
/* Nav buttons float, centered, near the bottom of the map */
.map-actions { position: absolute; left: 0; right: 0; bottom: 20px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; padding: 0 14px; z-index: 2; }
.map-btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 26px; border-radius: 999px; font-size: 15px; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .18s, box-shadow .18s, background .18s; box-shadow: 0 12px 28px -10px rgba(0,0,0,.5); }
.map-btn.gmaps { background: var(--espresso); color: var(--cream); }
.map-btn.gmaps:hover { background: var(--ink-2); transform: translateY(-2px); }
.map-btn.waze { background: var(--olive); color: #fff; }
.map-btn.waze:hover { background: var(--olive-dk); transform: translateY(-2px); }
@media (max-width: 560px) { .map-frame { height: 340px; } .map-actions { bottom: 14px; } .map-btn { padding: 11px 20px; font-size: 14px; } }
/* Touch devices: make the map display-only so it doesn't trap page scrolling; buttons stay tappable */
@media (hover: none) { .map-frame { pointer-events: none; } }

/* Popular trays auto-rotating carousel */
.pop-carousel { position: relative; margin-top: 24px; }
.pop-viewport { overflow: hidden; padding: 6px 2px; }
.pop-track { display: flex; gap: 22px; transition: transform .6s cubic-bezier(.4, 0, .2, 1); will-change: transform; }
.pop-track > .pcard { flex: 0 0 calc((100% - 66px) / 4); }
.pop-arrow { position: absolute; top: 42%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 999px; background: var(--card); border: 1px solid var(--border); color: var(--ink); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 12px 26px -14px rgba(30,26,21,.5); z-index: 4; transition: all .15s; }
.pop-arrow:hover { background: var(--espresso); color: #fff; border-color: var(--espresso); }
.pop-prev { inset-inline-start: -12px; }
.pop-next { inset-inline-end: -12px; }
@media (max-width: 980px) { .pop-track > .pcard { flex-basis: calc((100% - 22px) / 2); } }
@media (max-width: 600px) { .pop-track > .pcard { flex-basis: 100%; } .pop-arrow { display: none; } }

/* Product card (3D tilt) */
.pcard { background: var(--card); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; will-change: transform; }
.pcard:hover { box-shadow: 0 26px 50px -26px rgba(30,26,21,.5); }
.pcard-img { cursor: pointer; position: relative; height: 196px; overflow: hidden; }
.pcard-img::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 72% 22%, rgba(255,255,255,.34), transparent 55%); }
.serve-badge { position: absolute; top: 12px; inset-inline-end: 12px; z-index: 2; background: rgba(255,253,248,.94); color: var(--olive); border-radius: 999px; padding: 5px 11px; font-size: 11.5px; font-weight: 700; }
.cat-chip { position: absolute; bottom: 12px; inset-inline-start: 12px; z-index: 2; background: rgba(30,26,21,.62); color: #FFFDF8; border-radius: 999px; padding: 4px 11px; font-size: 11px; font-weight: 600; backdrop-filter: blur(3px); }
.pcard-body { padding: 16px 17px 18px; display: flex; flex-direction: column; flex: 1; }
.pcard-name { cursor: pointer; font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.pcard-desc { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin-top: 5px; min-height: 40px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.tag { background: var(--chip); color: var(--muted); border-radius: 6px; padding: 3px 8px; font-size: 11px; font-weight: 600; }
.tag.olive { color: var(--olive); }
.pcard-priceline { display: flex; align-items: center; justify-content: space-between; margin-top: 13px; }
.price { font-size: 20px; font-weight: 800; color: var(--ink); }
.pcard .btn-olive { margin-top: 13px; }

/* Categories */
.grid-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.cat-tile { cursor: pointer; border-radius: 18px; overflow: hidden; position: relative; height: 170px; transition: transform .25s ease, box-shadow .25s ease; will-change: transform; }
.cat-tile:hover { box-shadow: 0 26px 46px -24px rgba(30,26,21,.55); }
.cat-tile .sheen { position: absolute; inset: 0; background: radial-gradient(120% 90% at 70% 20%, rgba(255,255,255,.28), transparent 50%); }
.cat-tile .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,14,8,.66), transparent 60%); }
.cat-tile .label { position: absolute; bottom: 0; inset-inline: 0; padding: 16px 18px; color: var(--cream); font-size: 18px; font-weight: 700; z-index: 2; }

/* How it works */
.howto { background: var(--cream-3); margin-top: 64px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.howto .inner { max-width: var(--maxw); margin: 0 auto; padding: 54px 24px; position: relative; }
.grid-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; margin-top: 34px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 28px 26px; transition: transform .25s ease, box-shadow .25s ease; will-change: transform; }
.step:hover { box-shadow: 0 24px 44px -26px rgba(30,26,21,.5); }
.step-num { width: 44px; height: 44px; border-radius: 12px; background: var(--espresso); color: var(--cream); font-size: 19px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step-num.olive { background: var(--olive); color: #fff; }
.step-title { font-size: 19px; font-weight: 700; margin-top: 16px; }
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 7px 0 0; }

/* Events */
.grid-events { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.event-tile { cursor: pointer; border-radius: 16px; overflow: hidden; position: relative; height: 140px; transition: transform .25s; will-change: transform; }
.event-tile .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,14,8,.62), transparent 60%); }
.event-tile .label { position: absolute; bottom: 13px; inset-inline: 15px; color: var(--cream); font-size: 17px; font-weight: 700; z-index: 2; }

/* CTA */
.cta-block { max-width: var(--maxw); margin: 64px auto 76px; padding: 0 24px; }
.cta-inner { position: relative; overflow: hidden; background: var(--espresso); border-radius: 24px; padding: clamp(36px, 6vw, 60px); display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; transition: transform .25s ease; }
.cta-content { position: relative; z-index: 2; max-width: 560px; }
.cta-inner h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: var(--cream); line-height: 1.12; margin: 0; letter-spacing: -.01em; }
.cta-inner .lede { font-size: 16px; color: rgba(255,253,248,.78); line-height: 1.55; margin: 14px 0 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; position: relative; z-index: 2; }

/* ==========================================================================
   CATALOG
   ========================================================================== */
.page { max-width: var(--maxw); margin: 0 auto; padding: 40px 24px 80px; }
.page-head { border-bottom: 1px solid var(--border); padding-bottom: 26px; }
.page-head h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; color: var(--ink); margin: 0; letter-spacing: -.02em; }
.page-head p { font-size: 16.5px; color: var(--muted); line-height: 1.55; margin: 10px 0 0; max-width: 560px; }
.tab-row { display: flex; gap: 9px; overflow-x: auto; margin-top: 24px; padding-bottom: 6px; }
.tab { flex-shrink: 0; border-radius: 999px; padding: 10px 20px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all .18s; border: 1.5px solid var(--border-2); background: transparent; color: var(--ink-2); }
.tab.active { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-top: 18px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.filter-label { font-size: 13.5px; font-weight: 600; color: var(--muted-2); margin-inline-end: 4px; }
.chip-btn { border-radius: 999px; padding: 7px 15px; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all .18s; border: 1.5px solid var(--border-2); background: var(--card); color: var(--muted); }
.chip-btn.active { background: var(--olive); color: #fff; border-color: var(--olive); }
.filter-right { display: flex; align-items: center; gap: 10px; }
.result-count { font-size: 13.5px; color: var(--muted-2); }
.sort-select { border: 1.5px solid var(--border-2); background: var(--card); border-radius: 10px; padding: 9px 14px; font-size: 14px; font-weight: 600; color: var(--ink); cursor: pointer; }
.filter-bar--sort { justify-content: flex-end; gap: 10px; }

/* Catalog controls: search + filter chips + sort */
.catalog-controls { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 18px; }
.search-wrap { position: relative; flex: 1 1 260px; min-width: 200px; display: flex; align-items: center; }
.search-wrap .search-ic { position: absolute; inset-inline-start: 14px; color: var(--muted-2); pointer-events: none; }
.cat-search { width: 100%; border: 1.5px solid var(--border-2); background: var(--card); border-radius: 999px; padding: 11px 16px; padding-inline-start: 42px; font-size: 15px; color: var(--ink); transition: border-color .15s; }
.cat-search:focus { border-color: var(--olive); }
.catalog-controls .filter-chips { gap: 8px; }
.catalog-controls .filter-right { margin-inline-start: auto; }
.empty-results { grid-column: 1 / -1; text-align: center; color: var(--muted); font-size: 16px; padding: 44px 20px; background: var(--card); border: 1px dashed var(--border-2); border-radius: 16px; }

/* WhatsApp icon — brand green, sits before the label */
.wa-ic { color: #25D366; flex-shrink: 0; }
.contact-cta .contact-wa { gap: 9px; }
.drawer-actions .wa { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }

/* ==========================================================================
   MENU PAGE
   ========================================================================== */
.menu-page { padding-bottom: 80px; }
.menu-hero { position: relative; overflow: hidden; background: var(--espresso); color: var(--cream); text-align: center; }
.menu-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: clamp(46px,7vw,80px) 24px; }
.menu-hero-k { font-family: Heebo; font-weight: 800; font-size: clamp(40px,8vw,72px); letter-spacing: -.03em; direction: ltr; color: var(--cream); }
.menu-hero h1 { font-size: clamp(24px,3.4vw,32px); font-weight: 700; margin: 6px 0 0; color: var(--cream); }
.menu-hero p { font-size: 15.5px; line-height: 1.65; color: rgba(255,253,248,.8); margin: 14px auto 26px; max-width: 600px; }
.menu-body { max-width: 980px; margin: 0 auto; padding: 48px 24px 0; columns: 2; column-gap: 54px; }
.menu-cat { break-inside: avoid; margin-bottom: 38px; display: inline-block; width: 100%; }
.menu-cat-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.menu-cat-title { font-size: 21px; font-weight: 800; color: var(--olive); white-space: nowrap; letter-spacing: -.01em; }
.menu-cat-rule { flex: 1; height: 1px; background: var(--border-2); }
.menu-items { display: flex; flex-direction: column; gap: 12px; }
.menu-item { cursor: pointer; }
.menu-item-main { display: flex; align-items: baseline; gap: 6px; }
.menu-item-name { font-size: 15.5px; font-weight: 600; color: var(--ink); }
.menu-item-leader { flex: 1; border-bottom: 1.5px dotted var(--border-2); transform: translateY(-3px); min-width: 14px; }
.menu-item-price { font-size: 14.5px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.menu-item-sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; line-height: 1.4; }
.menu-item:hover .menu-item-name { color: var(--olive); }

/* ==========================================================================
   PRODUCT DETAIL
   ========================================================================== */
.product-page { max-width: 1200px; margin: 0 auto; padding: 28px 24px 80px; }
.crumbs { font-size: 13.5px; color: var(--muted-2); margin-bottom: 22px; }
.crumbs span { cursor: pointer; }
.crumbs .here { color: var(--ink); font-weight: 600; cursor: default; }
.product-top { display: flex; flex-wrap: wrap; gap: 40px; }
.product-media { flex: 1 1 420px; min-width: 300px; position: relative; height: clamp(320px, 40vw, 460px); border-radius: 20px; overflow: hidden; display: flex; align-items: center; justify-content: center; transition: transform .25s ease; }
.product-media::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 72% 20%, rgba(255,255,255,.32), transparent 55%); }
.product-media-k { position: relative; z-index: 2; font-family: Heebo; font-weight: 800; font-size: clamp(40px,6vw,68px); color: rgba(255,253,248,.5); direction: ltr; letter-spacing: -.03em; }
.product-info { flex: 1 1 360px; min-width: 290px; }
.product-info .tag-row { gap: 6px; margin-top: 0; }
.product-info .tag { background: var(--chip); color: var(--olive); border-radius: 7px; padding: 4px 11px; font-size: 12.5px; }
.product-info h1 { font-size: clamp(28px, 3.8vw, 40px); font-weight: 800; color: var(--ink); margin: 14px 0 0; line-height: 1.12; letter-spacing: -.01em; }
.product-serve { font-size: 15px; color: var(--olive); font-weight: 600; margin-top: 9px; }
.product-desc { font-size: 16px; color: var(--muted); line-height: 1.65; margin: 16px 0 0; }
.product-price { font-size: 32px; font-weight: 800; color: var(--ink); margin: 20px 0 0; }
.product-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 20px; }
.product-actions .add { flex: 1; min-width: 180px; background: var(--espresso); color: #fff; border: none; border-radius: 12px; padding: 15px 24px; font-size: 16.5px; font-weight: 600; cursor: pointer; transition: background .18s; }
.product-actions .add:hover { background: var(--ink-2); }
.wa-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 13px; color: var(--ink); font-size: 15px; font-weight: 600; text-decoration: none; border: 1.5px solid var(--border-2); border-radius: 12px; padding: 13px 22px; transition: background .18s; }
.wa-link:hover { background: var(--chip); }
.addon-note { margin-top: 13px; background: var(--olive-tint); color: var(--olive-ink); border-radius: 12px; padding: 11px 15px; font-size: 13.5px; font-weight: 600; }
.info-cards { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.info-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px 22px; }
.info-card .title { font-size: 18px; font-weight: 700; color: var(--ink); }
.info-card ul { margin: 12px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.info-card li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink-2); }
.info-card li .bullet { width: 6px; height: 6px; background: var(--olive); border-radius: 50%; flex-shrink: 0; }
.info-card p { font-size: 15px; color: var(--muted); line-height: 1.6; margin: 9px 0 0; }
.related { margin-top: 60px; }
.related h2 { font-size: 28px; font-weight: 800; color: var(--ink); margin: 0 0 22px; letter-spacing: -.01em; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 22px; }
.rcard { background: var(--card); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease; will-change: transform; }
.rcard-img { cursor: pointer; position: relative; height: 170px; }
.rcard-img::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 72% 22%, rgba(255,255,255,.32), transparent 55%); }
.rcard-body { padding: 15px 16px 17px; display: flex; flex-direction: column; flex: 1; }
.rcard-name { cursor: pointer; font-size: 17px; font-weight: 700; color: var(--ink); }
.rcard-line { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.rcard-line .price { font-size: 19px; }
.rcard .add-sm { background: var(--chip); color: var(--espresso); border: 1px solid var(--border); border-radius: 10px; padding: 9px 16px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .18s; }
.rcard .add-sm:hover { background: var(--espresso); color: #fff; border-color: var(--espresso); }

/* ==========================================================================
   CART
   ========================================================================== */
.cart-page { max-width: 1040px; margin: 0 auto; padding: 40px 24px 80px; }
.cart-page > h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--ink); margin: 0; letter-spacing: -.02em; }
.cart-layout { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 26px; align-items: flex-start; }
.cart-items { flex: 1 1 440px; min-width: 300px; display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: flex; gap: 16px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 14px; }
.cart-thumb { cursor: pointer; width: 94px; height: 94px; flex-shrink: 0; border-radius: 12px; position: relative; overflow: hidden; }
.cart-thumb::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 70% 20%, rgba(255,255,255,.3), transparent 55%); }
.cart-item-body { flex: 1; display: flex; flex-direction: column; }
.cart-item-top { display: flex; justify-content: space-between; gap: 10px; }
.cart-item-name { cursor: pointer; font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.cart-remove { background: none; border: none; color: var(--muted-2); font-size: 13px; cursor: pointer; flex-shrink: 0; align-self: flex-start; }
.cart-item-serve { font-size: 13px; color: var(--olive); font-weight: 600; margin-top: 3px; }
.cart-item-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; }
.line-total { font-size: 19px; font-weight: 800; color: var(--ink); }
.add-more { font-size: 14.5px; font-weight: 600; color: var(--olive); cursor: pointer; margin-top: 4px; }
.cart-summary { flex: 1 1 300px; min-width: 280px; background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 24px; position: sticky; top: 90px; }
.cart-summary .title { font-size: 20px; font-weight: 800; color: var(--ink); }
.summary-line { display: flex; justify-content: space-between; align-items: baseline; margin-top: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.summary-line .label { font-size: 15px; color: var(--muted); }
.summary-line .total { font-size: 26px; font-weight: 800; color: var(--ink); }
.summary-note { background: var(--cream-3); border-radius: 12px; padding: 13px 15px; margin-top: 16px; font-size: 13px; color: var(--muted); line-height: 1.55; }
.cart-summary .btn-espresso { width: 100%; margin-top: 18px; padding: 16px; font-size: 16.5px; }
.empty-state { margin-top: 32px; background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 60px 24px; text-align: center; }
.empty-icon { width: 60px; height: 60px; margin: 0 auto; border-radius: 50%; background: var(--chip); display: flex; align-items: center; justify-content: center; }
.empty-icon span { width: 18px; height: 18px; background: #DCD0B6; border-radius: 5px; }
.empty-state .title { font-size: 22px; font-weight: 800; color: var(--ink); margin-top: 18px; }
.empty-state p { font-size: 15.5px; color: var(--muted); margin: 9px 0 0; }
.empty-state .btn-espresso { margin-top: 22px; padding: 14px 30px; font-size: 16px; }

/* ==========================================================================
   FORM
   ========================================================================== */
.form-page { max-width: 760px; margin: 0 auto; padding: 40px 24px 80px; }
.form-page > h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--ink); margin: 0; letter-spacing: -.02em; }
.form-page > p { font-size: 16px; color: var(--muted); margin: 10px 0 0; }
.event-form { margin-top: 28px; background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: clamp(22px, 4vw, 36px); display: flex; flex-direction: column; gap: 20px; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.field input, .field textarea, .field select { border: 1.5px solid var(--border-2); background: var(--cream); border-radius: 11px; padding: 13px 15px; font-size: 15px; color: var(--ink); transition: border-color .15s; }
.field textarea { resize: vertical; font-family: inherit; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--olive); }
.field-block .label { font-size: 14px; font-weight: 600; color: var(--ink-2); margin-bottom: 9px; }
.delivery-row { display: flex; gap: 12px; flex-wrap: wrap; }
.delivery-btn { flex: 1; min-width: 140px; border-radius: 11px; padding: 14px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all .18s; border: 1.5px solid var(--border-2); background: var(--card); color: var(--ink-2); }
.delivery-btn.active { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.consent { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--ink-2); cursor: pointer; line-height: 1.5; }
.consent input { width: 20px; height: 20px; margin-top: 1px; accent-color: var(--olive); flex-shrink: 0; cursor: pointer; }
.consent .lk { color: var(--olive); font-weight: 700; text-decoration: underline; cursor: pointer; }
.form-error { background: #F7E3DC; color: var(--danger); border-radius: 11px; padding: 12px 15px; font-size: 14px; font-weight: 600; }
.field input.inv, .field textarea.inv { border-color: var(--danger); background: #FCEEEA; }
.event-form .submit { background: var(--espresso); color: var(--cream); border: none; border-radius: 12px; padding: 17px; font-size: 17px; font-weight: 600; cursor: pointer; transition: background .18s; }
.event-form .submit:hover { background: var(--espresso-3); }

/* Success */
.success-page { max-width: 620px; margin: 0 auto; padding: 80px 24px 110px; text-align: center; }
.success-check { width: 80px; height: 80px; margin: 0 auto; border-radius: 50%; background: var(--olive); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 40px; animation: kzpop .5s ease; }
.success-page h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--ink); margin: 24px 0 0; letter-spacing: -.01em; }
.success-page p { font-size: 17px; color: var(--muted); line-height: 1.6; margin: 13px 0 0; }
.success-page .btn-espresso { margin-top: 28px; padding: 15px 32px; font-size: 16px; }

/* Terms */
.terms-page { max-width: 820px; margin: 0 auto; padding: 36px 24px 90px; }
.terms-back { font-size: 14.5px; font-weight: 600; color: var(--olive); cursor: pointer; }
.terms-page h1 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; color: var(--ink); margin: 16px 0 0; letter-spacing: -.01em; }
.terms-body { margin-top: 22px; background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: clamp(22px,4vw,38px); color: var(--ink-2); line-height: 1.75; font-size: 15px; }
.terms-body h2 { font-size: 19px; color: var(--ink); margin: 26px 0 8px; }
.terms-body h2:first-child { margin-top: 0; }
.terms-body p { margin: 0 0 12px; color: var(--muted); }
.terms-body ul { margin: 0 0 12px; padding-inline-start: 22px; color: var(--muted); }
.terms-body li { margin-bottom: 6px; }
.terms-body .updated { font-size: 13px; color: var(--muted-2); margin-bottom: 20px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--espresso-2); color: #B8B0A2; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; padding: 52px 24px 28px; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 34px; }
.footer-brand .wordmark { font-size: 24px; color: var(--cream); display: inline-block; }
.footer-brand .descriptor { margin-top: 4px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; margin: 14px 0 0; max-width: 250px; color: #9A9285; }
.footer-col .head { font-size: 13px; font-weight: 700; letter-spacing: .08em; color: var(--cream); }
.footer-col .links { display: flex; flex-direction: column; gap: 10px; margin-top: 15px; font-size: 14px; align-items: flex-start; }
.footer-col .links span, .footer-col .links a { cursor: pointer; color: #B8B0A2; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.footer-col .links a:hover, .footer-col .links span:hover { color: var(--cream); }
.footer-hours { color: #8A8276 !important; font-size: 13px; line-height: 1.7; margin-top: 4px; cursor: default !important; }
.footer-bar { border-top: 1px solid #2C2620; padding: 18px 24px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 12.5px; color: var(--muted); }
.footer-bar .made-by { color: var(--muted); text-decoration: none; letter-spacing: .02em; transition: color .15s; }
.footer-bar .made-by:hover { color: var(--olive); }
.footer-bar .admin-link { cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: color .15s; }
.footer-bar .admin-link:hover { color: var(--cream); }

/* ==========================================================================
   FLOATING CHAT
   ========================================================================== */
.chat-dock { position: fixed; bottom: 22px; inset-inline-start: 22px; z-index: 80; display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.chat-panel { width: min(360px, calc(100vw - 44px)); height: 476px; max-height: calc(100vh - 120px); background: var(--cream); border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 30px 70px -28px rgba(20,14,8,.5); display: flex; flex-direction: column; overflow: hidden; animation: kzpop .28s ease; }
.chat-head { background: var(--espresso); color: var(--cream); padding: 15px 18px; display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--olive); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: #fff; flex-shrink: 0; direction: ltr; }
.chat-avatar svg { width: 26px; height: 26px; }
.chat-head .meta { flex: 1; line-height: 1.25; }
.chat-head .meta .name { font-weight: 700; font-size: 16px; }
.chat-head .meta .status { font-size: 12px; opacity: .78; display: flex; align-items: center; gap: 6px; }
.chat-close { background: none; border: none; color: #B8B0A2; font-size: 22px; cursor: pointer; line-height: 1; }
.chat-notice { background: var(--cream); color: var(--muted); font-size: 11.5px; line-height: 1.45; padding: 8px 14px; border-bottom: 1px solid var(--border); text-align: center; }
.chat-body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 11px; background: var(--cream-3); }
.bubble { max-width: 82%; border-radius: 15px; padding: 11px 14px; font-size: 14.5px; line-height: 1.5; }
.bubble.bot { align-self: flex-end; background: var(--card); color: var(--ink-2); border: 1px solid var(--border); }
.bubble.user { align-self: flex-start; background: var(--espresso); color: var(--cream); }
.bubble.typing { align-self: flex-end; display: inline-flex; gap: 4px; align-items: center; }
.bubble.typing span { width: 6px; height: 6px; border-radius: 50%; background: #B7AE9F; animation: kzblink 1s infinite ease-in-out; }
.bubble.typing span:nth-child(2) { animation-delay: .18s; }
.bubble.typing span:nth-child(3) { animation-delay: .36s; }
@keyframes kzblink { 0%, 80%, 100% { opacity: .3; } 40% { opacity: 1; } }
.chat-input-row input:disabled { opacity: .6; }
.chat-send:disabled { opacity: .5; cursor: default; }
.chat-quick { padding: 11px 14px 0; display: flex; gap: 8px; flex-wrap: wrap; background: var(--cream); }
.chat-quick button { background: var(--chip); border: 1px solid var(--border); color: var(--olive); border-radius: 999px; padding: 7px 13px; font-size: 13px; font-weight: 600; cursor: pointer; }
.chat-input-row { padding: 12px 14px 14px; display: flex; gap: 9px; background: var(--cream); }
.chat-input-row input { flex: 1; border: 1.5px solid var(--border-2); background: var(--card); border-radius: 999px; padding: 12px 16px; font-size: 14.5px; color: var(--ink); transition: border-color .15s; }
.chat-input-row input:focus { border-color: var(--olive); }
.chat-input-row input::placeholder { transition: opacity .22s ease; color: var(--muted); }
.chat-input-row input.ph-fade::placeholder { opacity: .25; }
.chat-send { background: var(--olive); color: #fff; border: none; border-radius: 50%; width: 44px; height: 44px; font-size: 17px; cursor: pointer; flex-shrink: 0; transition: background .18s; }
.chat-send:hover { background: var(--olive-dk); }
.chat-launcher { display: flex; align-items: center; gap: 10px; background: var(--espresso); color: var(--cream); border: none; border-radius: 999px; padding: 12px 19px 12px 14px; font-size: 15px; font-weight: 600; cursor: pointer; box-shadow: 0 16px 36px -14px rgba(20,14,8,.6); transition: transform .18s; }
.chat-launcher:hover { transform: translateY(-2px); }
.chat-launcher .badge { width: 30px; height: 30px; border-radius: 50%; background: var(--olive); display: flex; align-items: center; justify-content: center; font-weight: 800; direction: ltr; }
.launcher-logo { height: 17px; width: auto; }

/* Toast */
.toast { position: fixed; bottom: 26px; inset-inline-end: 22px; z-index: 90; background: var(--ink); color: var(--cream); border-radius: 13px; padding: 14px 20px; font-size: 14.5px; font-weight: 600; box-shadow: 0 18px 44px -18px rgba(20,14,8,.6); animation: kzpop .3s ease; display: flex; align-items: center; gap: 10px; }
.toast .tick { width: 20px; height: 20px; border-radius: 50%; background: var(--olive); display: flex; align-items: center; justify-content: center; font-size: 12px; }

/* ==========================================================================
   ADMIN
   ========================================================================== */
.admin-root { min-height: 100vh; background: var(--cream-3); }
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; background: var(--espresso-2); position: relative; overflow: hidden; }
.admin-login::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 50% 0%, rgba(84,102,59,.22), transparent 60%); }
.login-card { position: relative; z-index: 2; width: min(400px, 100%); background: var(--cream); border-radius: 22px; padding: 38px 34px; box-shadow: 0 40px 90px -30px rgba(0,0,0,.6); }
.login-card .brand-center { text-align: center; }
.login-card .brand-center .wordmark { font-size: 30px; }
.login-card .brand-center .descriptor { margin-top: 4px; }
.login-fields { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.login-fields .field input { background: var(--card); }
.login-card .submit { width: 100%; margin-top: 22px; background: var(--espresso); color: var(--cream); border: none; border-radius: 12px; padding: 15px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background .18s; }
.login-card .submit:hover { background: var(--espresso-3); }
.login-back { text-align: center; margin-top: 16px; font-size: 13.5px; color: var(--muted); cursor: pointer; }

.admin-shell { display: flex; min-height: 100vh; }
.admin-aside { width: 236px; flex-shrink: 0; background: var(--espresso-2); color: #B8B0A2; display: flex; flex-direction: column; padding: 24px 16px; position: sticky; top: 0; height: 100vh; }
.admin-brand { padding: 6px 10px 22px; }
.admin-brand .wordmark { font-size: 25px; color: var(--cream); }
.admin-brand .descriptor { font-size: 9px; margin-top: 3px; }
.admin-nav { display: flex; flex-direction: column; gap: 5px; }
.admin-nav button { text-align: start; border: none; background: transparent; color: #B8B0A2; border-radius: 11px; padding: 13px 16px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all .18s; }
.admin-nav button.active { background: var(--olive); color: #fff; }
.admin-back { margin-top: auto; padding: 13px 16px; font-size: 14px; color: #8A8276; cursor: pointer; border-top: 1px solid #2C2620; }
.admin-main { flex: 1; min-width: 0; }
.admin-view { padding: 34px clamp(20px, 4vw, 42px); }
.admin-view h1 { font-size: 32px; font-weight: 800; color: var(--ink); margin: 0; letter-spacing: -.01em; }
.admin-view > p { font-size: 15px; color: var(--muted); margin: 6px 0 0; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; margin-top: 26px; }
.stat { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.stat .k { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.stat .v { font-size: 34px; font-weight: 800; color: var(--ink); margin-top: 6px; }
.stat .v.olive { color: var(--olive); }

.admin-two { display: grid; grid-template-columns: 1fr 1.4fr; gap: 18px; margin-top: 22px; align-items: start; }
.panel { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 24px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; }
.panel-head .title { font-size: 19px; font-weight: 800; color: var(--ink); }
.panel-head .link { font-size: 14px; font-weight: 600; color: var(--olive); cursor: pointer; }
.bars { display: flex; flex-direction: column; gap: 16px; margin-top: 18px; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-label { font-size: 13.5px; font-weight: 600; color: var(--ink-2); width: 78px; flex-shrink: 0; }
.bar-track { flex: 1; height: 10px; background: var(--cream-3); border-radius: 999px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 999px; transition: width .4s ease; }
.bar-val { font-size: 14px; font-weight: 800; color: var(--ink); width: 24px; text-align: end; }
.recent-list { display: flex; flex-direction: column; margin-top: 8px; }
.recent-row { display: flex; align-items: center; gap: 14px; padding: 13px 8px; border-bottom: 1px solid var(--border-3); cursor: pointer; transition: background .15s; }
.recent-row:hover { background: var(--row-hover); }
.recent-row .grow { flex: 1; min-width: 0; }
.recent-row .nm { font-weight: 600; color: var(--ink); font-size: 15px; }
.recent-row .meta { font-size: 12.5px; color: var(--muted); }
.recent-row .dt { font-size: 13px; color: var(--muted); }
.recent-row .amt { font-weight: 800; color: var(--ink); font-size: 16px; min-width: 74px; text-align: end; }

.status-pill { border-radius: 999px; padding: 5px 12px; font-size: 12.5px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.status-pill .sdot { width: 7px; height: 7px; border-radius: 50%; }

.table { background: var(--card); border: 1px solid var(--border); border-radius: 18px; margin-top: 22px; overflow: hidden; }
.table-head, .table-row { display: grid; gap: 10px; align-items: center; }
.leads-cols { grid-template-columns: 60px 1.4fr 1fr .9fr .7fr .9fr 110px 44px; }
.table-head { padding: 15px 20px; background: var(--row-hover); font-size: 12.5px; font-weight: 700; color: var(--muted); border-bottom: 1px solid var(--border); }
.table-row { padding: 15px 20px; border-bottom: 1px solid var(--border-3); font-size: 14px; color: var(--ink-2); cursor: pointer; transition: background .15s; }
.table-row:hover { background: var(--row-hover); }
.table-row .id { font-size: 12px; color: var(--muted-2); font-weight: 600; }
.table-row .nm { font-weight: 600; color: var(--ink); }
.table-row .dt { font-size: 13px; color: var(--muted); }
.table-row .amt { font-weight: 800; color: var(--ink); }
.table-row .status-pill { padding: 4px 11px; font-size: 12px; }
.table-row .status-pill .sdot { width: 6px; height: 6px; }
.table-head .col-del, .table-row .col-del { display: flex; justify-content: center; }
.row-del { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; padding: 0; border: none; background: transparent; color: var(--muted-2); border-radius: 8px; cursor: pointer; transition: background .15s, color .15s; }
.row-del:hover { background: rgba(190,60,50,.10); color: var(--danger); }

.admin-cat-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.admin-add { background: var(--espresso); color: var(--cream); border: none; border-radius: 11px; padding: 13px 22px; font-size: 15px; font-weight: 600; cursor: pointer; }
.admin-tabs { display: flex; gap: 8px; overflow-x: auto; margin-top: 22px; padding-bottom: 4px; }
.admin-tab { flex-shrink: 0; border-radius: 999px; padding: 8px 17px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .18s; border: 1.5px solid var(--border-2); background: transparent; color: var(--muted); }
.admin-tab.active { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.catalog-cols { grid-template-columns: 64px 2fr 1fr .9fr .8fr 90px; gap: 12px; }
.catalog-table .table-head { padding: 14px 20px; }
.catalog-table .table-row { padding: 13px 20px; cursor: default; }
.catalog-table .table-row:hover { background: transparent; }
.cat-thumb { width: 48px; height: 48px; border-radius: 10px; }
.avail-pill { background: var(--olive-tint); color: var(--olive-ink); border-radius: 999px; padding: 4px 11px; font-size: 12px; font-weight: 700; }
.edit-btn { background: var(--chip); border: 1px solid var(--border); color: var(--olive); border-radius: 9px; padding: 7px 14px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .18s; }
.edit-btn:hover { background: var(--olive); color: #fff; border-color: var(--olive); }

.edit-view { max-width: 840px; }
.edit-crumbs { font-size: 13.5px; color: var(--muted-2); margin-bottom: 14px; }
.edit-crumbs span { cursor: pointer; }
.edit-crumbs .here { color: var(--ink); font-weight: 600; cursor: default; }
.edit-view h1 { font-size: 30px; }
.edit-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: clamp(20px,4vw,32px); margin-top: 22px; display: flex; flex-direction: column; gap: 20px; }
.edit-top { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-start; }
.edit-img-wrap { flex: 0 0 auto; }
.edit-img-wrap .label { font-size: 14px; font-weight: 600; color: var(--ink-2); margin-bottom: 8px; }
.edit-img { width: 180px; height: 180px; border-radius: 14px; position: relative; overflow: hidden; }
.edit-img::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 70% 20%, rgba(255,255,255,.3), transparent 55%); }
.edit-drop { width: 180px; border: 2px dashed var(--border-2); border-radius: 16px; padding: 8px; cursor: pointer; transition: border-color .15s, background .15s; }
.edit-drop:hover, .edit-drop:focus-visible { border-color: var(--olive); outline: none; }
.edit-drop.drag { border-color: var(--olive); background: var(--olive-tint); }
.edit-drop .edit-img { width: 100%; height: 164px; }
.edit-img.empty { background: var(--cream-2); }
.edit-img.empty::before { display: none; }
.edit-drop-cta { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--muted); font-size: 12.5px; font-weight: 600; padding: 9px 4px 4px; text-align: center; }
#img-status { margin-top: 7px; max-width: 200px; }
.edit-fields { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 16px; }
.edit-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.edit-three { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.edit-card .field input, .edit-card .field textarea, .edit-card .field select { background: var(--cream); padding: 12px 15px; }
.edit-actions { display: flex; gap: 12px; margin-top: 6px; }
.edit-save { background: var(--espresso); color: var(--cream); border: none; border-radius: 11px; padding: 13px 28px; font-size: 15px; font-weight: 600; cursor: pointer; }
.edit-cancel { background: transparent; color: var(--muted); border: 1.5px solid var(--border-2); border-radius: 11px; padding: 13px 24px; font-size: 15px; font-weight: 600; cursor: pointer; }
.edit-save[disabled] { opacity: .6; cursor: default; }
.edit-delete { margin-inline-start: auto; background: transparent; color: var(--danger); border: 1.5px solid var(--danger); border-radius: 11px; padding: 13px 22px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all .15s; }
.edit-delete:hover { background: var(--danger); color: #fff; }
.field-hint { font-size: 12px; font-weight: 500; color: var(--muted); margin-top: -1px; }
.admin-notice { border-radius: 12px; padding: 12px 16px; font-size: 14px; font-weight: 600; margin: 14px 0 0; }
.admin-notice.ok { background: var(--olive-tint); color: var(--olive-ink); border: 1px solid #CADBA8; }
.admin-notice.warn { background: #FCEEEA; color: #8A3D26; border: 1px solid #F0C9BC; }
.admin-search-wrap { position: relative; display: flex; align-items: center; gap: 12px; margin: 16px 0 4px; }
.admin-search-wrap .search-ic { position: absolute; inset-inline-start: 14px; color: var(--muted); pointer-events: none; }
.admin-search { flex: 1; max-width: 420px; border: 1.5px solid var(--border-2); background: var(--card); border-radius: 12px; padding: 12px 16px; padding-inline-start: 42px; font-size: 15px; color: var(--ink); }
.admin-search:focus { border-color: var(--olive); outline: none; }
.admin-cat-count { font-size: 13px; color: var(--muted); font-weight: 600; white-space: nowrap; }
.avail-pill.off { background: #EDE8E0; color: var(--muted); }
.table-row.row-off { opacity: .62; }
.added-tag { display: inline-block; margin-inline-start: 6px; background: var(--olive-tint); color: var(--olive-ink); border-radius: 999px; padding: 1px 8px; font-size: 11px; font-weight: 700; vertical-align: middle; }

.set-panel { margin-top: 22px; max-width: 560px; display: flex; flex-direction: column; gap: 4px; }
.set-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 4px; border-bottom: 1px solid var(--border-3); }
.set-row:last-child { border-bottom: none; }
.set-k { font-size: 14px; color: var(--muted); font-weight: 600; }
.set-v { font-size: 15px; color: var(--ink); font-weight: 700; }
.set-v.ltr { direction: ltr; }

/* Lead drawer */
.drawer-overlay { position: fixed; inset: 0; z-index: 100; display: flex; justify-content: flex-start; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(20,14,8,.5); }
.drawer { position: relative; width: min(440px, 100%); height: 100%; background: var(--cream); box-shadow: 30px 0 70px -30px rgba(0,0,0,.5); overflow-y: auto; animation: kzpop .3s ease; }
.drawer-head { background: var(--espresso-2); color: var(--cream); padding: 22px 24px; display: flex; align-items: flex-start; justify-content: space-between; }
.drawer-head .id { font-size: 12px; color: #8A8276; font-weight: 600; }
.drawer-head .nm { font-size: 25px; font-weight: 800; margin-top: 4px; }
.drawer-head .status-pill { margin-top: 10px; padding: 5px 13px; }
.drawer-close { background: none; border: none; color: #B8B0A2; font-size: 26px; cursor: pointer; line-height: 1; }
.drawer-body { padding: 24px; }
.drawer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kv { background: var(--card); border: 1px solid var(--border); border-radius: 13px; padding: 14px; }
.kv .k { font-size: 12px; color: var(--muted); font-weight: 600; }
.kv .v { font-size: 15px; color: var(--ink); font-weight: 600; margin-top: 4px; }
.kv .v.ltr { direction: ltr; text-align: start; }
.kv .v.email { font-size: 13.5px; word-break: break-all; }
.kv.full { margin-top: 12px; }
.kv.full .v { font-size: 14.5px; font-weight: 400; }
.drawer-sub { font-size: 18px; font-weight: 800; color: var(--ink); margin: 24px 0 12px; }
.drawer-items { display: flex; flex-direction: column; gap: 8px; }
.drawer-item { display: flex; justify-content: space-between; background: var(--card); border: 1px solid var(--border); border-radius: 11px; padding: 12px 15px; font-size: 14.5px; color: var(--ink-2); }
.drawer-item .q { font-weight: 700; color: var(--olive); }
.drawer-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }
.drawer-total .k { font-size: 15px; color: var(--muted); font-weight: 600; }
.drawer-total .v { font-size: 25px; font-weight: 800; color: var(--ink); }
.drawer-notes { background: var(--cream-3); border-radius: 12px; padding: 14px; margin-top: 16px; }
.drawer-notes .k { font-size: 12px; color: var(--muted); font-weight: 700; }
.drawer-notes .v { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin-top: 6px; }
.status-set-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 22px; }
.set-status-label { font-size: 13px; color: var(--muted); font-weight: 600; width: 100%; }
.status-set { border: 1.5px solid var(--border-2); background: var(--card); color: var(--ink-2); border-radius: 999px; padding: 8px 16px; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all .18s; }
.status-set:hover { border-color: var(--olive); color: var(--olive); }
.status-set.on { background: var(--olive); color: #fff; border-color: var(--olive); }
.drawer-actions { display: flex; gap: 10px; margin-top: 16px; }
.drawer-actions .wa { flex: 1; text-align: center; background: var(--espresso); color: var(--cream); border: none; border-radius: 11px; padding: 13px; font-size: 14.5px; font-weight: 600; cursor: pointer; text-decoration: none; }
.drawer-actions .lead-del { flex: 0 0 auto; background: transparent; color: var(--danger); border: 1.5px solid var(--danger); border-radius: 11px; padding: 13px 18px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .15s; }
.drawer-actions .lead-del:hover { background: var(--danger); color: #fff; }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-hero { position: relative; overflow: hidden; background: var(--espresso); color: var(--cream); text-align: center; }
.about-hero-inner { position: relative; z-index: 2; padding: clamp(52px,8vw,92px) 24px; }
.about-hero-k { font-weight: 900; font-size: clamp(48px,9vw,90px); letter-spacing: -.05em; color: var(--cream); line-height: 1; }
.about-hero-desc { font-size: 12px; letter-spacing: .22em; color: #B7C58A; font-weight: 600; margin-top: 10px; text-transform: lowercase; }
.about-hero-tag { font-size: clamp(17px,2.4vw,22px); color: rgba(255,253,248,.9); margin: 20px auto 0; max-width: 560px; font-weight: 500; }
.about-body { max-width: 820px; margin: 0 auto; padding: clamp(40px,6vw,64px) 24px 80px; }
.about-body h1 { font-size: clamp(26px,3.6vw,36px); font-weight: 800; color: var(--ink); margin: 0 0 18px; letter-spacing: -.01em; }
.about-body p { font-size: 16.5px; line-height: 1.8; color: var(--sub); margin: 0 0 16px; }
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; margin: 34px 0 0; }
.value { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.value-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--olive-tint); color: var(--olive); display: flex; align-items: center; justify-content: center; }
.value-t { font-size: 17px; font-weight: 800; color: var(--ink); margin-top: 14px; }
.value p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 7px 0 0; }
.about-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.about-cta .btn-espresso { padding: 15px 30px; font-size: 16px; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 16px; margin-top: 30px; }
.contact-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 22px; display: flex; align-items: flex-start; gap: 15px; transition: transform .2s ease, box-shadow .2s ease; }
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -26px rgba(30,26,21,.45); }
.cc-ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: var(--cream-3); color: var(--olive); display: flex; align-items: center; justify-content: center; }
.cc-text { min-width: 0; }
.cc-k { font-size: 13px; font-weight: 700; color: var(--muted-2); letter-spacing: .02em; }
.cc-v { font-size: 16px; font-weight: 600; color: var(--ink); margin-top: 5px; line-height: 1.5; }
.cc-v a { color: var(--olive); text-decoration: none; }
.cc-v a:hover { text-decoration: underline; }
.contact-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.contact-cta .btn { padding: 15px 30px; font-size: 16px; }
.contact-cta .contact-wa { text-decoration: none; display: inline-flex; align-items: center; }

/* Footer additions */
.footer-addr { color: #9A9285 !important; cursor: default !important; }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid #2C2620; display: inline-flex !important; align-items: center; justify-content: center; color: #B8B0A2; transition: all .18s; }
.footer-social a:hover { color: var(--cream); border-color: var(--olive); background: rgba(84,102,59,.2); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) { .admin-two { grid-template-columns: 1fr; } }
/* Mobile navigation (hamburger) */
.nav-toggle { display: none; background: transparent; border: none; color: var(--ink); cursor: pointer; padding: 4px; align-items: center; }
.nav-toggle:hover { color: var(--olive); }
.mobile-nav { position: fixed; inset: 0; z-index: 120; visibility: hidden; }
body.nav-open .mobile-nav { visibility: visible; }
.mobile-nav-scrim { position: absolute; inset: 0; background: rgba(20,14,8,.45); opacity: 0; transition: opacity .25s; }
body.nav-open .mobile-nav-scrim { opacity: 1; }
.mobile-nav-panel { position: absolute; inset-inline: 0; top: 0; background: var(--cream); padding: 74px 26px 24px; display: flex; flex-direction: column; transform: translateY(-100%); transition: transform .28s cubic-bezier(.4,0,.2,1); box-shadow: 0 26px 46px -22px rgba(0,0,0,.55); }
body.nav-open .mobile-nav-panel { transform: translateY(0); }
.mobile-nav-panel a { padding: 15px 2px; font-size: 18px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--border); cursor: pointer; text-align: start; }
.mobile-nav-panel a:last-child { border-bottom: none; }
.mobile-nav-panel a:hover { color: var(--olive); }
@media (min-width: 861px) { .mobile-nav { display: none; } }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .main-nav { display: none; }
  .menu-body { columns: 1; }
  .leads-cols { grid-template-columns: 50px 1.3fr 1fr 90px 40px; }
  .leads-cols .col-date, .leads-cols .col-guests, .leads-cols .col-value { display: none; }
  .catalog-cols { grid-template-columns: 48px 2fr 1fr 80px; }
  .catalog-cols .col-cat, .catalog-cols .col-avail { display: none; }
}
@media (max-width: 640px) {
  .admin-shell { flex-direction: column; }
  .admin-aside { width: 100%; height: auto; position: static; flex-direction: row; align-items: center; flex-wrap: wrap; gap: 8px; }
  .admin-brand { padding: 6px 10px; }
  .admin-nav { flex-direction: row; flex-wrap: wrap; }
  .admin-back { margin-top: 0; border-top: none; padding: 8px 12px; }
  .edit-two { grid-template-columns: 1fr; }
  .hero-card { inset-inline-end: 16px; bottom: 16px; padding: 11px 15px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-card { animation: none; }
  * { scroll-behavior: auto; }
}
