@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --vp-primary: #0070f3;
  --vp-primary-dark: #0051b3;
  --vp-primary-light: #e6f0ff;
  --vp-secondary: #0b132b;
  --vp-secondary-light: #1c2541;
  --vp-accent-red: #e63946;
  --vp-accent-green: #10b981;
  --vp-accent-yellow: #f59e0b;
  --vp-bg: #f8fafc;
  --vp-surface: #ffffff;
  --vp-text: #0f172a;
  --vp-text-muted: #64748b;
  --vp-border: #e2e8f0;
  --vp-border-focus: #93c5fd;
  
  --vp-radius-xs: 6px;
  --vp-radius-sm: 10px;
  --vp-radius-md: 16px;
  --vp-radius-lg: 24px;
  --vp-radius-full: 9999px;
  
  --vp-shadow-subtle: 0 1px 3px rgba(15, 23, 42, 0.05);
  --vp-shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.08);
  --vp-shadow-hover: 0 16px 32px -4px rgba(15, 23, 42, 0.14);
  
  --vp-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--vp-bg);
  color: var(--vp-text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .vp-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--vp-secondary);
  letter-spacing: -0.02em;
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT BAR
   ========================================================================== */
.vp-top-bar {
  background: var(--vp-secondary);
  color: #e2e8f0;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.vp-top-bar a {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 600;
  transition: var(--vp-transition);
}
.vp-top-bar a:hover {
  color: #ffffff;
}
.vp-top-badge {
  background: var(--vp-accent-red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--vp-radius-full);
  text-transform: uppercase;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   2. MAIN HEADER (FLEXBOX LAYOUT - NO OVERLAP)
   ========================================================================== */
.vp-header-main {
  background: var(--vp-surface);
  border-bottom: 1px solid var(--vp-border);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--vp-shadow-subtle);
}

.vp-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.vp-header-brand-col {
  flex: 0 0 auto;
}

.vp-header-search-col {
  flex: 1 1 auto;
  max-width: 520px;
  min-width: 200px;
}

.vp-header-actions-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vp-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--vp-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vp-brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-secondary) 100%);
  color: #fff;
  border-radius: var(--vp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 112, 243, 0.3);
  flex-shrink: 0;
}
.vp-brand-name span {
  color: var(--vp-primary);
}

/* Search Box */
.vp-search-box {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.vp-search-box .form-control {
  border-radius: var(--vp-radius-full);
  padding: 9px 85px 9px 40px;
  border: 2px solid var(--vp-border);
  font-size: 0.9rem;
  transition: var(--vp-transition);
  background-color: #f8fafc;
  width: 100%;
  height: 42px;
}
.vp-search-box .form-control:focus {
  background-color: #fff;
  border-color: var(--vp-primary);
  box-shadow: 0 0 0 4px rgba(0, 112, 243, 0.12);
  outline: none;
}
.vp-search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--vp-text-muted);
  font-size: 0.95rem;
  pointer-events: none;
}
.vp-search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: var(--vp-radius-full);
  padding: 0 16px;
  height: 34px;
  background: var(--vp-primary);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--vp-transition);
}
.vp-search-btn:hover {
  background: var(--vp-primary-dark);
}

/* Action Buttons */
.vp-btn-upload {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--vp-radius-full);
  border: 1.5px solid var(--vp-primary);
  color: var(--vp-primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--vp-transition);
}
.vp-btn-upload:hover {
  background: var(--vp-primary);
  color: #fff;
}

.vp-header-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--vp-text);
  background: transparent;
  border: 1px solid var(--vp-border);
  padding: 7px 14px;
  border-radius: var(--vp-radius-full);
  transition: var(--vp-transition);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.vp-header-action:hover, .vp-header-action:focus {
  background: var(--vp-bg);
  border-color: var(--vp-border-focus);
  color: var(--vp-primary);
}
.vp-header-action i {
  font-size: 1.1rem;
  color: var(--vp-primary);
}

/* Cart Button */
.vp-cart-container .btn-inverse,
.vp-cart-container .btn-block,
.vp-cart-container button {
  background: var(--vp-primary) !important;
  border: none !important;
  color: #fff !important;
  border-radius: var(--vp-radius-full) !important;
  padding: 7px 16px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
  transition: var(--vp-transition) !important;
  box-shadow: 0 4px 10px rgba(0, 112, 243, 0.25) !important;
}
.vp-cart-container button:hover {
  background: var(--vp-primary-dark) !important;
}

/* ==========================================================================
   3. CATEGORY NAVIGATION BAR
   ========================================================================== */
.vp-nav-bar {
  background: var(--vp-surface);
  border-bottom: 1px solid var(--vp-border);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.vp-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.vp-nav-menu::-webkit-scrollbar {
  display: none;
}
.vp-nav-item {
  white-space: nowrap;
  flex-shrink: 0;
}
.vp-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  color: var(--vp-text);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: var(--vp-transition);
}
.vp-nav-link:hover, .vp-nav-link.active {
  color: var(--vp-primary);
  border-bottom-color: var(--vp-primary);
  background: rgba(0, 112, 243, 0.04);
}
.vp-nav-badge {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--vp-radius-full);
  text-transform: uppercase;
}
.vp-nav-badge.hot {
  background: #fee2e2;
  color: var(--vp-accent-red);
}
.vp-nav-badge.new {
  background: #dcfce7;
  color: var(--vp-accent-green);
}

/* ==========================================================================
   4. HERO BANNER
   ========================================================================== */
.vp-hero-banner {
  background: linear-gradient(135deg, #0b132b 0%, #1c2541 60%, #0051b3 100%);
  color: #fff;
  border-radius: var(--vp-radius-lg);
  padding: 48px 36px;
  margin: 24px 0 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--vp-shadow-card);
}
.vp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #93c5fd;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--vp-radius-full);
  margin-bottom: 16px;
}
.vp-hero-title {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
}
.vp-hero-title span {
  color: #60a5fa;
}
.vp-hero-subtitle {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 24px;
}
.vp-hero-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}
.vp-chip {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--vp-radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--vp-transition);
}
.vp-chip:hover {
  background: #fff;
  color: var(--vp-secondary);
  transform: translateY(-2px);
}

/* ==========================================================================
   5. CATEGORY & PRODUCT CARDS
   ========================================================================== */
.vp-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}
.vp-section-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0;
}
.vp-section-subtitle {
  color: var(--vp-text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.vp-cat-card {
  background: var(--vp-surface);
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius-md);
  padding: 16px;
  text-align: center;
  text-decoration: none;
  color: var(--vp-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--vp-transition);
  height: 100%;
}
.vp-cat-card:hover {
  transform: translateY(-5px);
  border-color: var(--vp-primary);
  box-shadow: var(--vp-shadow-hover);
  color: var(--vp-primary);
}
.vp-cat-img-wrapper {
  width: 100%;
  height: 130px;
  border-radius: var(--vp-radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  background: #f1f5f9;
}
.vp-cat-img-wrapper img, .vp-cat-img-wrapper svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--vp-transition);
}
.vp-cat-card:hover .vp-cat-img-wrapper img, 
.vp-cat-card:hover .vp-cat-img-wrapper svg {
  transform: scale(1.05);
}
.vp-cat-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.vp-cat-desc {
  font-size: 0.78rem;
  color: var(--vp-text-muted);
  line-height: 1.4;
  margin-bottom: 10px;
}
.vp-cat-pill {
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--vp-primary);
  background: var(--vp-primary-light);
  padding: 4px 10px;
  border-radius: var(--vp-radius-full);
}

/* Product Card */
.vp-product-card {
  background: var(--vp-surface);
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: var(--vp-transition);
  height: 100%;
  position: relative;
}
.vp-product-card:hover {
  transform: translateY(-5px);
  border-color: var(--vp-border-focus);
  box-shadow: var(--vp-shadow-hover);
}
.vp-product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--vp-secondary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--vp-radius-xs);
  text-transform: uppercase;
}
.vp-product-img {
  width: 100%;
  height: 170px;
  border-radius: var(--vp-radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  background: #f8fafc;
}
.vp-product-img img, .vp-product-img svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--vp-transition);
}
.vp-product-card:hover .vp-product-img img,
.vp-product-card:hover .vp-product-img svg {
  transform: scale(1.04);
}
.vp-product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.vp-product-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.vp-product-title a {
  color: var(--vp-secondary);
  text-decoration: none;
  transition: var(--vp-transition);
}
.vp-product-title a:hover {
  color: var(--vp-primary);
}
.vp-product-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--vp-accent-yellow);
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.vp-product-rating span {
  color: var(--vp-text-muted);
  font-size: 0.76rem;
  margin-left: 4px;
}
.vp-product-price-box {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--vp-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.vp-price-label {
  font-size: 0.7rem;
  color: var(--vp-text-muted);
  text-transform: uppercase;
  font-weight: 600;
}
.vp-price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--vp-secondary);
}
.vp-btn-personalize {
  background: var(--vp-primary);
  color: #fff !important;
  border-radius: var(--vp-radius-sm);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--vp-transition);
  border: none;
}
.vp-btn-personalize:hover {
  background: var(--vp-primary-dark);
  transform: translateY(-1px);
}

/* ==========================================================================
   6. PRODUCT CONFIGURATOR WIZARD
   ========================================================================== */
.vp-config-container {
  background: var(--vp-surface);
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius-lg);
  padding: 24px;
  box-shadow: var(--vp-shadow-card);
}
.vp-config-step {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--vp-border);
}
.vp-config-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.vp-step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.vp-step-num {
  width: 26px;
  height: 26px;
  border-radius: var(--vp-radius-full);
  background: var(--vp-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vp-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}
.vp-step-desc {
  font-size: 0.8rem;
  color: var(--vp-text-muted);
  margin-left: 36px;
  margin-top: -4px;
  margin-bottom: 12px;
}

/* Option Cards */
.vp-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}
.vp-option-card {
  border: 2px solid var(--vp-border);
  border-radius: var(--vp-radius-sm);
  padding: 12px;
  cursor: pointer;
  transition: var(--vp-transition);
  text-align: center;
  position: relative;
  background: #fff;
}
.vp-option-card:hover {
  border-color: var(--vp-primary);
}
.vp-option-card.selected {
  border-color: var(--vp-primary);
  background: var(--vp-primary-light);
}
.vp-option-card.selected::after {
  content: '✓';
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--vp-primary);
}
.vp-option-name {
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 2px;
}
.vp-option-sub {
  font-size: 0.74rem;
  color: var(--vp-text-muted);
}
.vp-option-price {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--vp-primary);
  margin-top: 4px;
}

/* Tier Table */
.vp-tier-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius-sm);
  overflow: hidden;
}
.vp-tier-table th {
  background: #f1f5f9;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vp-text-muted);
  padding: 8px 12px;
}
.vp-tier-table td {
  padding: 10px 12px;
  border-top: 1px solid var(--vp-border);
  cursor: pointer;
  transition: var(--vp-transition);
  font-size: 0.86rem;
}
.vp-tier-table tr:hover td {
  background: rgba(0, 112, 243, 0.04);
}
.vp-tier-table tr.selected td {
  background: var(--vp-primary-light);
  font-weight: 700;
  color: var(--vp-primary);
}

/* Upload Dropzone */
.vp-upload-dropzone {
  border: 2px dashed var(--vp-primary);
  border-radius: var(--vp-radius-md);
  background: #f8fafc;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--vp-transition);
}
.vp-upload-dropzone:hover {
  background: var(--vp-primary-light);
}
.vp-upload-icon {
  font-size: 2rem;
  color: var(--vp-primary);
  margin-bottom: 6px;
}
.vp-upload-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.vp-upload-hint {
  font-size: 0.76rem;
  color: var(--vp-text-muted);
}
.vp-upload-preview {
  display: none;
  background: #fff;
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius-sm);
  padding: 10px 14px;
  margin-top: 10px;
  align-items: center;
  justify-content: space-between;
}

/* Live Total Box */
.vp-live-total-box {
  background: linear-gradient(135deg, var(--vp-secondary) 0%, var(--vp-secondary-light) 100%);
  color: #fff;
  border-radius: var(--vp-radius-md);
  padding: 18px;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vp-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vp-total-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #60a5fa;
}
.vp-per-unit-price {
  font-size: 0.8rem;
  color: #94a3b8;
}

.vp-btn-order {
  background: var(--vp-primary);
  color: #fff;
  border: none;
  border-radius: var(--vp-radius-sm);
  padding: 12px 20px;
  font-size: 0.98rem;
  font-weight: 800;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--vp-transition);
  cursor: pointer;
}
.vp-btn-order:hover {
  background: var(--vp-primary-dark);
}
.vp-btn-whatsapp {
  background: #25d366;
  color: #fff !important;
  border: none;
  border-radius: var(--vp-radius-sm);
  padding: 11px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: var(--vp-transition);
}
.vp-btn-whatsapp:hover {
  background: #1ebc59;
}

/* ==========================================================================
   7. TRUST & 3-STEP ORDER WORKFLOW
   ========================================================================== */
.vp-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.vp-trust-card {
  background: var(--vp-surface);
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius-md);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--vp-transition);
}
.vp-trust-card:hover {
  transform: translateY(-3px);
  border-color: var(--vp-border-focus);
}
.vp-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--vp-radius-sm);
  background: var(--vp-primary-light);
  color: var(--vp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.vp-steps-section {
  background: var(--vp-surface);
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius-lg);
  padding: 36px 20px;
  margin: 36px 0;
  text-align: center;
}
.vp-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.vp-step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vp-step-badge-num {
  width: 52px;
  height: 52px;
  border-radius: var(--vp-radius-full);
  background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-secondary) 100%);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 14px rgba(0, 112, 243, 0.25);
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.vp-footer {
  background: var(--vp-secondary);
  color: #cbd5e1;
  padding: 48px 0 20px;
  margin-top: 48px;
  border-top: 4px solid var(--vp-primary);
}
.vp-footer h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.vp-footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--vp-transition);
}
.vp-footer a:hover {
  color: #fff;
  padding-left: 4px;
}
.vp-footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.vp-footer-brand span {
  color: #60a5fa;
}
.vp-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.vp-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: var(--vp-radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.vp-footer-social a:hover {
  background: var(--vp-primary);
  transform: translateY(-2px);
}
.vp-footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0 16px;
}

/* ==========================================================================
   9. RESPONSIVE MEDIA QUERIES (ZERO OVERLAP BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1199px) {
  .vp-header-search-col {
    max-width: 400px;
  }
  .vp-hero-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 991px) {
  .vp-header-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .vp-header-brand-col {
    order: 1;
  }
  .vp-header-actions-col {
    order: 2;
    margin-left: auto;
  }
  .vp-header-search-col {
    order: 3;
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }
  .vp-btn-upload {
    display: none;
  }
  .vp-hero-banner {
    padding: 30px 20px;
  }
  .vp-hero-title {
    font-size: 1.95rem;
  }
}

@media (max-width: 575px) {
  .vp-brand-name {
    font-size: 1.25rem;
  }
  .vp-top-bar {
    font-size: 0.74rem;
  }
  .vp-hero-title {
    font-size: 1.65rem;
  }
  .vp-hero-chips {
    gap: 6px;
  }
  .vp-chip {
    font-size: 0.78rem;
    padding: 4px 10px;
  }
  .vp-config-container {
    padding: 16px;
  }
  .vp-option-grid {
    grid-template-columns: 1fr;
  }
  .vp-total-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .vp-total-price {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   10. MODERN COMPACT AUTH & CHECKOUT FORMS
   ========================================================================== */
.vp-auth-card {
  background: var(--vp-surface);
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--vp-transition);
}
.vp-auth-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--vp-radius-full);
  background: var(--vp-primary-light);
  color: var(--vp-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.vp-input-group {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.vp-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--vp-text-muted);
  font-size: 1rem;
  pointer-events: none;
  z-index: 5;
}
.vp-input-group .form-control {
  padding-left: 42px;
  border-radius: var(--vp-radius-sm);
  border: 1.5px solid var(--vp-border);
  font-size: 0.95rem;
  transition: var(--vp-transition);
  height: 46px;
}
.vp-input-group .form-control:focus {
  border-color: var(--vp-primary);
  box-shadow: 0 0 0 4px rgba(0, 112, 243, 0.12);
}
.vp-pwd-toggle {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: var(--vp-text-muted);
  cursor: pointer;
  z-index: 5;
}
.vp-pwd-toggle:hover {
  color: var(--vp-primary);
}

@media (max-width: 575px) {
  .vp-auth-card {
    padding: 24px 18px;
  }
}

/* ==========================================================================
   11. MODERN SHIPPING & PAYMENT VISUAL CARDS
   ========================================================================== */
.vp-method-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vp-method-card {
  background: #ffffff;
  border: 2px solid var(--vp-border);
  border-radius: var(--vp-radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: var(--vp-transition);
  position: relative;
}
.vp-method-card:hover {
  border-color: var(--vp-border-focus);
  transform: translateY(-2px);
  box-shadow: var(--vp-shadow-subtle);
}
.vp-method-card.selected {
  border-color: var(--vp-primary);
  background: var(--vp-primary-light);
  box-shadow: 0 4px 14px rgba(0, 112, 243, 0.12);
}
.vp-method-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--vp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.bg-primary-subtle {
  background-color: rgba(0, 112, 243, 0.1) !important;
}
.bg-success-subtle {
  background-color: rgba(16, 185, 129, 0.12) !important;
}
.bg-info-subtle {
  background-color: rgba(6, 182, 212, 0.12) !important;
}