:root {
    --vx-primary: #E85D04;
    --vx-primary-dark: #C24700;
    --vx-accent: #FFA726;
    --vx-price: #FF4D4F;
    --vx-bg: #f7f7f5;
    --vx-error: #b3261e;
    --vx-success: #2e7d32;
}
* { box-sizing: border-box; }
a, button, .vx-product-card, .vx-category-card, .vx-flash-card, .vx-profile-link, .vx-btn-primary, .vx-btn-danger, .vx-icon-btn, .vx-wallet-pill, .vx-category-circle img, .vx-category-circle-fallback { transition: all 0.18s ease; }
body { margin: 0; font-family: -apple-system, Segoe UI, Roboto, sans-serif; background: var(--vx-bg); color: #222; }
.vx-header { background: #fff; border-bottom: 1px solid #eee; }
.vx-header-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 16px; padding: 14px 20px; }
.vx-logo { display: flex; align-items: center; flex-shrink: 0; }
.vx-logo img { height: 42px; width: auto; border-radius: 8px; }

.vx-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: #333; }
.vx-hamburger svg { width: 22px; height: 22px; }

.vx-header-icons { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.vx-icon-btn { position: relative; width: 40px; height: 40px; border-radius: 50%; background: #f5f5f5; display: flex; align-items: center; justify-content: center; color: #333; text-decoration: none; }
.vx-icon-btn svg { width: 20px; height: 20px; }
.vx-icon-badge { position: absolute; top: -3px; right: -3px; background: var(--vx-price); color: #fff; font-size: 0.62rem; font-weight: 700; min-width: 16px; height: 16px; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 0 3px; }

.vx-wallet-pill { display: flex; align-items: center; gap: 6px; background: linear-gradient(135deg, var(--vx-primary), var(--vx-primary-dark)); color: #fff; font-weight: 700; font-size: 0.85rem; padding: 8px 16px; border-radius: 24px; text-decoration: none; box-shadow: 0 2px 8px rgba(232,93,4,0.3); }
.vx-wallet-pill svg { width: 16px; height: 16px; }

/* Secondary nav strip (desktop: horizontal bar; mobile: off-canvas slide-in) */
.vx-mobile-menu { display: flex; gap: 22px; background: var(--vx-primary); padding: 10px 20px; overflow-x: auto; }
.vx-mobile-menu a { color: #fff; text-decoration: none; font-size: 0.88rem; white-space: nowrap; }
.vx-mobile-menu a:hover { color: var(--vx-accent); }
.vx-mobile-menu-overlay { display: none; }
.vx-wallet-nav-link { background: var(--vx-accent); color: #1a1a1a !important; padding: 3px 10px; border-radius: 20px; font-weight: 700; }
.vx-main { max-width: 1100px; margin: 0 auto; padding: 30px 20px; min-height: 60vh; }
.vx-form-container { max-width: 420px; margin: 40px auto; background: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.vx-form-container h1 { margin-top: 0; font-size: 1.4rem; }
.vx-form-container label { display: block; margin-bottom: 14px; font-size: 0.9rem; color: #444; }
.vx-form-container input, .vx-form-container select { width: 100%; padding: 10px; margin-top: 6px; border: 1px solid #ccc; border-radius: 6px; font-size: 1rem; }
.vx-form-container button { width: 100%; padding: 12px; background: var(--vx-primary); color: #fff; border: none; border-radius: 6px; font-size: 1rem; cursor: pointer; }
.vx-form-container button:hover { opacity: 0.9; }
.vx-error { color: var(--vx-error); background: #fdecea; padding: 10px 14px; border-radius: 6px; font-size: 0.9rem; }
.vx-success { color: var(--vx-success); background: #eaf6ea; padding: 10px 14px; border-radius: 6px; font-size: 0.9rem; }
.vx-footer { text-align: center; padding: 20px; color: #888; font-size: 0.85rem; }

/* Shop layout */
.vx-category-pills { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 12px; margin-bottom: 20px; }
.vx-category-pills a { flex-shrink: 0; padding: 8px 18px; border-radius: 20px; background: #fff; color: #444; text-decoration: none; font-size: 0.85rem; box-shadow: 0 1px 4px rgba(0,0,0,0.05); white-space: nowrap; }
.vx-category-pills a.active { background: var(--vx-primary); color: #fff; }
.vx-category-pills a:hover:not(.active) { background: #fff7ed; color: var(--vx-primary); }
.vx-product-grid { flex: 1; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.vx-product-card { background: #fff; border-radius: 10px; padding: 16px; box-shadow: 0 1px 6px rgba(0,0,0,0.05); position: relative; }
.vx-product-card:hover { transform: translateY(-3px); }
.vx-product-card-link { display: block; text-decoration: none; color: #222; }
.vx-product-image-placeholder { width: 100%; aspect-ratio: 1; background: linear-gradient(135deg, var(--vx-primary), var(--vx-accent)); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 2rem; font-weight: 700; margin-bottom: 10px; }
.vx-product-image-placeholder.large { max-width: 320px; aspect-ratio: 1; font-size: 4rem; }
.vx-product-image-real { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; margin-bottom: 10px; display: block; }
.vx-product-image-real.large { max-width: 320px; }
.vx-product-card h4 { margin: 8px 0 4px; font-size: 0.95rem; }
.vx-price { color: var(--vx-price); font-weight: 700; margin: 4px 0; }
.vx-store, .vx-moq { font-size: 0.8rem; color: #777; margin: 2px 0; }

.vx-quick-add-form { position: absolute; bottom: 12px; right: 12px; margin: 0; }
.vx-quick-add-btn { width: 34px; height: 34px; border-radius: 50%; background: var(--vx-primary); color: #fff; border: none; font-size: 1.3rem; line-height: 1; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; }
.vx-quick-add-btn:hover { background: var(--vx-price); transform: scale(1.1); }
.vx-quick-add-btn:active { transform: scale(0.95); }

/* Product detail */
.vx-product-detail { display: flex; gap: 40px; flex-wrap: wrap; }
.vx-product-info { flex: 1; min-width: 280px; }
.vx-price-large { font-size: 1.6rem; font-weight: 700; color: var(--vx-price); margin: 10px 0; }
.vx-price-ngn-ref { font-size: 0.85rem; font-weight: 400; color: #888; margin-left: 6px; }
.vx-order-total { font-size: 0.95rem; color: #444; margin: 8px 0; }

/* Profile page */
.vx-profile-quicklinks { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 14px; margin-bottom: 24px; }
.vx-profile-link { background: #fff; border-radius: 12px; padding: 18px 14px; text-align: center; text-decoration: none; color: #333; box-shadow: 0 1px 6px rgba(0,0,0,0.05); transition: transform 0.15s, box-shadow 0.15s; }
.vx-profile-link:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.vx-profile-link svg { width: 26px; height: 26px; color: var(--vx-primary); margin-bottom: 8px; }
.vx-profile-link span { display: block; font-size: 0.85rem; color: #777; }
.vx-profile-link strong { display: block; font-size: 1.05rem; margin-top: 4px; color: var(--vx-price); }

/* Cart quantity stepper */
.vx-qty-stepper { display: flex; align-items: center; gap: 8px; }
.vx-qty-stepper form { display: inline; }
.vx-qty-stepper button { width: 28px; height: 28px; border-radius: 50%; border: 1px solid #ddd; background: #fff; cursor: pointer; font-size: 1rem; line-height: 1; }
.vx-qty-stepper button:disabled { opacity: 0.4; cursor: not-allowed; }
.vx-qty-stepper span { min-width: 20px; text-align: center; font-weight: 600; }

/* Empty state */
.vx-empty-state { text-align: center; padding: 60px 20px; }
.vx-empty-state svg { width: 56px; height: 56px; margin-bottom: 14px; }
.vx-empty-state p { font-size: 1rem; font-weight: 600; color: #555; margin: 0 0 4px; }

/* Notifications */
.vx-notification-list { display: flex; flex-direction: column; gap: 10px; }
.vx-notification-item { display: flex; gap: 14px; background: #fff; border-radius: 10px; padding: 14px 16px; box-shadow: 0 1px 6px rgba(0,0,0,0.05); }
.vx-notification-icon { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.vx-notification-icon svg { width: 18px; height: 18px; color: #fff; }
.vx-notif-blue { background: #0066FF; } .vx-notif-green { background: #16A34A; }
.vx-notif-red { background: #DC2626; } .vx-notif-orange { background: var(--vx-accent); }
.vx-notification-body strong { display: block; font-size: 0.92rem; margin-bottom: 2px; }
.vx-notification-body p { margin: 2px 0 6px; font-size: 0.85rem; color: #555; }

/* Product page redesign */
.vx-product-card-wrap { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 2px 14px rgba(0,0,0,0.06); margin-bottom: 20px; }
.vx-product-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.vx-product-title-row h1 { margin: 0; font-size: 1.5rem; }
.vx-wishlist-btn-labeled { display: flex; align-items: center; gap: 6px; background: #fff; border: 1.5px solid #ddd; border-radius: 20px; padding: 8px 14px; cursor: pointer; color: #666; font-size: 0.82rem; white-space: nowrap; flex-shrink: 0; }
.vx-wishlist-btn-labeled svg { width: 16px; height: 16px; }
.vx-wishlist-btn-labeled.active { color: var(--vx-price); border-color: var(--vx-price); background: #fff5f5; }
.vx-verified-tag { color: var(--vx-primary); font-weight: 600; font-size: 0.85rem; }
.vx-trust-row { display: flex; justify-content: space-between; gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px dashed #eee; }
.vx-trust-row span { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; color: #777; }
.vx-trust-row svg { width: 15px; height: 15px; flex-shrink: 0; }
.vx-price-box { background: #fffaf3; border-radius: 12px; padding: 16px; margin: 14px 0; }
.vx-tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0; }
.vx-tag { background: #f0f0ed; color: #555; font-size: 0.72rem; padding: 4px 10px; border-radius: 12px; }
.vx-description { color: #555; line-height: 1.6; margin-top: 16px; }
.vx-btn-large { padding: 14px 28px; font-size: 1rem; width: 100%; }

/* Status badges */
.vx-status-badge { padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; white-space: nowrap; }
.vx-status-pending { background: #FEF3C7; color: #92400E; }
.vx-status-progress { background: #DBEAFE; color: #1E40AF; }
.vx-status-shipping { background: #E0E7FF; color: #3730A3; }
.vx-status-delivered { background: #D1FAE5; color: #065F46; }
.vx-status-cancelled { background: #FEE2E2; color: #991B1B; }

/* Wallet hero */
.vx-wallet-hero { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 30px; margin-bottom: 20px; }
.vx-wallet-hero strong { font-size: 2.2rem; color: var(--vx-price); margin-top: 6px; }
.vx-store-link { color: #666; }
.vx-qty-form { display: flex; gap: 10px; align-items: end; margin: 16px 0; }
.vx-qty-form input { width: 80px; }

/* Dashboards */
.vx-dashboard-stats { display: flex; gap: 16px; flex-wrap: wrap; margin: 20px 0; }
.vx-stat-card { background: #fff; border-radius: 10px; padding: 20px; min-width: 140px; text-align: center; text-decoration: none; color: inherit; box-shadow: 0 1px 6px rgba(0,0,0,0.05); }
.vx-stat-card span { display: block; font-size: 1.8rem; font-weight: 700; color: var(--vx-primary); }
.vx-stat-card label { font-size: 0.85rem; color: #777; }
.vx-dashboard-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 20px 0; }
.vx-dashboard-actions a { text-decoration: none; padding: 10px 18px; border-radius: 6px; background: #fff; color: var(--vx-primary); box-shadow: 0 1px 6px rgba(0,0,0,0.05); }

/* Buttons */
a.vx-btn-primary, button.vx-btn-primary { display: inline-block; background: var(--vx-primary); color: #fff; padding: 10px 20px; border: none; border-radius: 6px; cursor: pointer; text-decoration: none; font-size: 0.95rem; }
button.vx-btn-primary:disabled { background: #ccc; cursor: not-allowed; }
.vx-btn-danger { background: var(--vx-error); color: #fff; padding: 8px 14px; border: none; border-radius: 6px; cursor: pointer; font-size: 0.85rem; }

/* Product / settings forms (wider than login forms) */
.vx-product-form { max-width: 600px; background: #fff; padding: 24px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.vx-product-form label { display: block; margin-bottom: 14px; font-size: 0.9rem; color: #444; }
.vx-product-form input, .vx-product-form select, .vx-product-form textarea { width: 100%; padding: 10px; margin-top: 6px; border: 1px solid #ccc; border-radius: 6px; font-size: 1rem; font-family: inherit; }
.vx-product-form fieldset { border: 1px solid #ddd; border-radius: 8px; margin-bottom: 16px; padding: 12px; }
.vx-product-form fieldset label { display: inline-block; margin-right: 16px; font-size: 0.85rem; }
.vx-hint { font-size: 0.85rem; color: #777; margin-top: -8px; margin-bottom: 14px; }

/* Review cards (admin approval queues) */
.vx-review-card { background: #fff; padding: 20px; border-radius: 10px; margin-bottom: 16px; box-shadow: 0 1px 6px rgba(0,0,0,0.05); }
.vx-review-card form { margin-top: 10px; }
.vx-review-card input[type="text"] { padding: 8px; border: 1px solid #ccc; border-radius: 6px; margin-right: 8px; }

/* Tables */
.vx-table { width: 100%; min-width: 480px; border-collapse: collapse; background: #fff; border-radius: 10px; box-shadow: 0 1px 6px rgba(0,0,0,0.05); }
.vx-table th, .vx-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid #eee; font-size: 0.9rem; }
.vx-table th { background: #f0f0ed; }

/* Checkout */
.vx-checkout-layout { display: flex; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.vx-checkout-summary { flex: 1; min-width: 280px; background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 1px 6px rgba(0,0,0,0.05); }
.vx-bank-details { margin-top: 20px; padding: 16px; background: #fdf6e3; border-radius: 8px; border: 1px solid var(--vx-accent); }
.vx-bank-details h4 { margin-top: 0; }
.vx-checkout-layout .vx-product-form { flex: 1; min-width: 280px; }

/* Shipping method selector */
.vx-shipping-method-form { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.vx-radio-pill { display: flex; align-items: center; gap: 6px; background: #fff; border: 2px solid #eee; border-radius: 20px; padding: 8px 16px; cursor: pointer; font-size: 0.9rem; }
.vx-radio-pill:has(input:checked) { border-color: var(--vx-accent); background: #fff7ed; }

/* Checkout breakdown */
.vx-checkout-line-item { background: #fff; border-radius: 10px; padding: 14px; margin-bottom: 14px; box-shadow: 0 1px 6px rgba(0,0,0,0.04); }
.vx-breakdown-table { width: 100%; margin-top: 8px; }
.vx-breakdown-table td { padding: 4px 0; font-size: 0.85rem; color: #555; }
.vx-breakdown-table td:last-child { text-align: right; font-weight: 600; color: #222; }
.vx-breakdown-total td { border-top: 1px solid #eee; padding-top: 8px; font-weight: 700; color: var(--vx-price) !important; }

/* Wallet */
.vx-wallet-box { background: #fff; border: 2px solid var(--vx-accent); border-radius: 10px; padding: 16px; margin: 16px 0; }
.vx-wallet-balance-row { display: flex; justify-content: space-between; align-items: center; font-size: 1rem; margin-bottom: 10px; }
.vx-wallet-balance-row strong { color: var(--vx-price); }

/* 1688-style yellow accent touches */
.vx-product-card { border-top: 3px solid transparent; }
.vx-product-card:hover { border-top-color: var(--vx-accent); }

/* Search bar */
.vx-search-form { flex: 1; max-width: 480px; display: flex; align-items: center; background: #fff; border: 2px solid var(--vx-accent); border-radius: 24px; overflow: hidden; padding-left: 14px; }
.vx-search-icon { width: 18px; height: 18px; flex-shrink: 0; }
.vx-search-form input { flex: 1; border: none; background: transparent; padding: 10px 10px; color: #333; font-size: 0.9rem; min-width: 0; }
.vx-search-form input::placeholder { color: #999; }
.vx-search-form button { border: none; background: var(--vx-price); color: #fff; padding: 10px 22px; cursor: pointer; font-weight: 600; font-size: 0.88rem; }

/* Gallery */
.vx-gallery { flex-shrink: 0; width: 320px; max-width: 100%; }
.vx-thumbnails { display: flex; gap: 8px; margin-top: 8px; max-width: 320px; overflow-x: auto; }
.vx-thumbnail { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; cursor: pointer; border: 2px solid transparent; flex-shrink: 0; }
.vx-thumbnail:hover { border-color: var(--vx-accent); }

/* Price tiers */
.vx-price-tiers { background: #fdf6e3; border: 1px solid var(--vx-accent); border-radius: 8px; padding: 12px 14px; margin: 12px 0; }
.vx-price-tiers table { width: 100%; margin-top: 6px; }
.vx-price-tiers td { padding: 3px 0; font-size: 0.88rem; }

/* Reviews */
.vx-rating { color: #b45309; font-weight: 600; font-size: 0.9rem; }
.vx-reviews-section { margin-top: 40px; border-top: 1px solid #eee; padding-top: 20px; }
.vx-review-item { padding: 12px 0; border-bottom: 1px solid #eee; }
.vx-review-item:last-child { border-bottom: none; }

/* Wishlist */
.vx-wishlist-btn { background: none; border: 1px solid #ddd; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #999; flex-shrink: 0; }
.vx-wishlist-btn svg { width: 20px; height: 20px; }
.vx-wishlist-btn.active { color: var(--vx-price); border-color: var(--vx-price); }

/* Homepage */
.vx-hero-banner { display: block; border-radius: 16px; overflow: hidden; margin-bottom: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.vx-hero-banner img { width: 100%; height: auto; display: block; }

.vx-section-title { font-size: 1.3rem; margin: 30px 0 16px; border-left: 4px solid var(--vx-accent); padding-left: 10px; }

/* Quick action icon grid */
.vx-quick-actions-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; background: #fff; border-radius: 14px; padding: 18px 10px; box-shadow: 0 1px 6px rgba(0,0,0,0.05); margin-bottom: 16px; }
.vx-quick-actions-grid a { display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; color: #333; font-size: 0.72rem; text-align: center; }
.vx-quick-actions-grid svg { width: 26px; height: 26px; }

/* Trust strip */
.vx-trust-strip { display: flex; justify-content: space-around; background: #fff; border-radius: 12px; padding: 20px; margin-bottom: 10px; box-shadow: 0 1px 6px rgba(0,0,0,0.05); flex-wrap: wrap; gap: 16px; }
.vx-trust-strip div { text-align: center; }
.vx-trust-strip strong { display: block; font-size: 1.6rem; color: var(--vx-primary); }
.vx-trust-strip span { font-size: 0.8rem; color: #777; }

/* Flash Deals */
.vx-flash-header { display: flex; justify-content: space-between; align-items: center; margin: 24px 0 14px; }
.vx-flash-header h2 { display: flex; align-items: center; gap: 6px; margin: 0; font-size: 1.2rem; color: var(--vx-price); }
.vx-flash-header svg { width: 20px; height: 20px; }
.vx-flash-countdown { background: #fff0f0; color: var(--vx-price); font-weight: 700; font-size: 0.82rem; padding: 4px 12px; border-radius: 20px; }
.vx-flash-scroll { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 10px; }
.vx-flash-card { flex-shrink: 0; width: 160px; background: #fff; border-radius: 10px; padding: 12px 12px 44px; box-shadow: 0 1px 6px rgba(0,0,0,0.05); position: relative; }
.vx-flash-discount { position: absolute; top: 8px; right: 8px; background: var(--vx-price); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 2px 7px; border-radius: 10px; z-index: 2; }
.vx-flash-card h4 { font-size: 0.85rem; margin: 6px 0 4px; }
.vx-flash-card .vx-price { font-size: 0.88rem; }
.vx-flash-card s { color: #999; font-weight: 400; font-size: 0.78rem; margin-left: 4px; }

/* Circular categories */
.vx-categories-circle-row { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 10px; }
.vx-category-circle { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; color: #333; width: 70px; }
.vx-category-circle img, .vx-category-circle-fallback { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; background: #f0f0ed; display: flex; align-items: center; justify-content: center; }
.vx-category-circle-fallback svg { width: 26px; height: 26px; }
.vx-category-circle span { font-size: 0.72rem; text-align: center; }

.vx-categories-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.vx-category-card { background: #fff; border-radius: 10px; padding: 14px 20px; text-decoration: none; color: #222; font-weight: 600; box-shadow: 0 1px 6px rgba(0,0,0,0.05); border-bottom: 3px solid transparent; }
.vx-category-card:hover { border-bottom-color: var(--vx-accent); }

/* Trust strip */
.vx-trust-strip { display: flex; justify-content: space-around; background: #fff; border-radius: 12px; padding: 20px; margin-bottom: 10px; box-shadow: 0 1px 6px rgba(0,0,0,0.05); flex-wrap: wrap; gap: 16px; }
.vx-trust-strip div { text-align: center; }
.vx-trust-strip strong { display: block; font-size: 1.6rem; color: var(--vx-primary); }
.vx-trust-strip span { font-size: 0.8rem; color: #777; }

/* Category icons */
.vx-category-card { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 12px; min-width: 90px; }
.vx-category-card svg { width: 28px; height: 28px; }
.vx-category-card span { font-size: 0.78rem; text-align: center; }

/* How it works */
.vx-how-it-works { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 20px; }
.vx-step { background: #fff; border-radius: 12px; padding: 24px 20px; text-align: center; box-shadow: 0 1px 6px rgba(0,0,0,0.05); }
.vx-step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--vx-accent); color: #1a1a1a; display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 12px; }
.vx-step h4 { margin: 0 0 8px; }
.vx-step p { font-size: 0.85rem; color: #777; margin: 0; }

/* Warehouse box (supplier dashboard) */
.vx-warehouse-box { background: #fdf6e3; border: 1px solid var(--vx-accent); border-radius: 8px; padding: 16px; margin: 16px 0; }
.vx-warehouse-box p { margin: 6px 0 0; }

/* Bottom nav - mobile only */
.vx-bottom-nav { display: none; }
@media (max-width: 720px) {
    body { padding-bottom: 64px; }
    .vx-bottom-nav {
        display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
        background: #fff; border-top: 1px solid #eee; box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
    }
    .vx-bottom-nav a {
        flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
        padding: 8px 0; text-decoration: none; color: #888; font-size: 0.68rem; gap: 3px;
    }
    .vx-bottom-nav a svg { width: 22px; height: 22px; }
    .vx-bottom-nav a.active { color: var(--vx-primary); }
    .vx-hamburger { display: flex; }
    .vx-header-inner { flex-wrap: wrap; }
    .vx-search-form { order: 3; max-width: 100%; margin-top: 10px; flex-basis: 100%; }
    .vx-mobile-menu {
        display: flex; flex-direction: column; gap: 0; position: fixed; top: 0; left: 0; bottom: 0;
        width: 260px; background: var(--vx-primary); z-index: 300; padding: 20px; overflow-y: auto;
        transform: translateX(-100%); transition: transform 0.25s ease;
    }
    .vx-mobile-menu.open { transform: translateX(0); }
    .vx-mobile-menu a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .vx-mobile-menu-overlay.open { display: block; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 250; }
    .vx-quick-add-btn { width: 30px; height: 30px; }

    /* Container & card padding - the desktop 28px was eating too much width on phones */
    .vx-product-card-wrap { padding: 16px; border-radius: 12px; }
    .vx-checkout-summary, .vx-checkout-layout .vx-product-form { padding: 16px; }

    /* Product page: stop forcing a fixed-width gallery, let it stack cleanly */
    .vx-product-detail { gap: 20px; }
    .vx-gallery { width: 100%; }
    .vx-product-image-real.large, .vx-product-image-placeholder.large { max-width: 100%; }
    .vx-product-title-row { flex-direction: column; align-items: flex-start; gap: 10px; }
    .vx-product-title-row h1 { font-size: 1.25rem; }
    .vx-wishlist-btn-labeled { align-self: flex-start; }
    .vx-trust-row { flex-wrap: wrap; gap: 12px 16px; justify-content: flex-start; }

    /* Homepage quick-action icon grid - 5 columns is too tight under ~360px */
    .vx-quick-actions-grid { grid-template-columns: repeat(4, 1fr); gap: 14px 6px; }

    /* Header - tighten spacing so icons don't crowd the logo on narrow phones */
    .vx-header-inner { gap: 8px; padding: 10px 14px; }
    .vx-header-icons { gap: 6px; }
    .vx-wallet-pill { padding: 6px 10px; font-size: 0.75rem; }
    .vx-wallet-pill svg { width: 14px; height: 14px; }
    .vx-icon-btn { width: 36px; height: 36px; }

    /* Checkout - shrink breakdown text so it doesn't wrap awkwardly */
    .vx-shipping-method-form { gap: 8px; }
    .vx-radio-pill { padding: 6px 12px; font-size: 0.82rem; }
    .vx-checkout-layout { gap: 16px; }

    /* Forms generally need full-width, larger tap targets on mobile */
    .vx-form-container { margin: 20px auto; padding: 22px; }
    button, .vx-btn-primary, .vx-btn-danger { min-height: 42px; }

    /* Homepage hero / trust strip tighten up */
    .vx-trust-strip { padding: 14px; }
    .vx-trust-strip strong { font-size: 1.3rem; }

    /* Profile quick links - 2 per row reads better than a cramped 3-4 on narrow phones */
    .vx-profile-quicklinks { grid-template-columns: repeat(2, 1fr); }
}
