:root { --primary: #c5e1a5; --dark: #7cb342; --bg: #f1f8e9; --text: #33691e; --muted: #558b2f; --card: #fff; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Meiryo, sans-serif; background: var(--bg); color: var(--text); }
a { color: var(--dark); }
img { max-width: 100%; height: auto; display: block; }
.dash-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
@media (max-width: 768px) { .dash-shell { grid-template-columns: 1fr; } .dash-aside { display: none; } }
.dash-aside { background: var(--card); border-right: 1px solid #dcedc8; padding: 1.5rem; }
.dash-aside h2 { font-size: 1.1rem; color: var(--dark); margin-bottom: 1.5rem; }
.dash-aside nav button { display: block; width: 100%; text-align: left; padding: 0.65rem; margin-bottom: 0.25rem; border: none; background: none; font: inherit; cursor: pointer; border-radius: 6px; color: var(--text); }
.dash-aside nav button:hover, .dash-aside nav button.active { background: #dcedc8; }
.dash-main { padding: 1.5rem; }
html { scroll-behavior: smooth; }
.block { scroll-margin-top: 1rem; padding-bottom: 2rem; }
.dash-aside nav a { display: block; padding: 0.65rem; margin-bottom: 0.25rem; color: var(--text); text-decoration: none; border-radius: 6px; }
.dash-aside nav a:hover { background: #dcedc8; }
.mobile-bar a { flex: 1; min-width: 70px; padding: 0.5rem; text-align: center; border: 1px solid #dcedc8; background: var(--card); border-radius: 6px; font-size: 0.8rem; color: var(--text); text-decoration: none; }
.product-table tr { cursor: default; }
.detail-dash h4 { font-size: 1.1rem; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
@media (max-width: 600px) { .stat-row { grid-template-columns: 1fr; } }
.stat-card { background: var(--card); padding: 1.25rem; border-radius: 10px; border: 1px solid #dcedc8; text-align: center; }
.stat-card .num { font-size: 1.75rem; font-weight: 700; color: var(--dark); }
.stat-card .lbl { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }
.product-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: 10px; overflow: hidden; }
.product-table th, .product-table td { padding: 1rem; text-align: left; border-bottom: 1px solid #e8f5e9; }
.product-table tr { cursor: pointer; }
.product-table tr:hover { background: #f9fdf6; }
.product-table img { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; }
.product-table .price { color: var(--dark); font-weight: 700; }
.detail-dash { background: var(--card); padding: 2rem; border-radius: 10px; max-width: 800px; }
.detail-dash img { width: 100%; max-width: 400px; height: 300px; object-fit: cover; border-radius: 8px; margin-bottom: 1rem; }
.prose-dash { background: var(--card); padding: 2rem; border-radius: 10px; max-width: 700px; }
.prose-dash h1 { color: var(--dark); margin-bottom: 1rem; }
.prose-dash p { color: var(--muted); line-height: 1.75; margin-bottom: 0.7rem; }
.mobile-bar { display: none; }
@media (max-width: 768px) {
  .mobile-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
  .mobile-bar button { flex: 1; min-width: 70px; padding: 0.5rem; border: 1px solid #dcedc8; background: var(--card); border-radius: 6px; font: inherit; font-size: 0.8rem; cursor: pointer; }
}
