*{box-sizing:border-box}
body{margin:0;font-family:Arial,sans-serif;background:#f7f4ef;color:#221b14}
.container{max-width:1180px;margin:auto;padding:0 18px}

.header{background:#15110c;border-bottom:1px solid #3b2b13;position:sticky;top:0;z-index:10}
.header-inner{min-height:104px;display:flex;align-items:center;gap:16px}

.logo{width:300px;height:100px;display:flex;align-items:center;justify-content:center;flex-shrink:0;text-decoration:none}
.logo img{width:100%;height:100%;object-fit:contain;display:block}

.search{flex:1;display:flex;border:2px solid #d4a233;border-radius:12px;overflow:hidden;background:#fff}
.search input{flex:1;border:0;padding:13px;outline:0;font-size:15px}
.search button{border:0;background:#d4a233;color:#111;padding:0 22px;font-weight:800;cursor:pointer}

.actions{display:flex;gap:10px;align-items:center}
.actions a{text-decoration:none;color:#fff;font-weight:700;white-space:nowrap}
.actions .primary{background:#d4a233;color:#111;padding:10px 14px;border-radius:10px}

.menu{background:#21170c;border-bottom:1px solid #3b2b13}
.menu .container{display:flex;gap:24px;overflow:auto;padding-top:12px;padding-bottom:12px}
.menu a{text-decoration:none;color:#f7d27a;white-space:nowrap;font-weight:700}

.hero-banner{margin-top:24px}
.hero-banner .container{display:flex;justify-content:center}
.banner-img{width:100%;max-width:1000px;aspect-ratio:1/1;display:block;margin:auto;object-fit:cover;border-radius:22px;box-shadow:0 12px 32px rgba(0,0,0,.20)}

.section{margin-top:34px}
.title-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px}
.title-row h2{margin:0}
.title-row a{color:#9b6a00;text-decoration:none;font-weight:800}

.categories{display:grid;grid-template-columns:repeat(6,1fr);gap:14px}
.categories div{background:#fff;border:1px solid #ead9ad;border-radius:18px;text-align:center;padding:22px;font-size:32px;box-shadow:0 7px 18px rgba(0,0,0,.05)}
.categories span{display:block;font-size:14px;font-weight:800;margin-top:8px;color:#4a3516}

.products{display:grid;grid-template-columns:repeat(6,1fr);gap:16px}
.products article{background:#fff;border:1px solid #ead9ad;border-radius:18px;padding:14px;box-shadow:0 7px 18px rgba(0,0,0,.05)}
.pic{height:145px;border-radius:14px;background:linear-gradient(135deg,#fff3cb,#f8d87a);display:flex;align-items:center;justify-content:center;font-size:48px;font-weight:900;color:#4b2d00}
.products h3{font-size:15px;min-height:38px}
.products b{color:#9b6a00;font-size:18px}
.products p{font-size:13px;color:#666}

.about{background:#fff;border:1px solid #ead9ad;border-radius:22px;padding:28px;margin-top:36px;line-height:1.75}
.about h2{margin-top:0}

footer{margin-top:40px;background:#15110c;color:#fff;padding:34px 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:20px}
footer a{display:block;color:#f7d27a;text-decoration:none;margin:8px 0}

@media(max-width:900px){
  .header-inner{flex-wrap:wrap;padding-top:12px;padding-bottom:12px}
  .logo{width:240px;height:80px}
  .search{order:3;min-width:100%}
  .categories{grid-template-columns:repeat(3,1fr)}
  .products{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr}
}

@media(max-width:520px){
  .logo{width:200px;height:auto}
  .logo img{height:auto}
  .actions{width:100%;overflow:auto}
  .categories,.products{grid-template-columns:1fr}
  .banner-img{border-radius:16px}
}
