/* ==========================================================================
   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%; }
}
