:root{--ink:#111;--paper:#fff;--muted:#6b7280;--line:#e5e7eb;--accent:#176b4d}
*{box-sizing:border-box}body{margin:0;font-family:Arial,sans-serif;color:var(--ink);background:#fafafa}
a{color:inherit}.container{width:min(1120px,92%);margin:32px auto;min-height:70vh}
.site-header{display:flex;justify-content:space-between;align-items:center;padding:20px 4%;background:#111;color:#fff}
.site-header nav{display:flex;gap:20px;align-items:center}.site-header a{text-decoration:none}
.brand{font-size:28px;font-weight:900;letter-spacing:3px}.hero{padding:70px 36px;background:#e9f5ee;border-radius:20px}
.product-card {
    overflow: hidden;
}

.product-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f4f4f4;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}
.hero h1{font-size:clamp(42px,8vw,88px);margin:0}.button,button{display:inline-block;border:0;border-radius:8px;padding:12px 18px;background:#111;color:#fff;text-decoration:none;cursor:pointer}
.button.secondary{background:#fff;color:#111;border:1px solid #111}.danger{background:#9f1d20}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:24px}.card{background:#fff;border:1px solid var(--line);border-radius:14px;overflow:hidden;padding:18px}
.card img{width:100%;aspect-ratio:1/1;object-fit:cover;background:#eee}.price{font-weight:700;font-size:20px}
table{width:100%;border-collapse:collapse;background:#fff}th,td{text-align:left;padding:12px;border-bottom:1px solid var(--line)}
input,select,textarea{width:100%;padding:11px;border:1px solid #ccc;border-radius:7px;margin:5px 0 14px}label{font-weight:700}
.form{max-width:620px;background:#fff;padding:24px;border-radius:14px;border:1px solid var(--line)}
.notice{padding:12px 16px;border-radius:8px;margin-bottom:16px;background:#eef2ff}.notice.error{background:#fee2e2}.notice.success{background:#dcfce7}
.summary{margin-left:auto;max-width:430px;background:#fff;padding:24px;border:1px solid var(--line);border-radius:14px}
.row{display:flex;justify-content:space-between;gap:16px;margin:10px 0}.muted{color:var(--muted)}.site-footer{padding:30px 4%;background:#111;color:#fff}
.admin-nav{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:22px}.inline{display:inline}.actions{display:flex;gap:8px;flex-wrap:wrap}
@media(max-width:700px){.site-header{align-items:flex-start;gap:18px}.site-header nav{flex-wrap:wrap;justify-content:flex-end}table{font-size:14px}.hide-mobile{display:none}}
