
/* Keke's Handy — minimal, responsive styles */
:root{
  --bg:#ffffff; --text:#111111; --muted:#4a4a4a; --accent:#0f766e; --accent-2:#f59e0b; --border:#e5e7eb; --max:1100px;
  --radius:14px;
  --shadow:0 10px 25px rgba(0,0,0,.07);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,"Helvetica Neue",Arial,"Apple Color Emoji","Segoe UI Emoji";line-height:1.6}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}
.header{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.85);backdrop-filter:saturate(180%) blur(8px);border-bottom:1px solid var(--border)}
.nav{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;align-items:center;gap:12px}
.brand-logo{width:36px;height:36px;border-radius:50%;background:linear-gradient(135deg,var(--accent),var(--accent-2));display:inline-flex;align-items:center;justify-content:center;color:#fff;font-weight:700}
.brand-name{font-weight:700;letter-spacing:.2px}
.menu{display:flex;gap:18px}
.btn{display:inline-flex;align-items:center;justify-content:center;border:1px solid var(--accent);padding:.6rem 1rem;border-radius:10px;transition:.2s;background:#fff}
.btn:hover{transform:translateY(-1px);box-shadow:var(--shadow)}
.btn.primary{background:var(--accent);border-color:var(--accent);color:#fff}
.hero{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:center;padding:48px 0}
.card{border:1px solid var(--border);border-radius:var(--radius);padding:22px;box-shadow:var(--shadow);background:#fff}
.hero h1{font-size:clamp(28px,4.5vw,44px);line-height:1.15;margin:0 0 10px}
.subtitle{color:var(--muted)}
.grid{display:grid;gap:18px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.media{width:100%;height:100%;min-height:220px;border-radius:12px;background:#f3f4f6;display:flex;align-items:center;justify-content:center;font-weight:600;color:#9ca3af;border:1px dashed #d1d5db}
.section{padding:40px 0}
.section h2{margin:0 0 10px;font-size:clamp(20px,3.8vw,28px)}
.badge{display:inline-block;background:#ecfeff;color:#0e7490;border:1px solid #a5f3fc;padding:.3rem .6rem;border-radius:999px;font-size:.85rem}
.footer{border-top:1px solid var(--border);padding:30px 0;color:var(--muted)}
.list{list-style:none;padding:0;margin:0;display:grid;gap:10px}
.kicker{letter-spacing:.12em;text-transform:uppercase;font-size:.8rem;color:var(--muted)}
.product-card{display:flex;flex-direction:column;border:1px solid var(--border);border-radius:14px;overflow:hidden;background:#fff}
.product-card img{width:100%;height:240px;object-fit:cover}
.product-card .body{padding:14px}
.price{font-weight:700}
.table{width:100%;border-collapse:collapse}
.table th,.table td{border-bottom:1px solid var(--border);padding:12px;text-align:left}
.notice{border-left:4px solid var(--accent);background:#ecfeff;padding:12px 14px;border-radius:10px}
@media (max-width:900px){
  .hero{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr 1fr}
}
@media (max-width:600px){
  .menu{display:none}
  .grid-3,.grid-2{grid-template-columns:1fr}
}
