.wcmv-store-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}
.wcmv-store-logo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}
.wcmv-store-description {
    color: #555;
    max-width: 640px;
}
.wcmv-store-pending {
    background: #fff3cd;
    border: 1px solid #ffe69c;
    padding: 12px;
    border-radius: 6px;
}
.wcmv-dashboard .wcmv-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.wcmv-dashboard .wcmv-tabs a {
    padding: 10px 14px;
    text-decoration: none;
    color: #333;
}
.wcmv-dashboard .wcmv-tabs a.active {
    border-bottom: 2px solid #7f54b3;
    font-weight: bold;
    color: #7f54b3;
}
.wcmv-products-table {
    width: 100%;
    border-collapse: collapse;
}
.wcmv-products-table th,
.wcmv-products-table td {
    padding: 8px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.wcmv-directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.wcmv-directory-card {
    display: block;
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .15s ease;
}
.wcmv-directory-card:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.wcmv-directory-card img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}
.wcmv-directory-card h3 {
    margin: 0 0 6px;
}
.wcmv-register-form label {
    display: block;
    margin-bottom: 4px;
}
.wcmv-register-form input {
    width: 100%;
    max-width: 360px;
}
.wcmv-form-error {
    background: #fbeaea;
    border: 1px solid #e7a3a3;
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
}
.wcmv-product-vendor {
    font-size: 0.9em;
    color: #666;
    margin: 4px 0 12px;
}
.wcmv-product-vendor a {
    color: #7f54b3;
    text-decoration: underline;
}
.wcmv-product-form h3 {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}
.wcmv-product-form h3:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.wcmv-inline-checkbox {
    display: inline-block;
    margin: 0 14px 8px 0;
    font-weight: normal;
}
.wcmv-attribute-row {
    display: flex;
    gap: 8px;
    align-items: center;
}
.wcmv-attribute-row input {
    flex: 1;
}
.wcmv-dim-input {
    width: 100px;
    margin-right: 12px;
}
.wcmv-cat-checklist {
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 10px 14px;
    border-radius: 6px;
    background: #fafafa;
}
.wcmv-cat-checklist ul.wcmv-cat-tree {
    margin: 0;
    padding: 0;
    list-style: none;
}
.wcmv-cat-checklist ul.wcmv-cat-tree.children {
    margin-left: 20px;
}
.wcmv-cat-checklist li {
    margin: 4px 0;
}
.wcmv-cat-checklist label {
    font-weight: normal;
}
