.mvm-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin: 20px 0; }
.mvm-product-card { border: 1px solid #e2e2e2; border-radius: 8px; padding: 15px; text-align: center; background: #fff; }
.mvm-product-card img { max-width: 100%; height: 160px; object-fit: cover; border-radius: 4px; }
.mvm-no-image { height: 160px; display: flex; align-items: center; justify-content: center; background: #f2f2f2; color: #999; border-radius: 4px; }
.mvm-product-card h3 { font-size: 15px; margin: 10px 0 5px; }
.mvm-price { font-weight: bold; color: #2a7a2a; margin-bottom: 5px; }
.mvm-old-price { text-decoration: line-through; color: #999; margin-right: 8px; }
.mvm-rating { color: #e0a800; font-size: 13px; margin-bottom: 5px; }
.mvm-sold-by { font-size: 12px; color: #666; margin-bottom: 10px; }
.mvm-btn, .mvm-add-cart-btn, button.mvm-btn { background: #2271b1; color: #fff; border: none; padding: 10px 18px; border-radius: 4px; cursor: pointer; text-decoration: none; display: inline-block; }
.mvm-btn-secondary { background: #999; }
.mvm-cart-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.mvm-cart-table th, .mvm-cart-table td { border: 1px solid #e2e2e2; padding: 10px; text-align: left; }
.mvm-cart-total, .mvm-checkout-total { font-size: 18px; margin: 15px 0; }
.mvm-form label { display: block; font-weight: 600; margin-bottom: 4px; }
.mvm-form p { margin-bottom: 14px; }
.mvm-form input, .mvm-form select, .mvm-form textarea { width: 100%; max-width: 400px; padding: 8px; border: 1px solid #ccc; border-radius: 4px; }
.mvm-tabs { display: flex; gap: 10px; border-bottom: 2px solid #e2e2e2; margin-bottom: 20px; }
.mvm-tab-link { padding: 10px 15px; text-decoration: none; color: #444; }
.mvm-tab-link.active { border-bottom: 3px solid #2271b1; color: #2271b1; font-weight: 600; }
.mvm-stats { display: flex; flex-wrap: wrap; gap: 15px; }
.mvm-stat-box { background: #f7f7f7; border-radius: 8px; padding: 20px; min-width: 150px; text-align: center; }
.mvm-stat-box span { display: block; font-size: 22px; font-weight: bold; color: #2271b1; }
.mvm-notice { background: #fff3cd; border: 1px solid #ffe69c; padding: 10px 15px; border-radius: 4px; }
.mvm-error { color: #b30000; }
.mvm-success { color: #2a7a2a; }
.mvm-single-product { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.mvm-reviews { grid-column: 1 / -1; margin-top: 30px; }
.mvm-review { border-bottom: 1px solid #eee; padding: 10px 0; }
@media (max-width: 700px) { .mvm-single-product { grid-template-columns: 1fr; } }
