.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;
}
