/* VMP Public Styles */
.vmp-wrap { max-width: 1200px; margin: 0 auto; padding: 20px; }
.vmp-header-bar { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; padding: 40px 30px; border-radius: 15px; margin-bottom: 30px; text-align: center; }
.vmp-header-bar h1 { margin: 0 0 10px; font-size: 32px; }
.vmp-header-bar p { margin: 0; opacity: 0.9; font-size: 16px; }
.vmp-card { background: #fff; border-radius: 12px; padding: 30px; margin-bottom: 25px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid #f0f0f0; }
.vmp-card-title { margin: 0 0 25px; font-size: 20px; color: #333; border-bottom: 3px solid #667eea; padding-bottom: 12px; }
.vmp-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-bottom: 30px; }
.vmp-stat-card { background: #fff; border-radius: 12px; padding: 25px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.06); border-top: 4px solid #667eea; transition: transform 0.3s; }
.vmp-stat-card:hover { transform: translateY(-5px); }
.vmp-stat-value { font-size: 28px; font-weight: 700; color: #667eea; margin-bottom: 8px; }
.vmp-stat-label { color: #888; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.vmp-nav { display: flex; gap: 8px; margin-bottom: 30px; background: #fff; padding: 12px; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); flex-wrap: wrap; }
.vmp-nav a { padding: 12px 24px; border-radius: 8px; color: #666; text-decoration: none; font-weight: 600; transition: all 0.3s; font-size: 14px; }
.vmp-nav a:hover, .vmp-nav a.active { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; box-shadow: 0 4px 15px rgba(102,126,234,0.3); }
.vmp-form-group { margin-bottom: 25px; }
.vmp-form-group label { display: block; margin-bottom: 10px; font-weight: 600; color: #333; font-size: 14px; }
.vmp-form-group input, .vmp-form-group textarea, .vmp-form-group select { width: 100%; padding: 12px 18px; border: 2px solid #e8e8e8; border-radius: 8px; font-size: 15px; transition: all 0.3s; background: #fafafa; }
.vmp-form-group input:focus, .vmp-form-group textarea:focus, .vmp-form-group select:focus { border-color: #667eea; outline: none; background: #fff; box-shadow: 0 0 0 4px rgba(102,126,234,0.1); }
.vmp-btn { display: inline-block; padding: 12px 28px; border-radius: 8px; border: none; cursor: pointer; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.3s; }
.vmp-btn-primary { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; box-shadow: 0 4px 15px rgba(102,126,234,0.3); }
.vmp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(102,126,234,0.4); }
.vmp-btn-secondary { background: #f8f9fa; color: #666; border: 2px solid #e8e8e8; }
.vmp-btn-secondary:hover { background: #667eea; color: #fff; border-color: #667eea; }
.vmp-table { width: 100%; border-collapse: collapse; margin-top: 20px; border-radius: 8px; overflow: hidden; }
.vmp-table th { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; padding: 14px 18px; text-align: left; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.vmp-table td { padding: 14px 18px; border-bottom: 1px solid #f0f0f0; color: #555; }
.vmp-table tr:hover { background: #fafafa; }
.vmp-status { display: inline-block; padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.vmp-status-pending { background: #fff3cd; color: #856404; }
.vmp-status-approved { background: #d4edda; color: #155724; }
.vmp-status-rejected { background: #f8d7da; color: #721c24; }
.vmp-status-completed { background: #d4edda; color: #155724; }
.vmp-status-cancelled { background: #f8d7da; color: #721c24; }
.vmp-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 25px; margin-top: 25px; }
.vmp-product-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.vmp-product-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.vmp-product-image { width: 100%; height: 200px; object-fit: cover; }
.vmp-product-info { padding: 20px; }
.vmp-product-name { font-size: 16px; font-weight: 600; color: #333; margin-bottom: 8px; }
.vmp-product-price { font-size: 18px; font-weight: 700; color: #667eea; }
.vmp-empty-state { text-align: center; padding: 80px 20px; color: #aaa; font-size: 16px; }
.vmp-whatsapp-button { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: #fff; padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; margin-top: 15px; transition: all 0.3s; }
.vmp-whatsapp-button:hover { background: #128c7e; transform: translateY(-2px); }
.vmp-notice { padding: 15px 20px; border-radius: 8px; margin-bottom: 20px; font-weight: 500; }
.vmp-notice-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.vmp-notice-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.vmp-loading { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.8); z-index: 9999; justify-content: center; align-items: center; }
.vmp-loading.active { display: flex; }
.vmp-spinner { width: 50px; height: 50px; border: 4px solid #f3f3f3; border-top: 4px solid #667eea; border-radius: 50%; animation: vmp-spin 1s linear infinite; }
@keyframes vmp-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@media (max-width: 768px) { .vmp-nav { flex-direction: column; } .vmp-stats-grid { grid-template-columns: repeat(2, 1fr); } .vmp-product-grid { grid-template-columns: 1fr; } }
