:root {
    --brand: #2f7d32;
    --brand-light: #edf7ed;
}
body {
    font-family: 'Inter', sans-serif;
    background: #f6f8f7;
    color: #1f2937;
}
.hero {
    background: linear-gradient(135deg, rgba(47,125,50,.08), rgba(255,255,255,1));
    border-radius: 1.5rem;
}
.category-card, .product-card {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.category-card:hover, .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .1);
}
.badge-soft {
    background: var(--brand-light);
    color: var(--brand);
}
.product-thumb {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}
.admin-sidebar {
    min-height: 100%;
    background: #fff;
    border-radius: 1rem;
}
.table thead th {
    white-space: nowrap;
}
