
/* Black & White minimalist theme */
* { box-sizing: border-box; }
:root {
  --bg: #fff;
  --fg: #000;
  --muted: #222;
  --card: #111;
  --border: #ddd;
}
html, body { margin:0; padding:0; background:var(--bg); color:var(--fg); font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
a { color: var(--fg); text-decoration: none; }
a:hover { text-decoration: underline; }
header { position: sticky; top:0; z-index:10; background: var(--bg); border-bottom:1px solid var(--border); }
.nav { max-width: 1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; padding: 14px 20px; gap:16px; }
.brand { display:flex; align-items:center; gap:12px; font-weight:800; letter-spacing: .05em; }
.brand img { height:40px; width:auto; filter: grayscale(100%) contrast(1.2); }
.navlinks { display:flex; gap:12px; flex-wrap:wrap; }
.navlinks a { padding:6px 10px; border:1px solid var(--border); border-radius:999px; font-size: 13px; }
.hero { position:relative; }
.hero img { width:100%; height: clamp(260px, 45vw, 520px); object-fit: cover; filter: grayscale(100%); }
.overlay { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.overlay h1 { background: rgba(255,255,255,0.9); padding: 12px 18px; border-radius: 8px; font-size: clamp(22px, 4vw, 42px); text-transform: uppercase; letter-spacing:.12em; }
.slideshow { max-width:1200px; margin: 22px auto 10px; position: relative; overflow: hidden; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.slide-track { display:flex; transition: transform .6s ease-in-out; }
.slide { min-width: 240px; padding: 10px; }
.slide img { width:100%; height: 200px; object-fit: cover; border:1px solid var(--border); }
.slide .caption { font-size: 12px; margin-top:6px; color: var(--muted); }
.controls { position:absolute; top:40%; width:100%; display:flex; justify-content:space-between; }
.control { background:#fff; color:#000; border:1px solid var(--border); width:36px; height:36px; display:grid; place-items:center; border-radius:50%; cursor:pointer; user-select:none; }
.section { max-width:1200px; margin: 24px auto; padding: 0 12px; }
.cat-head { display:flex; align-items:baseline; justify-content:space-between; }
.cat-head h2 { font-size: 22px; text-transform: uppercase; letter-spacing:.07em; }
.grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap:14px; margin-top:12px; }
.card { border:1px solid var(--border); background:#fff; }
.card img { width:100%; height: 220px; object-fit: cover; display:block; }
.card .info { padding:10px; }
.name { font-weight: 600; font-size:14px; min-height: 46px; }
.price { font-size: 13px; color: var(--muted); margin-top: 6px; }
.cta { margin-top: 10px; display:inline-block; border:1px solid var(--fg); padding:6px 10px; border-radius:4px; font-size: 12px; text-transform: uppercase; letter-spacing:.08em; }
footer { border-top:1px solid var(--border); padding: 30px 16px; text-align:center; color: var(--muted); }
.search { max-width:1200px; margin: 12px auto 0; padding: 0 12px; }
.search input { width:100%; padding:10px 12px; border:1px solid var(--border); font-size:14px; }
.badge { font-size: 12px; border:1px solid var(--border); padding: 4px 8px; border-radius: 999px; }


html { scroll-behavior: smooth; }
header { box-shadow: 0 1px 0 var(--border); backdrop-filter: blur(6px); }
.nav { padding: 16px 20px; }
.brand span { font-size: 16px; }
.navlinks { gap: 10px; overflow:auto; scrollbar-width: none; -ms-overflow-style: none; }
.navlinks::-webkit-scrollbar { display:none; }
.navlinks a { 
  padding:8px 14px; 
  border:1.5px solid var(--fg); 
  border-radius:999px; 
  font-size:14px; 
  font-weight:700; 
  background:#fff; 
  transition: background .2s ease, color .2s ease, transform .1s ease;
}
.navlinks a:hover { background: var(--fg); color:#fff; transform: translateY(-1px); }
.navlinks a.active { background: var(--fg); color:#fff; }

.card { border-radius: 10px; overflow:hidden; transition: transform .15s ease, box-shadow .15s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,.08); }
.card img { border-bottom:1px solid var(--border); }
.card .info { padding:12px; }

.cta { 
  margin-top: 12px; 
  display:inline-flex; 
  align-items:center; 
  gap:8px; 
  border:1.5px solid var(--fg); 
  padding:8px 12px; 
  border-radius:999px; 
  font-size: 12px; 
  text-transform: uppercase; 
  letter-spacing:.08em; 
  background: var(--fg); 
  color: #fff;
}
.cta::after { content: "➜"; font-size: 12px; }

.slide { min-width: clamp(200px, 24vw, 280px); }
.slide img { border-radius: 8px; }
.controls .control { background:#fff; box-shadow: 0 2px 10px rgba(0,0,0,.06); }

.cat-head h2 { font-size: 24px; }
.badge { font-weight:600; }

.section { padding: 0 16px; }
.grid { gap: 16px; }
