.store-category-tabs {
    display:flex; flex-wrap:wrap; gap:10px; margin:0 0 24px;
}
.store-category-tabs a {
    max-width:100%; overflow-wrap:anywhere; text-decoration:none;
    padding:10px 18px; border:1px solid #eadfca; border-radius:14px;
    background:#fff; color:#795518; font-weight:700;
}
.store-category-tabs a.is-active {
    background:#c58a16; border-color:#c58a16; color:#fff;
}
.store-category-tabs a:focus-visible {
    outline:3px solid #795518; outline-offset:3px;
}
.category-form-grid {
    display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px;
}
.category-form-grid label { display:grid; gap:8px; min-width:0; }
.category-form-grid input,.category-form-grid select {
    width:100%; box-sizing:border-box; padding:12px;
    border:1px solid #eadfca; border-radius:12px; background:#fff; color:#172136;
}
.category-actions { display:flex; align-items:center; gap:16px; margin-top:20px; }
.category-admin-row {
    display:flex; flex-wrap:wrap; align-items:center; gap:14px;
    padding:16px 0; border-bottom:1px solid #eadfca;
}
.category-admin-row strong { flex:1 1 180px; overflow-wrap:anywhere; }
.category-admin-row a,.category-actions a { color:#795518; }
.store-category-admin h1,.store-category-admin h2 { margin-bottom:20px; }
@media(max-width:640px) {
    .category-form-grid { grid-template-columns:minmax(0,1fr); }
}