:root{
  --bg:#f7f8f6;
  --surface:#ffffff;
  --surface-soft:#f1f4f1;
  --text:#1d2420;
  --muted:#66706a;
  --line:#dde5df;
  --accent:#c99a34;
  --accent-strong:#2f7d62;
  --accent-soft:#eef7f2;
  --shadow:0 18px 42px rgba(28, 44, 36, .10);
  --shadow-soft:0 10px 24px rgba(28, 44, 36, .06);
  --radius-xl:14px;
  --radius-lg:8px;
  --radius-md:8px;
  --container:min(1180px, calc(100% - 28px));
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
}
a{text-decoration:none;color:inherit}
button{font:inherit}
img{max-width:100%;display:block}
.container{width:var(--container);margin:0 auto}
.site-shell{
  position:sticky;top:0;z-index:20;
  backdrop-filter: blur(14px);
  background:rgba(247,248,246,.9);
  border-bottom:1px solid rgba(221,229,223,.86);
  box-shadow:0 8px 22px rgba(28,44,36,.04);
}
.topbar{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{display:flex;flex-direction:column;gap:2px}
.brand__eyebrow{
  font-size:12px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:#9b7424;
}
.brand__title{
  font-size:28px;font-weight:800;letter-spacing:0;
  color:var(--text);
}
.page{padding:34px 0 60px}
.hero{padding:18px 0 8px}
.hero__inner{
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius-xl);
  padding:42px clamp(22px, 4vw, 44px);
  position:relative;
  overflow:hidden;
}
.hero__inner::before,
.hero__inner::after{
  content:none;
}
.hero__inner::before{width:240px;height:240px;right:-40px;top:-60px;background:rgba(244,184,66,.18);animation:floaty 8s ease-in-out infinite}
.hero__inner::after{width:190px;height:190px;left:-50px;bottom:-70px;background:rgba(255,124,99,.12);animation:floaty 10s ease-in-out infinite reverse}
.eyebrow{margin:0 0 12px;color:#9b7424;font-size:12px;font-weight:800;letter-spacing:.18em;text-transform:uppercase}
.hero h1,.section-heading h1{margin:0;font-size:clamp(40px, 6vw, 72px);line-height:.95;letter-spacing:0}
.hero__text{
  max-width:640px;margin:18px 0 0;font-size:18px;line-height:1.6;color:var(--muted)
}
.hero__chips{display:flex;gap:10px;flex-wrap:wrap;margin-top:24px}
.hero__chips span,
.service-pill,
.category-card__meta{
  border-radius:999px;padding:10px 14px;background:var(--accent-soft);color:#225c49;font-weight:700;font-size:14px;
}
.section-block{padding-top:24px}
.section-heading{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:22px}
.section-heading h2{margin:0;font-size:clamp(28px, 4vw, 44px);letter-spacing:0}
.section-heading__text{margin:8px 0 0;color:var(--muted);max-width:520px;line-height:1.6}
.section-heading__side{display:flex;align-items:center;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.menu-search{
  width:min(430px,100%);
  min-height:48px;
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  box-shadow:var(--shadow-soft);
  padding:0 16px;
}
.menu-search--compact{width:min(320px,100%);box-shadow:none}
.menu-search__icon{color:var(--accent-strong);font-size:20px;line-height:1}
.menu-search input{
  width:100%;
  min-width:0;
  border:0;
  outline:0;
  background:transparent;
  color:var(--text);
  font:inherit;
}
.menu-search input::placeholder{color:#8b948f}
.empty-state{
  margin:24px 0 0;
  padding:18px 20px;
  border:1px dashed var(--line);
  border-radius:var(--radius-md);
  color:var(--muted);
  background:#fff;
  text-align:center;
}
.is-filtering-out{
  opacity:0!important;
  transform:translateY(10px) scale(.975)!important;
  pointer-events:none;
  transition-delay:var(--filter-delay,0ms)!important;
}
.is-filtered-out{pointer-events:none}
.ghost-link{
  border:1px solid var(--line);background:#fff;color:#2a2a2a;border-radius:999px;padding:12px 16px;
  box-shadow:var(--shadow-soft);cursor:pointer;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.ghost-link:hover{transform:translateY(-1px);border-color:#ddd2c5}
.category-grid{display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:18px}
.category-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--shadow-soft);position:relative;isolation:isolate;transform-origin:center;
  transition:opacity .28s ease, transform .34s cubic-bezier(.2,.8,.2,1), box-shadow .34s ease, border-color .34s ease;
}
.category-card::after,
.product-card::after{
  content:"";position:absolute;inset:0;z-index:3;pointer-events:none;
  background:linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,.28) 50%, transparent 62%);
  transform:translateX(-130%);transition:transform .7s ease;
}
.category-card:hover{transform:translateY(-6px);box-shadow:0 22px 48px rgba(28,44,36,.13);border-color:#cfe0d5}
.category-card:hover::after,
.product-card:hover::after{transform:translateX(130%)}
.category-card__media{aspect-ratio:1.18/1;background:var(--surface-soft);overflow:hidden;position:relative}
.category-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease}
.category-card:hover .category-card__media img{transform:scale(1.07);filter:saturate(1.05) contrast(1.03)}
.category-card__body{padding:18px}
.category-card__body h2{margin:0 0 8px;font-size:24px;line-height:1.12;letter-spacing:0}
.category-card__body p{margin:0 0 14px;color:var(--muted);line-height:1.5;min-height:46px}
.page--products .section-heading h1{font-size:clamp(34px, 5vw, 58px)}
.breadcrumbs{display:flex;align-items:center;gap:10px;flex-wrap:wrap;color:#9a938c;margin-bottom:18px}
.breadcrumbs strong{color:#252525}
.product-grid{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:18px}
.product-card{
  background:var(--surface);border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--line);
  box-shadow:var(--shadow-soft);position:relative;isolation:isolate;transform-origin:center;
  transition:opacity .28s ease, transform .34s cubic-bezier(.2,.8,.2,1), box-shadow .34s ease, border-color .34s ease;
}
.product-card:hover{transform:translateY(-6px);box-shadow:0 22px 48px rgba(28,44,36,.13);border-color:#cfe0d5}
.product-card__image-wrap{aspect-ratio:1/1;background:var(--surface-soft);overflow:hidden;position:relative}
.product-card__image-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease}
.product-card:hover .product-card__image-wrap img{transform:scale(1.055);filter:saturate(1.05) contrast(1.03)}
.product-card__image-wrap--placeholder{background:#fff}
.product-card__image-wrap--placeholder::after{
  content:"";position:absolute;inset:0;z-index:2;pointer-events:none;
  background:linear-gradient(110deg, transparent 22%, rgba(201,154,52,.16) 48%, transparent 72%);
  transform:translateX(-130%);animation:placeholderSweep 3.2s ease-in-out infinite;
}
.product-card__image-wrap--placeholder img{position:relative;z-index:1}
.page--fresh .product-card__image-wrap{background:#fff}
.page--fresh .product-card__image-wrap img{object-fit:contain}
.page--fresh .product-card:hover .product-card__image-wrap img{transform:scale(1.02)}
.product-card__body{padding:20px}
.product-card h3{margin:0 0 10px;font-size:clamp(24px, 3vw, 32px);line-height:1.08;letter-spacing:0}
.product-card__desc{margin:0 0 20px;color:var(--muted);font-size:15px;line-height:1.6;min-height:70px}
.product-card__desc--pending{color:#9aa39e;font-style:italic}
.product-card__footer{display:block}
.product-card__footer--order{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.price{font-size:clamp(24px, 3vw, 36px);font-weight:800;letter-spacing:0}
.reveal.is-visible .price{animation:priceGlow .9s ease both;animation-delay:calc(var(--delay,0ms) + 120ms)}
.order-add-btn,
.order-submit{
  border:0;
  border-radius:999px;
  background:var(--accent-strong);
  color:#fff;
  cursor:pointer;
  font-weight:800;
  letter-spacing:0;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.order-add-btn{padding:11px 16px;box-shadow:0 10px 20px rgba(47,125,98,.18)}
.order-add-btn:hover,
.order-submit:hover{transform:translateY(-1px);box-shadow:0 12px 24px rgba(47,125,98,.2)}
.order-submit:disabled{cursor:not-allowed;opacity:.55;transform:none;box-shadow:none}
.order-float{
  position:fixed;right:18px;bottom:18px;z-index:45;
  display:none;align-items:center;gap:10px;
  min-height:56px;padding:0 16px;border:0;border-radius:999px;
  background:#1d2420;color:#fff;box-shadow:0 18px 38px rgba(29,36,32,.22);
  cursor:pointer;font-weight:850;
}
.order-float.is-visible{display:flex}
.order-float__count{
  min-width:28px;height:28px;display:grid;place-items:center;border-radius:999px;
  background:var(--accent);color:#fff;font-size:14px;
}
.order-backdrop{
  position:fixed;inset:0;z-index:50;background:rgba(17,23,20,.34);backdrop-filter:blur(4px);
}
.order-drawer{
  position:fixed;z-index:60;top:0;right:0;width:min(430px,100%);height:100dvh;
  display:flex;flex-direction:column;background:#fff;box-shadow:-24px 0 50px rgba(17,23,20,.18);
  transform:translateX(105%);transition:transform .28s ease;
}
.order-drawer.is-open{transform:translateX(0)}
.order-drawer__head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;padding:22px;border-bottom:1px solid var(--line)}
.order-drawer__head h2{margin:0;font-size:30px;line-height:1;letter-spacing:0}
.order-icon-btn{
  width:42px;height:42px;border:1px solid var(--line);border-radius:999px;background:#fff;
  color:var(--text);font-size:28px;line-height:1;cursor:pointer;
}
.order-drawer__body{display:flex;flex-direction:column;gap:18px;min-height:0;overflow:auto;padding:18px 22px 22px}
.order-list{display:flex;flex-direction:column;gap:10px}
.order-empty{
  border:1px dashed var(--line);border-radius:var(--radius-md);padding:16px;background:var(--surface-soft);
  color:var(--muted);line-height:1.5;text-align:center;
}
.order-line{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  border:1px solid var(--line);border-radius:var(--radius-md);padding:12px;background:#fff;
}
.order-line__main{min-width:0;display:flex;flex-direction:column;gap:4px}
.order-line__main strong{font-size:16px;line-height:1.2}
.order-line__main span,
.order-line__main small{color:var(--muted)}
.order-line__controls{display:flex;align-items:center;gap:8px;font-weight:850}
.order-qty-btn{
  width:34px;height:34px;border:1px solid var(--line);border-radius:999px;background:#fff;
  cursor:pointer;font-size:20px;line-height:1;color:var(--text);
}
.order-form{display:flex;flex-direction:column;gap:14px;margin-top:auto}
.order-field{display:flex;flex-direction:column;gap:8px;font-weight:800;color:var(--text)}
.order-field input{
  width:100%;border:1px solid var(--line);border-radius:var(--radius-md);background:#fff;
  padding:13px 14px;color:var(--text);font:inherit;outline:0;
}
.order-field input:focus{border-color:#9bc6b5;box-shadow:0 0 0 4px rgba(47,125,98,.1)}
.order-total{display:flex;align-items:center;justify-content:space-between;border-top:1px solid var(--line);padding-top:14px}
.order-total span{color:var(--muted);font-weight:800}
.order-total strong{font-size:28px}
.order-submit{min-height:52px;padding:0 18px;font-size:16px}
.order-note{min-height:22px;margin:0;color:var(--muted);line-height:1.45}
.order-note[data-tone="success"]{color:#26735b;font-weight:700}
.order-note[data-tone="error"]{color:#b64242;font-weight:700}
.order-toast{
  position:fixed;left:50%;bottom:88px;z-index:70;transform:translate(-50%,20px);
  max-width:min(360px,calc(100% - 28px));padding:12px 16px;border-radius:999px;
  background:#1d2420;color:#fff;box-shadow:0 16px 36px rgba(17,23,20,.22);
  opacity:0;pointer-events:none;transition:opacity .2s ease, transform .2s ease;
}
.order-toast.is-visible{opacity:1;transform:translate(-50%,0)}
.reveal{
  opacity:0;transform:translateY(28px) scale(.98);filter:blur(8px);
  transition:opacity .72s cubic-bezier(.2,.8,.2,1), transform .72s cubic-bezier(.2,.8,.2,1), filter .72s ease;
  transition-delay:var(--delay,0ms);
}
.reveal.is-visible{opacity:1;transform:translateY(0) scale(1);filter:blur(0)}
.reveal--hero{transform:translateY(12px)}
@keyframes floaty{50%{transform:translateY(16px) translateX(-10px)}}
@keyframes priceGlow{
  0%{color:var(--text);text-shadow:none}
  42%{color:#b8841d;text-shadow:0 0 18px rgba(201,154,52,.24)}
  100%{color:var(--text);text-shadow:none}
}
@keyframes placeholderSweep{
  0%,42%{transform:translateX(-130%)}
  76%,100%{transform:translateX(130%)}
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}
  .reveal{opacity:1;transform:none;filter:none}
}
@media (max-width: 1024px){
  .category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 820px){
  .product-grid{grid-template-columns:1fr}
  .section-heading,.topbar{align-items:flex-start;flex-direction:column}
  .section-heading__side{justify-content:flex-start}
  .topbar{padding:16px 0}
  .menu-search{width:100%}
}
@media (max-width: 560px){
  .container{width:min(100% - 14px, 100%)}
  .brand__title{font-size:24px}
  .hero__inner{padding:26px 18px}
  .hero h1,.section-heading h1{font-size:clamp(36px, 10vw, 52px)}
  .hero__text{font-size:15px}
  .category-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
  .category-card__media{aspect-ratio:1/1}
  .category-card__body{padding:14px}
  .category-card__body h2{font-size:19px}
  .category-card__body p{display:none}
  .category-card__meta{font-size:12px;padding:8px 10px}
  .page{padding:22px 0 44px}
  .product-card__body{padding:16px}
  .product-card h3{font-size:20px}
  .product-card__desc{font-size:14px;min-height:auto}
  .product-card__footer--order{align-items:flex-start;flex-direction:column}
  .order-add-btn{width:100%}
  .order-float{right:10px;bottom:10px;left:10px;justify-content:space-between}
  .order-drawer__head{padding:18px}
  .order-drawer__body{padding:14px 16px 18px}
  .order-line{align-items:flex-start;flex-direction:column}
  .order-line__controls{align-self:stretch;justify-content:space-between}
}
