:root {
    --bg: #f7f1ea;
    --text: #231814;
    --muted: #685a51;
    --card: #fffaf5;
    --accent: #a85f2d;
    --accent-dark: #7a421f;
    --line: rgba(35, 24, 20, 0.08);
    --shadow: 0 18px 45px rgba(35, 24, 20, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #f9f2eb 0%, #f7f1ea 100%);
    color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 28px)); margin: 0 auto; }

.hero {
    position: relative;
    min-height: 380px;
    background:
      linear-gradient(135deg, rgba(75,36,15,0.78), rgba(168,95,45,0.60)),
      radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 32%),
      linear-gradient(180deg, rgba(60, 33, 12, 1), rgba(132, 77, 36, 1));
    background-size: cover;
    background-position: center;
    color: #fff;
}
.hero-content { position: relative; z-index: 2; padding: 72px 0 56px; }
.hero-top { display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; }
.hero-logo {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 22px;
    background: rgba(255,255,255,.92);
    padding: 10px;
    box-shadow: 0 10px 26px rgba(0,0,0,.18);
}
.badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.2);
    font-size: 13px;
    backdrop-filter: blur(8px);
}
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin: 18px 0 10px; line-height: 1.08; }
.hero p { max-width: 720px; line-height: 1.75; color: rgba(255,255,255,.90); margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-address {
    margin-top: 18px;
    display:inline-flex;
    max-width: 760px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    line-height: 1.65;
    color: rgba(255,255,255,.9);
}
.btn {
    background: #fff;
    color: var(--accent-dark);
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: bold;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
}
.btn-light {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
}
.category-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
    background: rgba(247,241,234,.88);
    border-bottom: 1px solid var(--line);
}
.nav-scroll {
    display: flex;
    gap: 12px;
    overflow: auto;
    white-space: nowrap;
    padding: 14px 0;
}
.nav-scroll a {
    background: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    flex: 0 0 auto;
    box-shadow: 0 6px 14px rgba(35,24,20,.04);
}
.menu-page { padding: 28px 0 56px; }
.category-section { margin-bottom: 44px; scroll-margin-top: 80px; }
.section-heading {
    display: flex;
    gap: 18px;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.mini-title {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .14em;
}
.section-heading h2 {
    margin: 6px 0 0;
    font-size: clamp(1.4rem, 3vw, 2rem);
}
.section-heading p {
    max-width: 560px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.product-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.product-image-wrap {
    aspect-ratio: 4/3;
    background: #efe2d6;
}
.product-image, .placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.placeholder {
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--muted);
}
.product-body { padding: 16px; }
.title-price {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: start;
}
.title-price h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.35;
}
.title-price strong {
    color: var(--accent-dark);
    white-space: nowrap;
}
.price-empty {
    color: var(--muted);
    white-space: nowrap;
    font-size: .9rem;
}
.product-body p {
    color: var(--muted);
    line-height: 1.65;
    margin: 10px 0 0;
}
.site-footer {
    border-top: 1px solid var(--line);
    background: #fffaf4;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 18px;
    padding: 28px 0;
}
.footer-grid h4 { margin: 0 0 8px; }
.footer-grid p {
    margin: 0 0 8px;
    color: var(--muted);
    line-height: 1.6;
}
@media (max-width: 900px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .hero { min-height: 320px; }
    .hero-content { padding: 58px 0 44px; }
    .hero-logo { width: 74px; height: 74px; border-radius: 18px; }
    .product-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .title-price { flex-direction: column; }
}
