/* ==========================================================================
   VibeMart Frontend Styles
   ========================================================================== */

:root {
  --vm-teal: #26a69a;
  --vm-teal-dark: #00897b;
  --vm-red: #d84343;
  --vm-yellow: #ffd159;
  --vm-cream: #fcf0d7;
  --vm-dark: #1c1c1c;
  --vm-gray: #666;
  --vm-gray-light: #f5f5f5;
  --vm-border: #ddd;
  --vm-radius: 8px;
  --vm-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --vm-shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.vibemart-info {
  background: var(--vm-gray-light);
  border-radius: var(--vm-radius);
  padding: 32px 24px;
  text-align: center;
}

/* Buttons */
.vibemart-btn {
  display: inline-block;
  background: var(--vm-teal);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: var(--vm-radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  line-height: 1.4;
}
.vibemart-btn:hover {
  background: var(--vm-teal-dark);
  color: #fff;
  transform: translateY(-1px);
}
.vibemart-btn-primary { background: var(--vm-teal); }
.vibemart-btn-primary:hover { background: var(--vm-teal-dark); }
.vibemart-btn-danger { background: var(--vm-red); }
.vibemart-btn-danger:hover { background: #b53939; }
.vibemart-btn-ghost {
  background: transparent;
  color: var(--vm-teal-dark);
  border: 1px solid var(--vm-teal);
}
.vibemart-btn-ghost:hover {
  background: var(--vm-teal);
  color: #fff;
}
.vibemart-btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}
.vibemart-btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

/* Notices */
.vibemart-notice {
  border-radius: var(--vm-radius);
  padding: 12px 16px;
  margin: 16px 0;
  border-left: 4px solid var(--vm-teal);
}
.vibemart-notice-success {
  background: #e8f5e9;
  border-left-color: #4caf50;
}
.vibemart-notice-error {
  background: #ffebee;
  border-left-color: var(--vm-red);
}
.vibemart-notice-warning {
  background: #fff8e1;
  border-left-color: var(--vm-yellow);
}
.vibemart-notice p { margin: 0; }

/* Auth pages */
.vibemart-auth-wrap {
  display: flex;
  justify-content: center;
  padding: 32px 16px;
}
.vibemart-auth-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--vm-shadow-lg);
  padding: 32px;
  width: 100%;
  max-width: 460px;
}
.vibemart-auth-card h2 {
  margin: 0 0 8px;
  color: var(--vm-teal-dark);
}
.vibemart-subtitle {
  color: var(--vm-gray);
  margin: 0 0 24px;
  font-size: 14px;
}
.vibemart-auth-link {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--vm-gray);
}
.vibemart-auth-link a {
  color: var(--vm-teal-dark);
  font-weight: 600;
}

/* Forms */
.vibemart-form .form-row {
  margin-bottom: 16px;
}
.vibemart-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--vm-dark);
}
.vibemart-form .required { color: var(--vm-red); }
.vibemart-form input[type=text],
.vibemart-form input[type=email],
.vibemart-form input[type=password],
.vibemart-form input[type=number],
.vibemart-form input[type=search],
.vibemart-form input[type=tel],
.vibemart-form select,
.vibemart-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--vm-border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s;
}
.vibemart-form input:focus,
.vibemart-form select:focus,
.vibemart-form textarea:focus {
  outline: none;
  border-color: var(--vm-teal);
  box-shadow: 0 0 0 2px rgba(38, 166, 154, 0.15);
}
.vibemart-form .form-row-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vibemart-form .form-row-inline label {
  margin: 0;
  font-weight: normal;
}

/* Shop */
.vibemart-shop {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
}
.vibemart-shop-header {
  text-align: center;
  padding: 32px 0 24px;
  background: linear-gradient(135deg, var(--vm-cream) 0%, #fff 100%);
  border-radius: 12px;
  margin-bottom: 24px;
}
.vibemart-shop-header h1 {
  margin: 0 0 8px;
  color: var(--vm-teal-dark);
  font-size: 32px;
}
.vibemart-shop-header p {
  color: var(--vm-gray);
  font-size: 16px;
  margin: 0;
}

.vibemart-featured-vendors {
  margin-bottom: 32px;
}
.vibemart-featured-vendors h2 {
  font-size: 20px;
  margin-bottom: 12px;
}
.featured-vendor-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.featured-vendor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius);
  text-decoration: none;
  color: var(--vm-dark);
  transition: box-shadow 0.2s, transform 0.1s;
}
.featured-vendor-card:hover {
  box-shadow: var(--vm-shadow);
  transform: translateY(-2px);
  color: var(--vm-teal-dark);
}
.featured-vendor-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}
.featured-vendor-card strong {
  font-size: 14px;
}
.featured-vendor-card span {
  font-size: 12px;
  color: var(--vm-gray);
}

.vibemart-shop-toolbar {
  margin-bottom: 24px;
  background: #fff;
  padding: 12px;
  border-radius: var(--vm-radius);
  box-shadow: var(--vm-shadow);
}
.vibemart-search-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.vibemart-search-form input[type=search],
.vibemart-search-form select {
  padding: 8px 12px;
  border: 1px solid var(--vm-border);
  border-radius: 6px;
  font-size: 14px;
}
.vibemart-search-form input[type=search] { flex: 1; min-width: 200px; }

.vibemart-cart-grid {
  display: grid;
  grid-template-columns: repeat(var(--shop-columns, 3), 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .vibemart-cart-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vibemart-cart-grid { grid-template-columns: 1fr; }
}
.vibemart-cart-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--vm-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.1s;
}
.vibemart-cart-card:hover {
  box-shadow: var(--vm-shadow-lg);
  transform: translateY(-2px);
}
.vibemart-cart-card .cart-thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--vm-gray-light);
}
.vibemart-cart-card .cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.vibemart-cart-card:hover .cart-thumb img { transform: scale(1.03); }
.vibemart-cart-card .cart-body {
  padding: 16px;
  flex: 1;
}
.vibemart-cart-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.vibemart-cart-card h3 a {
  color: var(--vm-dark);
  text-decoration: none;
}
.vibemart-cart-card h3 a:hover { color: var(--vm-teal-dark); }
.cart-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--vm-teal-dark);
  margin-bottom: 6px;
}
.cart-vendor {
  font-size: 12px;
  color: var(--vm-gray);
}
.cart-vendor a { color: var(--vm-teal-dark); }
.cart-rating {
  margin-left: 6px;
  color: var(--vm-yellow);
}
.cart-actions {
  padding: 0 16px 16px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* Status badges */
.vibemart-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #e0e0e0;
  color: var(--vm-dark);
}
.vibemart-status-publish,
.vibemart-status-approved,
.vibemart-status-released,
.vibemart-status-paid,
.vibemart-status-eligible { background: #c8e6c9; color: #2e7d32; }
.vibemart-status-pending,
.vibemart-status-in_payout { background: #fff9c4; color: #f57c00; }
.vibemart-status-draft,
.vibemart-status-on-hold { background: #e0e0e0; color: #616161; }
.vibemart-status-suspended,
.vibemart-status-cancelled,
.vibemart-status-failed,
.vibemart-status-refunded { background: #ffcdd2; color: #c62828; }

/* Empty state */
.vibemart-empty {
  text-align: center;
  padding: 48px 24px;
  background: var(--vm-gray-light);
  border-radius: var(--vm-radius);
}
.vibemart-empty p { color: var(--vm-gray); margin-bottom: 16px; }

/* Pagination */
.vibemart-pagination {
  margin-top: 32px;
  text-align: center;
}
.vibemart-pagination .page-numbers {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 2px;
  border-radius: 6px;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--vm-border);
  color: var(--vm-dark);
}
.vibemart-pagination .page-numbers.current,
.vibemart-pagination .page-numbers:hover {
  background: var(--vm-teal);
  color: #fff;
  border-color: var(--vm-teal);
}

/* Product details */
.vibemart-product {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
}
.vibemart-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 800px) {
  .vibemart-product-grid { grid-template-columns: 1fr; }
}
.product-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--vm-shadow);
}
.product-info h1 {
  margin: 0 0 8px;
  font-size: 28px;
}
.product-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--vm-teal-dark);
  margin-bottom: 16px;
}
.product-vendor {
  padding: 12px 16px;
  background: var(--vm-gray-light);
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}
.product-vendor .rating {
  margin-left: 8px;
  color: var(--vm-yellow);
}
.product-description { margin-bottom: 24px; line-height: 1.6; }
.product-buy {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.product-contents {
  border-top: 1px solid var(--vm-border);
  padding-top: 24px;
}
.product-contents h2 {
  margin-bottom: 16px;
}
.product-contents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.content-item {
  background: #fff;
  border: 1px solid var(--vm-border);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}
.content-item img {
  max-width: 100%;
  max-height: 120px;
  margin-bottom: 8px;
}
.content-item h4 {
  margin: 0 0 4px;
  font-size: 14px;
}
.item-price {
  font-weight: 700;
  color: var(--vm-teal-dark);
}

/* Vendor store page */
.vibemart-store-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
}
.vibemart-store-header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  background: linear-gradient(135deg, var(--vm-cream) 0%, #fff 100%);
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
}
@media (max-width: 700px) {
  .vibemart-store-header { grid-template-columns: 1fr; }
}
.store-selfie img {
  max-height: 240px;
  border-radius: 8px;
  box-shadow: var(--vm-shadow);
}
.store-meta {
  color: var(--vm-gray);
  font-size: 14px;
  margin: 8px 0 16px;
}

/* Product vendor info on WC single-product page */
.vibemart-product-vendor-info {
  background: var(--vm-gray-light);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}
.vibemart-vendor-label {
  color: var(--vm-gray);
  font-weight: 600;
}
.vibemart-vendor-name {
  color: var(--vm-teal-dark);
  font-weight: 700;
  text-decoration: none;
}
.vibemart-vendor-rating {
  margin-left: 8px;
  color: var(--vm-yellow);
  font-weight: 600;
}

/* ==========================================================================
   VibeMart Market Stall Template
   Vintage carnival cart design — used by shop-stall.php and cart-detail.php
   ========================================================================== */

.vm-stall-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 16px 64px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
}

/* Page header sign */
.vm-page-sign {
  text-align: center;
  margin: 0 auto 28px;
  padding: 14px 32px;
  background: #fff;
  border: 3px solid #1c1c1c;
  border-radius: 40px;
  display: inline-block;
  width: max-content;
  max-width: 100%;
  box-shadow: 0 6px 0 rgba(0,0,0,0.12);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.vm-page-sign span {
  display: block;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: #1c1c1c;
  text-transform: uppercase;
}
.vm-page-sign em {
  display: block;
  font-size: 12px;
  font-style: normal;
  color: #666;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* Toolbar */
.vm-stall-toolbar {
  background: #fff;
  border: 2px solid #1c1c1c;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 0 rgba(0,0,0,0.08);
}
.vm-search-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.vm-search-form input[type=search],
.vm-search-form select {
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
  font-family: inherit;
}
.vm-search-form input[type=search] { flex: 1; min-width: 200px; }

/* Featured strip */
.vm-featured-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 4px 16px;
  margin-bottom: 16px;
  scrollbar-width: thin;
}
.vm-featured-chip {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border: 2px solid #1c1c1c;
  border-radius: 10px;
  text-decoration: none;
  color: #1c1c1c;
  min-width: 110px;
  box-shadow: 0 3px 0 rgba(0,0,0,0.08);
  transition: transform 0.15s;
}
.vm-featured-chip:hover { transform: translateY(-2px); }
.vm-featured-chip img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 6px;
  border: 2px solid var(--vm-teal);
}
.vm-featured-chip strong { font-size: 13px; }
.vm-featured-chip span { font-size: 11px; color: var(--vm-gray); margin-top: 2px; }

/* Stalls grid */
.vm-stalls-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

/* The market stall itself */
.vm-stall {
  position: relative;
  background: #fdf6e3;
  border: 3px solid #1c1c1c;
  border-radius: 18px;
  padding: 0 0 24px;
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: 0 14px 36px rgba(0,0,0,0.14);
  overflow: hidden;
}

/* Scalloped awning */
.vm-stall::before {
  content: '';
  display: block;
  height: 26px;
  background:
    radial-gradient(circle at 14px 26px, #fdf6e3 14px, transparent 14.5px),
    var(--vm-teal);
  background-size: 28px 26px;
  background-repeat: repeat-x;
  background-position: 0 0;
}

/* VIBE MART sign on the stall */
.vm-stall-sign {
  display: block;
  margin: 18px auto 0;
  background: #fff;
  border: 3px solid #1c1c1c;
  border-radius: 28px;
  padding: 8px 30px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #1c1c1c;
  text-transform: uppercase;
  width: max-content;
  max-width: 90%;
  box-shadow: 0 4px 0 rgba(0,0,0,0.12);
}

/* Yellow business-name banner */
.vm-stall-banner {
  position: relative;
  margin: 14px 22px 0;
  background: var(--vm-yellow);
  border: 2px solid #1c1c1c;
  border-radius: 6px;
  padding: 10px 60px;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #1c1c1c;
  text-transform: uppercase;
  box-shadow: 0 3px 0 rgba(0,0,0,0.1);
  word-break: break-word;
}
.vm-stall-banner .vm-star {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
}
.vm-stall-banner .vm-star-blue { left: 14px; color: #1e88e5; }
.vm-stall-banner .vm-star-red  { right: 14px; color: #d32f2f; }

/* Stall body: products + seller */
.vm-stall-body {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 20px;
  padding: 24px 24px 0;
}

/* Product slots row */
.vm-stall-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.vm-slot {
  background: #fff;
  border: 2px solid #1c1c1c;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.vm-slot-head {
  padding: 7px 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
}
.vm-slot-head.teal { background: var(--vm-teal); }
.vm-slot-head.red  { background: var(--vm-red); }
.vm-slot-img {
  aspect-ratio: 1 / 1;
  background: #f5f1e8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex: 1;
}
.vm-slot-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.vm-slot-placeholder {
  font-size: 11px;
  color: #aaa;
  font-style: italic;
}
.vm-slot-price {
  background: var(--vm-yellow);
  border-top: 2px solid #1c1c1c;
  margin: 0;
  padding: 6px 8px;
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  color: #1c1c1c;
}

/* "WHO'S BEHIND THIS STALL?" seller card */
.vm-seller {
  background: #fff;
  border: 2px solid #1c1c1c;
  border-radius: 10px;
  overflow: hidden;
  align-self: start;
}
.vm-seller-head {
  background: var(--vm-red);
  color: #fff;
  padding: 10px 8px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.vm-seller-body {
  padding: 14px 12px;
  text-align: center;
}
.vm-seller-selfie {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid var(--vm-teal);
  margin: 0 auto 10px;
  object-fit: cover;
  display: block;
}
.vm-seller-selfie-placeholder {
  background: var(--vm-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--vm-teal-dark);
}
.vm-seller-name {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}
.vm-seller-name a {
  color: #1c1c1c;
  text-decoration: none;
}
.vm-seller-name a:hover { color: var(--vm-teal-dark); }
.vm-seller-bio {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  margin: 0 0 10px;
}
.vm-seller-meta {
  background: var(--vm-teal);
  color: #fff;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
}
.vm-meta-row {
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.vm-meta-row:last-child { border-bottom: none; }
.vm-meta-row small { opacity: 0.8; font-weight: 500; }
.vm-meta-ico { font-size: 14px; }
.vm-meta-member {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.95;
}

/* Stall footer */
.vm-stall-footer {
  position: relative;
  margin-top: 28px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.vm-thank-sign {
  background: #fff;
  border: 2px solid var(--vm-teal);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #1c1c1c;
  transform: rotate(-2deg);
  max-width: 200px;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 3px 0 rgba(0,0,0,0.1);
}
.vm-thank-sign::before { content: "♥ "; color: var(--vm-red); font-size: 14px; }

.vm-stall-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Big yellow starburst price */
.vm-price-burst {
  position: relative;
  background: var(--vm-yellow);
  color: #1c1c1c;
  padding: 14px 22px;
  font-weight: 900;
  text-align: center;
  border: 3px solid #1c1c1c;
  /* starburst via clip-path */
  clip-path: polygon(
    50% 0%, 61% 18%, 83% 12%, 79% 35%, 100% 42%,
    84% 58%, 96% 78%, 73% 75%, 65% 96%, 50% 80%,
    35% 96%, 27% 75%, 4% 78%, 16% 58%, 0% 42%,
    21% 35%, 17% 12%, 39% 18%
  );
  min-width: 130px;
  box-shadow: 0 4px 0 rgba(0,0,0,0.1);
}
.vm-price-burst-lg {
  padding: 22px 32px;
  min-width: 180px;
}
.vm-price-burst .vm-price-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 2px;
}
.vm-price-burst .vm-price-amount {
  display: block;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.vm-price-burst-lg .vm-price-amount {
  font-size: 28px;
}

/* Buy buttons */
.vm-stall-buy {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.vm-buy-hint {
  color: #888;
  font-style: italic;
  font-size: 13px;
}

/* Stall base: wheels + support burst */
.vm-stall-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 0 40px;
  gap: 20px;
}
.vm-wheel {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--vm-red);
  border: 5px solid #1c1c1c;
  position: relative;
  flex: 0 0 auto;
  box-shadow: 0 4px 0 rgba(0,0,0,0.18);
}
.vm-wheel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #1c1c1c;
}
.vm-wheel::after {
  content: "";
  position: absolute;
  inset: 19px;
  border-radius: 50%;
  background: var(--vm-yellow);
  border: 2px solid #1c1c1c;
}
.vm-support-burst {
  flex: 1;
  text-align: center;
  background: var(--vm-yellow);
  color: #1c1c1c;
  border: 2px solid #1c1c1c;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 3px 0 rgba(0,0,0,0.1);
}

/* Cart detail extras */
.vm-breadcrumb {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.vm-breadcrumb a { color: var(--vm-teal-dark); text-decoration: none; font-weight: 600; }
.vm-breadcrumb a:hover { text-decoration: underline; }
.vm-breadcrumb span:last-child { color: #1c1c1c; font-weight: 600; }

.vm-cart-info {
  margin-top: 40px;
  padding: 24px;
  background: #fff;
  border: 2px solid #1c1c1c;
  border-radius: 12px;
  box-shadow: 0 4px 0 rgba(0,0,0,0.08);
}
.vm-cart-title {
  margin: 0 0 12px;
  font-size: 26px;
  color: var(--vm-teal-dark);
}
.vm-cart-description {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}
.vm-cart-description p { margin: 0 0 12px; }
.vm-cart-description p:last-child { margin: 0; }

.vm-cart-contents {
  margin-top: 32px;
}
.vm-cart-contents h2 {
  font-size: 20px;
  color: #1c1c1c;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--vm-yellow);
}
.vm-contents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.vm-content-item {
  background: #fff;
  border: 2px solid #1c1c1c;
  border-radius: 8px;
  padding: 14px;
  text-align: center;
}
.vm-content-item img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  margin-bottom: 8px;
  mix-blend-mode: multiply;
}
.vm-content-item h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
}
.vm-item-price {
  font-weight: 800;
  color: var(--vm-teal-dark);
  margin-bottom: 6px;
}
.vm-content-item p {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.vm-back {
  margin-top: 32px;
  text-align: center;
}
.vm-back a {
  color: var(--vm-teal-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.vm-back a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 980px) {
  .vm-stall-body { grid-template-columns: 1fr; }
  .vm-seller { max-width: 380px; margin: 0 auto; width: 100%; }
  .vm-stall-products { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .vm-stall-products { grid-template-columns: repeat(2, 1fr); }
  .vm-page-sign span { font-size: 22px; letter-spacing: 0.14em; }
  .vm-page-sign em { font-size: 11px; }
  .vm-stall-sign { font-size: 16px; padding: 8px 20px; }
  .vm-stall-banner { font-size: 14px; padding: 8px 44px; }
  .vm-stall-banner .vm-star { font-size: 18px; }
  .vm-stall-base { padding: 0 16px; }
  .vm-wheel { width: 48px; height: 48px; }
  .vm-support-burst { font-size: 11px; padding: 8px 12px; }
  .vm-thank-sign { position: static; transform: none; margin: 0 auto; }
  .vm-stall-footer { flex-direction: column; gap: 16px; }
}
@media (max-width: 480px) {
  .vm-stall-body { padding: 18px 14px 0; }
  .vm-stall-banner { margin: 12px 12px 0; padding: 8px 36px; font-size: 12px; }
  .vm-stall-banner .vm-star { font-size: 14px; }
  .vm-stall-products { grid-template-columns: 1fr 1fr; gap: 8px; }
  .vm-slot-head { font-size: 10px; padding: 5px 4px; }
  .vm-slot-price { font-size: 11px; padding: 5px 4px; }
  .vm-price-burst .vm-price-amount { font-size: 18px; }
  .vm-price-burst-lg .vm-price-amount { font-size: 22px; }
  .vm-page-sign { padding: 10px 18px; }
  .vm-page-sign span { font-size: 18px; }
  .vm-search-form input[type=search],
  .vm-search-form select { width: 100%; }
}
/* === VibeMart v1.0.11 Home / Header / Footer — premium redesign === */

/* =====================================================================
 * FULL-WIDTH BREAK-OUT
 * The [vibemart_home] shortcode is usually rendered inside a theme's
 * .entry-content / .page-content wrapper which has its own max-width
 * and side padding. We force .vm-home to span the full viewport width
 * using the 100vw + negative-margin technique, then re-center internal
 * sections with .vm-home-container. This makes the home page truly
 * edge-to-edge regardless of the active theme.
 * ===================================================================== */
.vm-home {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1a1d23;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Shared layout container — wider than before (1440px) for a more
 * spacious, premium feel. */
.vm-home-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

/* =====================================================================
 * HOME PAGE — Hero (premium redesign)
 * ===================================================================== */
.vm-home-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 130px;
  background:
    linear-gradient(135deg, #0a3d36 0%, #0d4f48 35%, #14695f 70%, #1a8478 100%);
  color: #fff;
}
.vm-home-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(255, 209, 102, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(233, 79, 79, 0.18), transparent 65%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(255, 255, 255, 0.06), transparent 70%);
  pointer-events: none;
}
.vm-home-hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
}
.vm-home-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
  animation: vm-hero-glow-float 12s ease-in-out infinite;
}
.vm-home-hero-glow-1 {
  width: 440px; height: 440px;
  background: rgba(255, 209, 102, 0.35);
  top: -120px; right: -80px;
}
.vm-home-hero-glow-2 {
  width: 380px; height: 380px;
  background: rgba(26, 132, 120, 0.45);
  bottom: -140px; left: -100px;
  animation-delay: -6s;
}
@keyframes vm-hero-glow-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20px, -20px) scale(1.08); }
}

.vm-home-hero-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.vm-home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffd166;
  background: rgba(255, 209, 102, 0.12);
  border: 1px solid rgba(255, 209, 102, 0.4);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.vm-home-hero-headline {
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.04;
  font-weight: 800;
  margin: 0 0 22px;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}
.vm-home-hero-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.6;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
}
.vm-home-hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.vm-home-hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}
.vm-home-trust-item { display: inline-flex; align-items: center; gap: 7px; }
.vm-home-trust-ico { font-size: 15px; }

/* Hero art (right column) */
.vm-home-hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}
.vm-home-hero-art-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -24px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 0 8px rgba(255, 255, 255, 0.04);
  background: #fff;
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.vm-home-hero-art-frame:hover {
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg) translateY(-4px);
}
.vm-home-hero-art-frame img { display: block; width: 100%; height: auto; }
.vm-home-hero-art-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  color: #0d4f48;
  font-weight: 700;
  border-radius: 16px;
  padding: 12px 18px;
  font-size: 13px;
  box-shadow: 0 14px 32px -10px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 2px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: vm-badge-float 6s ease-in-out infinite;
}
.vm-home-hero-art-badge-1 {
  top: 10%; left: -28px;
  animation-delay: 0s;
}
.vm-home-hero-art-badge-2 {
  bottom: 16%; right: -28px;
  background: #ffd166;
  color: #1a1d23;
  animation-delay: -2s;
}
.vm-home-hero-art-badge-3 {
  top: 52%; right: -36px;
  background: rgba(13, 79, 72, 0.96);
  color: #fff;
  animation-delay: -4s;
}
@keyframes vm-badge-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.vm-home-hero-art-badge-stars {
  font-size: 13px;
  color: #ffd166;
  letter-spacing: 1px;
  line-height: 1;
}
.vm-home-hero-art-badge-text {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.vm-home-hero-art-badge-big {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.vm-home-hero-art-badge-emoji {
  font-size: 18px;
  line-height: 1;
}
.vm-home-hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 70px;
  background: #ffffff;
  clip-path: polygon(0 100%, 100% 100%, 100% 35%, 92% 50%, 80% 32%, 65% 52%, 50% 38%, 35% 52%, 20% 32%, 8% 50%, 0 35%);
}

/* =====================================================================
 * HOME PAGE — Trust marquee
 * ===================================================================== */
.vm-home-marquee {
  background: #ffffff;
  border-top: 1px solid #f0f2f5;
  border-bottom: 1px solid #f0f2f5;
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}
.vm-home-marquee::before,
.vm-home-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.vm-home-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0));
}
.vm-home-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255,255,255,0));
}
.vm-home-marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: vm-marquee 32s linear infinite;
  width: max-content;
}
@keyframes vm-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.vm-home-marquee-item {
  font-size: 14px;
  font-weight: 600;
  color: #5b6470;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.vm-home-marquee-item:first-child,
.vm-home-marquee-item:nth-child(2) { color: #0d4f48; }

/* =====================================================================
 * HOME PAGE — Stats strip (premium cards)
 * ===================================================================== */
.vm-home-stats {
  background: #ffffff;
  padding: 64px 0 72px;
  text-align: center;
  position: relative;
}
.vm-home-section-title {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: #1a1d23;
  line-height: 1.15;
}
.vm-home-section-title-center { text-align: center; }
.vm-home-section-sub {
  font-size: 16px;
  color: #5b6470;
  margin: 0;
  line-height: 1.5;
}
.vm-home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.vm-home-stat {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 18px;
  padding: 34px 24px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 12px 28px -12px rgba(13, 79, 72, 0.12);
  border: 1px solid #eef0f3;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}
.vm-home-stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d4f48, #1a8478, #ffd166);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.vm-home-stat:hover {
  transform: translateY(-5px);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 20px 40px -16px rgba(13, 79, 72, 0.2);
}
.vm-home-stat:hover::before { opacity: 1; }
.vm-home-stat-num {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  background: linear-gradient(135deg, #0d4f48 0%, #1a8478 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.vm-home-stat-label {
  font-size: 13px;
  color: #5b6470;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =====================================================================
 * HOME PAGE — Section common
 * ===================================================================== */
.vm-home-section { padding: 88px 0; }
.vm-home-featured      { background: #f8f9fb; }
.vm-home-vendors       { background: #ffffff; }
.vm-home-testimonials  { background: #f8f9fb; }
.vm-home-how           { background: #ffffff; }
.vm-home-cta           { background: #f8f9fb; padding: 64px 0 96px; }

.vm-home-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.vm-home-section-head-center {
  justify-content: center;
  text-align: center;
}
.vm-home-section-head-center .vm-home-section-sub {
  max-width: 620px;
  margin: 0 auto;
}
.vm-home-carts-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* =====================================================================
 * HOME PAGE — Featured vendors grid (premium cards)
 * ===================================================================== */
.vm-home-vendors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vm-home-vendor-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid #eef0f3;
  border-radius: 18px;
  padding: 22px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}
.vm-home-vendor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 79, 72, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}
.vm-home-vendor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -12px rgba(13, 79, 72, 0.22);
  border-color: rgba(13, 79, 72, 0.3);
}
.vm-home-vendor-card:hover::after { opacity: 1; }
.vm-home-vendor-avatar-wrap {
  flex: 0 0 60px;
  width: 60px; height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #0d4f48, #1a8478);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px -6px rgba(13, 79, 72, 0.4);
  ring: 2px solid #fff;
  outline: 2px solid #fff;
  outline-offset: -2px;
}
.vm-home-vendor-avatar { width: 100%; height: 100%; object-fit: cover; display: block; }
.vm-home-vendor-avatar-placeholder {
  color: #fff; font-weight: 700; font-size: 24px;
}
.vm-home-vendor-info { flex: 1; min-width: 0; position: relative; }
.vm-home-vendor-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1a1d23;
  margin-bottom: 3px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.vm-home-vendor-business {
  display: block;
  font-size: 13px;
  color: #5b6470;
  margin-bottom: 8px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.vm-home-vendor-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 12px; color: #5b6470;
}
.vm-home-vendor-rating { font-weight: 600; color: #1a1d23; }
.vm-home-vendor-rating small { color: #8a929b; font-weight: 500; }

/* =====================================================================
 * HOME PAGE — Testimonials
 * ===================================================================== */
.vm-home-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vm-home-testimonial-card {
  position: relative;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 20px;
  padding: 36px 30px 28px;
  margin: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 12px 28px -16px rgba(0, 0, 0, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vm-home-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 22px 44px -18px rgba(13, 79, 72, 0.22);
}
.vm-home-testimonial-quote-mark {
  position: absolute;
  top: 18px; right: 26px;
  font-size: 72px;
  line-height: 1;
  color: rgba(13, 79, 72, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  pointer-events: none;
}
.vm-home-testimonial-quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #2c333b;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.vm-home-testimonial-stars {
  display: flex;
  gap: 2px;
  font-size: 16px;
  letter-spacing: 1px;
}
.vm-star-on { color: #ffd166; }
.vm-star-off { color: #d9dde2; }
.vm-home-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid #f0f2f5;
}
.vm-home-testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d4f48, #1a8478);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 44px;
}
.vm-home-testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.vm-home-testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1d23;
}
.vm-home-testimonial-business {
  font-size: 12px;
  color: #5b6470;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* =====================================================================
 * HOME PAGE — How it works (premium cards)
 * ===================================================================== */
.vm-home-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.vm-home-how-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid #eef0f3;
  border-radius: 20px;
  padding: 44px 30px 32px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 12px 28px -16px rgba(0, 0, 0, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}
.vm-home-how-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0d4f48, #1a8478, #ffd166);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.vm-home-how-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 22px 44px -18px rgba(13, 79, 72, 0.18);
}
.vm-home-how-card:hover::before { opacity: 1; }
.vm-home-how-num {
  position: absolute;
  top: 18px; left: 22px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d4f48, #1a8478);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px -6px rgba(13, 79, 72, 0.5);
}
.vm-home-how-ico {
  font-size: 42px;
  margin-bottom: 16px;
  line-height: 1;
  display: inline-block;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13, 79, 72, 0.08), rgba(255, 209, 102, 0.12));
  display: flex; align-items: center; justify-content: center;
  margin-left: auto; margin-right: auto;
}
.vm-home-how-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #1a1d23;
}
.vm-home-how-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #5b6470;
  margin: 0;
}

/* =====================================================================
 * HOME PAGE — Become a vendor CTA (premium)
 * ===================================================================== */
.vm-home-cta-card {
  background:
    linear-gradient(135deg, #0d4f48 0%, #14695f 60%, #0a3d36 100%);
  border-radius: 28px;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -28px rgba(13, 79, 72, 0.5);
}
.vm-home-cta-card::before {
  content: "";
  position: absolute;
  top: -60%; right: -15%;
  width: 70%; height: 220%;
  background: radial-gradient(ellipse, rgba(255, 209, 102, 0.22), transparent 60%);
  pointer-events: none;
}
.vm-home-cta-card::after {
  content: "";
  position: absolute;
  bottom: -50%; left: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(ellipse, rgba(26, 132, 120, 0.35), transparent 65%);
  pointer-events: none;
}
.vm-home-cta-copy { flex: 1; min-width: 0; position: relative; z-index: 1; }
.vm-home-cta-copy h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.vm-home-cta-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 28px;
  max-width: 620px;
}
.vm-home-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.vm-home-cta-actions .vm-btn-pro-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.vm-home-cta-actions .vm-btn-pro-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
}
.vm-home-cta-art {
  flex: 0 0 160px;
  font-size: 140px;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0.96;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
}
.vm-home-cta-art-emoji { display: block; }

/* =====================================================================
 * SITE HEADER
 * ===================================================================== */
.vm-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid #eef0f3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.22s ease, background 0.22s ease;
}
.vm-site-header.vm-site-header-scrolled {
  box-shadow: 0 8px 28px -12px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.98);
}
.vm-site-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.vm-site-header-left { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }

.vm-site-header-burger {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.vm-site-header-burger span {
  display: block;
  width: 18px; height: 2px;
  background: #1a1d23;
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.vm-site-header-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1a1d23;
  flex: 0 0 auto;
}
.vm-site-header-logo-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0d4f48, #1a8478);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 10px -3px rgba(13, 79, 72, 0.4);
}
.vm-site-header-logo-mark span { color: #ffd166; }
.vm-site-header-logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.vm-site-header-logo-text span { color: #0d4f48; }

.vm-site-header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1 1 auto;
  margin-left: 16px;
}
.vm-site-header-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #5b6470;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.vm-site-header-nav-link:hover { background: #f6f7f9; color: #0d4f48; }
.vm-site-header-nav-link-active { color: #0d4f48; background: rgba(13, 79, 72, 0.08); }

.vm-site-header-search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 1 260px;
  background: #f6f7f9;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.vm-site-header-search:focus-within {
  background: #fff;
  border-color: rgba(13, 79, 72, 0.4);
  box-shadow: 0 0 0 4px rgba(13, 79, 72, 0.08);
}
.vm-site-header-search-ico {
  position: absolute; left: 12px;
  font-size: 14px;
  opacity: 0.6;
  pointer-events: none;
}
.vm-site-header-search input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 9px 12px 9px 32px;
  font-size: 14px;
  outline: none;
  color: #1a1d23;
  width: 100%;
  border-radius: 10px;
}

.vm-site-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.vm-site-header-icon-btn {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #eef0f3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1a1d23;
  font-size: 17px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.vm-site-header-icon-btn:hover { background: #f6f7f9; border-color: #d8dce2; }
.vm-site-header-icon { line-height: 1; }
.vm-site-header-cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: #e94f4f;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  min-width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
  border: 2px solid #fff;
}
.vm-site-header-dashboard-btn { display: inline-flex; align-items: center; gap: 6px; }
.vm-site-header-dashboard-ico { font-size: 14px; }
.vm-site-header-signup-btn { display: inline-flex; }

.vm-site-header-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 79, 72, 0.32);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.18s ease;
}
.vm-site-header-backdrop.vm-active { display: block; opacity: 1; }
body.vm-header-nav-open { overflow: hidden; }

/* =====================================================================
 * SITE FOOTER
 * ===================================================================== */
.vm-site-footer {
  background: #0e1518;
  color: #c4ccd4;
  padding: 64px 0 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.vm-site-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.vm-site-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}
.vm-site-footer-col h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin: 0 0 18px;
}
.vm-site-footer-col ul { list-style: none; padding: 0; margin: 0; }
.vm-site-footer-col li { margin-bottom: 10px; }
.vm-site-footer-col a {
  color: #c4ccd4;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}
.vm-site-footer-col a:hover { color: #ffd166; }

.vm-site-footer-col-about { }
.vm-site-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 16px;
}
.vm-site-footer-logo-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a8478, #14695f);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.vm-site-footer-logo-mark span { color: #ffd166; }
.vm-site-footer-logo-text { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.vm-site-footer-logo-text span { color: #1a8478; }
.vm-site-footer-about {
  font-size: 14px;
  line-height: 1.6;
  color: #9aa3ad;
  margin: 0 0 20px;
}
.vm-site-footer-social { display: flex; gap: 8px; }
.vm-site-footer-social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s ease, transform 0.15s ease;
}
.vm-site-footer-social-link:hover {
  background: #0d4f48;
  color: #fff;
  transform: translateY(-2px);
}

.vm-site-footer-col-newsletter p { font-size: 14px; line-height: 1.5; color: #9aa3ad; margin: 0 0 14px; }
.vm-site-footer-newsletter { display: flex; gap: 8px; margin-bottom: 18px; }
.vm-site-footer-newsletter input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  color: #fff;
  outline: none;
}
.vm-site-footer-newsletter input::placeholder { color: #6b7480; }
.vm-site-footer-newsletter input:focus { border-color: #1a8478; }
.vm-site-footer-payments { display: flex; gap: 6px; flex-wrap: wrap; }
.vm-site-footer-payment {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #c4ccd4;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.vm-site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.vm-site-footer-copyright { font-size: 13px; color: #6b7480; }
.vm-site-footer-legal { display: flex; gap: 18px; }
.vm-site-footer-legal a { font-size: 13px; color: #9aa3ad; text-decoration: none; transition: color 0.15s ease; }
.vm-site-footer-legal a:hover { color: #ffd166; }

/* =====================================================================
 * RESPONSIVE — Home / Header / Footer (v1.0.11)
 * ===================================================================== */

/* Tablet (<= 1024px) */
@media (max-width: 1024px) {
  .vm-home-container { padding: 0 28px; }
  .vm-home-hero { padding: 72px 0 110px; }
  .vm-home-hero-inner { grid-template-columns: 1fr; gap: 44px; text-align: center; padding: 0 28px; }
  .vm-home-hero-cta-row { justify-content: center; }
  .vm-home-hero-trust { justify-content: center; }
  .vm-home-hero-sub { margin-left: auto; margin-right: auto; }
  .vm-home-hero-art { order: -1; max-width: 480px; margin: 0 auto; }
  .vm-home-hero-art-badge-1 { left: -10px; }
  .vm-home-hero-art-badge-2 { right: -10px; }
  .vm-home-hero-art-badge-3 { right: 0; }

  .vm-home-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-home-carts-grid { grid-template-columns: repeat(3, 1fr); }
  .vm-home-vendors-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-home-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-home-how-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-home-cta-card { padding: 40px 36px; flex-direction: column; text-align: center; gap: 20px; }
  .vm-home-cta-actions { justify-content: center; }
  .vm-home-cta-art { flex: 0 0 auto; font-size: 88px; }

  .vm-site-header-inner { padding: 0 28px; }
  .vm-site-header-search { flex: 1 1 200px; }
  .vm-site-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* Tablet portrait / large phone (<= 860px) */
@media (max-width: 860px) {
  .vm-home-hero { padding: 56px 0 96px; }
  .vm-home-section { padding: 56px 0; }
  .vm-home-cta { padding: 48px 0 72px; }
  .vm-home-carts-grid { grid-template-columns: repeat(2, 1fr); }

  /* Header collapses to hamburger */
  .vm-site-header-burger { display: inline-flex; }
  .vm-site-header-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 20px 40px;
    margin: 0;
    transform: translateX(-100%);
    transition: transform 0.22s ease;
    z-index: 999;
    overflow-y: auto;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15);
  }
  .vm-site-header-nav.vm-open { transform: translateX(0); }
  .vm-site-header-nav-link {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 10px;
    border-bottom: 1px solid #f0f2f5;
  }
  .vm-site-header-search {
    display: none;
    order: 5;
    flex: 1 1 100%;
    margin-top: 14px;
  }
  .vm-site-header-inner.vm-mobile-search-visible .vm-site-header-search { display: flex; }
  .vm-site-header-right .vm-site-header-signup-btn { display: none; }
  .vm-site-header-dashboard-text { display: none; }
  .vm-site-header-dashboard-btn { width: 40px; padding: 0; justify-content: center; }
}

/* Mobile (<= 640px) */
@media (max-width: 640px) {
  .vm-home-container { padding: 0 18px; }
  .vm-home-hero { padding: 48px 0 84px; }
  .vm-home-hero-inner { padding: 0 18px; gap: 36px; }
  .vm-home-hero-eyebrow { font-size: 11px; padding: 5px 12px; }
  .vm-home-hero-cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .vm-home-hero-cta-row .vm-btn-pro-lg { width: 100%; }
  .vm-home-hero-trust { gap: 14px; justify-content: center; font-size: 12px; }
  .vm-home-hero-art-frame { transform: none; max-width: 100%; }
  .vm-home-hero-art-badge-1 { left: 8px; top: 6%; padding: 10px 14px; }
  .vm-home-hero-art-badge-2 { right: 8px; bottom: 10%; padding: 10px 14px; }
  .vm-home-hero-art-badge-3 { display: none; }
  .vm-home-hero-art-badge-big { font-size: 18px; }

  .vm-home-marquee { padding: 14px 0; }
  .vm-home-marquee-track { gap: 32px; animation-duration: 24s; }
  .vm-home-marquee-item { font-size: 13px; }

  .vm-home-stats { padding: 44px 0 52px; }
  .vm-home-stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .vm-home-stat { padding: 24px 16px; }

  .vm-home-section { padding: 48px 0; }
  .vm-home-section-head { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 32px; }
  .vm-home-section-head-center { align-items: center; }
  .vm-home-carts-grid { grid-template-columns: 1fr; }
  .vm-home-vendors-grid { grid-template-columns: 1fr; }
  .vm-home-testimonials-grid { grid-template-columns: 1fr; }
  .vm-home-how-grid { grid-template-columns: 1fr; }
  .vm-home-cta-card { padding: 32px 22px; border-radius: 20px; }
  .vm-home-cta-art { font-size: 72px; }
  .vm-home-cta-actions { flex-direction: column; align-items: stretch; }
  .vm-home-cta-actions .vm-btn-pro-lg { width: 100%; }

  .vm-home-testimonial-card { padding: 28px 22px 22px; }
  .vm-home-testimonial-quote-mark { font-size: 56px; top: 12px; right: 18px; }
  .vm-home-how-card { padding: 38px 24px 28px; }
  .vm-home-how-ico { width: 64px; height: 64px; font-size: 32px; }

  /* Header mobile */
  .vm-site-header-inner { padding: 0 16px; height: 64px; gap: 10px; }
  .vm-site-header-logo-text { font-size: 17px; }
  .vm-site-header-logo-mark { width: 32px; height: 32px; font-size: 14px; }
  .vm-site-header-icon-btn { width: 36px; height: 36px; font-size: 15px; }
  .vm-site-header-right .vm-btn-pro-sm { padding: 7px 12px; font-size: 12px; }
  .vm-site-header-nav { top: 64px; padding: 14px 16px 32px; }

  /* Footer mobile */
  .vm-site-footer { padding: 48px 0 0; }
  .vm-site-footer-inner { padding: 0 18px; }
  .vm-site-footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .vm-site-footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px 0; }
  .vm-site-footer-legal { justify-content: center; flex-wrap: wrap; }
  .vm-site-footer-newsletter { flex-direction: column; }
  .vm-site-footer-newsletter .vm-btn-pro-sm { width: 100%; }
}

/* Small phone (<= 420px) */
@media (max-width: 420px) {
  .vm-home-hero-headline { font-size: 32px; }
  .vm-home-stats-grid { grid-template-columns: 1fr 1fr; }
  .vm-home-stat-num { font-size: 28px; }
  .vm-home-how-ico { font-size: 28px; width: 56px; height: 56px; }
  .vm-site-header-logo-text { display: none; }
  .vm-home-cta-art { font-size: 60px; }
}

/* =====================================================================
 * Mobile-friendly: Dashboard tabs + Pro UI buttons get tighter spacing
 * (extra safety net for theme-builder pages where vibemart-dashboard.css
 * might not load)
 * ===================================================================== */
@media (max-width: 640px) {
  .vm-dash-tabs { gap: 4px; }
  .vm-dash-tab { padding: 8px 12px; font-size: 12px; }
  .vm-btn-pro-lg { padding: 12px 18px; font-size: 14px; }
  .vm-btn-pro-block { width: 100%; }
  .vm-shop-grid { grid-template-columns: 1fr !important; }
}

/* End of v1.0.11 Home / Header / Footer additions */
