/*
Theme Name: Kiosk Mockup
Theme URI: https://example.com/
Author: Dein Kiosk
Description: Modern, farbenfrohes Kiosk-Theme mit WooCommerce-Integration. Enthält Hero, Kategorien und Produkt-Grid.
Version: 1.0
Text Domain: kiosk-mockup
Tags: woocommerce, responsive, custom-logo, one-column
*/







:root{
  --accent:#ff5a1f;
  --accent-dark:#d64a12;
  --brand:#f55030;
  --muted:#f7efe9;
  --text:#222;
  --card-bg:#fff;
  --neutral:#f4f4f6;
  --green:#2b8a3e;
  --max-width:1100px;
  --radius:14px;
}
*{box-sizing:border-box}
body{font-family:Inter, Arial, sans-serif;margin:0;background:var(--neutral);color:var(--text);-webkit-font-smoothing:antialiased}
a{color:var(--accent);text-decoration:none}
.site-header{background:var(--brand);color:#fff;padding:20px 16px}
.header-inner{max-width:var(--max-width);margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:12px}
.brand{display:flex;align-items:center;gap:12px}
.brand img{width:64px;height:64px;border-radius:12px;object-fit:cover}
.brand h1{margin:0;font-size:22px;letter-spacing:0.5px}
.contact{display:flex;gap:18px;align-items:center;font-size:14px;opacity:0.95}
.contact div{display:flex;flex-direction:column;align-items:flex-end}
.site-content{max-width:var(--max-width);margin:20px auto;padding:0 16px}
.hero{background:linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.85));border-radius:18px;padding:28px;display:flex;gap:20px;align-items:center;box-shadow:0 12px 40px rgba(12,12,12,0.06)}
.hero-left{flex:1}
.hero h2{font-size:44px;margin:0 0 8px 0;line-height:1.02}
.hero p.lead{margin:0 0 14px 0;font-size:18px;color:#555}
.cta-button{display:inline-block;background:var(--accent);color:#fff;padding:14px 22px;border-radius:12px;font-weight:700;box-shadow:0 8px 18px rgba(245,90,40,0.18)}
.hero-right img{width:360px;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,0.08);object-fit:cover}

/* categories */
.categories{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:16px;margin-top:20px}
.cat-card{background:var(--card-bg);padding:14px;border-radius:12px;display:flex;align-items:center;gap:12px;box-shadow:0 8px 22px rgba(0,0,0,0.04)}
.cat-card img{width:62px;height:62px;border-radius:10px;object-fit:cover}
.cat-card h4{margin:0;font-size:16px}

/* product grid */
.section-title{margin-top:26px;margin-bottom:8px;font-size:20px}
.product-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:16px}
.product-card{background:var(--card-bg);border-radius:12px;padding:10px;box-shadow:0 10px 30px rgba(12,12,12,0.04);display:flex;flex-direction:column;gap:10px;overflow:hidden}
.product-card img{width:100%;height:170px;object-fit:cover;border-radius:8px}
.product-card .title{font-weight:600}
.product-card .price{color:var(--accent);font-weight:700;font-size:18px}
.footer{max-width:var(--max-width);margin:28px auto 60px auto;padding:8px 16px;color:#666;text-align:center}

/* responsive */
@media(max-width:880px){
  .hero{flex-direction:column}
  .hero-right img{width:100%;max-width:420px}
  .contact div{align-items:flex-start}
}
