/*
Theme Name: VendStop Vending Theme
Theme URI: https://www.vendstopllc.com/
Author: OpenAI
Description: A multi-purpose vending-inspired WordPress theme for commerce and services with WooCommerce sections, custom icons, and flexible business lanes.
Version: 3.0.0
Text Domain: vendstop-vending
*/

:root {
  --vm-bg-top: #707070;
  --vm-bg-mid: #383838;
  --vm-bg-bottom: #111111;
  --vm-white: #ffffff;
  --vm-text: rgba(255,255,255,0.94);
  --vm-muted: rgba(255,255,255,0.76);
  --vm-panel: rgba(20,20,20,0.6);
  --vm-panel-strong: rgba(10,10,10,0.76);
  --vm-border: rgba(255,255,255,0.12);
  --vm-yellow: #ffd45a;
  --vm-blue: #77dcff;
  --vm-pink: #ff89d4;
  --vm-green: #79e29f;
  --vm-red: #ff8b8b;
  --vm-shadow: 0 24px 60px rgba(0,0,0,0.35);
  --vm-radius-lg: 28px;
  --vm-radius-md: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--vm-text);
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(180deg, var(--vm-bg-top) 0%, var(--vm-bg-mid) 16%, var(--vm-bg-bottom) 100%);
}
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.96; }
img { max-width: 100%; height: auto; }
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  clip: auto !important;
  clip-path: none;
  display: block;
  height: auto;
  left: 10px;
  top: 10px;
  width: auto;
  z-index: 100000;
  background: #fff;
  color: #111;
  padding: 12px 16px;
  border-radius: 8px;
}

.vm-wrap {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}
.vm-site-wrap {
  min-height: 100vh;
  padding: 40px 0 72px;
}
.vm-section {
  padding-top: 24px;
  margin-top: 24px;
}
.vm-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(12,12,12,0.68);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vm-header-inner {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.vm-branding { display: flex; flex-direction: column; gap: 3px; }
.vm-logo {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.vm-logo span { color: var(--vm-yellow); }
.vm-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.84rem;
}
.vm-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.vm-menu, .vm-footer-menu, .vm-footer-links, .vm-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vm-menu {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.vm-menu li { list-style: none; }
.vm-menu a, .vm-nav > a {
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
}
.vm-nav-cta, .vm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.vm-nav-cta {
  background: #fff;
  color: #111;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.vm-btn:hover, .vm-nav-cta:hover { transform: translateY(-2px); }

.vm-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}
.vm-badge, .vm-eyebrow, .vm-builder-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.94);
  font-size: 0.86rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.vm-title, .vm-entry-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.98;
  margin: 18px 0 0;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.vm-title span {
  display: block;
  background: linear-gradient(90deg, #ffe17c, #ff85d0, #76dcff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vm-text, .vm-entry-content, .vm-post-card p {
  margin-top: 22px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--vm-muted);
}
.vm-entry-content > *:first-child { margin-top: 0; }
.vm-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.vm-btn-primary {
  background: #fff;
  color: #111;
  box-shadow: 0 14px 35px rgba(0,0,0,0.28);
}
.vm-btn-secondary {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
}
.vm-stats, .vm-grid-3, .vm-feature-row, .vm-builder-grid, .vm-contact-grid {
  display: grid;
  gap: 16px;
}
.vm-stats { grid-template-columns: repeat(3, 1fr); margin-top: 30px; }
.vm-grid-3, .vm-feature-row { grid-template-columns: repeat(3, 1fr); }
.vm-contact-grid { grid-template-columns: 1.2fr 0.8fr; }
.vm-stat, .vm-feature, .vm-service-card, .vm-post-card, .vm-side-card, .vm-builder-card, .vm-faq-item {
  background: var(--vm-panel);
  border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius-md);
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.vm-stat strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
  color: #fff;
}
.vm-section-heading {
  margin-bottom: 18px;
}
.vm-section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 14px 0 0;
  letter-spacing: -0.03em;
}
.vm-section-heading p { color: var(--vm-muted); max-width: 760px; }

.vm-machine-frame {
  position: relative;
  border-radius: 34px;
  padding: 14px;
  background: linear-gradient(145deg, #f6f6f6 0%, #cfcfcf 12%, #848484 46%, #262626 82%, #0f0f0f 100%);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.7), inset 0 -2px 0 rgba(0,0,0,0.45), 0 35px 90px rgba(0,0,0,0.55);
}
.vm-machine-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 26px;
  border: 2px solid rgba(255,255,255,0.18);
}
.vm-machine {
  background: linear-gradient(180deg, #3d3d3d 0%, #242424 28%, #111111 100%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
}
.vm-top-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  background: linear-gradient(180deg, #d8d8d8 0%, #bfbfbf 100%);
  border-bottom: 2px solid rgba(0,0,0,0.24);
}
.vm-address {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f4f4f4;
  border-radius: 12px;
  padding: 11px 14px;
  color: rgba(17,17,17,0.78);
  font-size: 14px;
  border: 1px solid rgba(0,0,0,0.12);
}
.vm-dots { display: flex; gap: 8px; }
.vm-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.38), 0 1px 2px rgba(0,0,0,0.28);
}
.vm-dot.green { background: #6ee395; }
.vm-dot.yellow { background: #f7c85b; }
.vm-dot.red { background: #f48f8f; }
.vm-machine-main {
  display: grid;
  grid-template-columns: 1fr 178px;
  gap: 16px;
  padding: 18px;
}
.vm-window-shell {
  border-radius: 22px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
}
.vm-window {
  position: relative;
  padding: 12px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.01)),
    linear-gradient(180deg, #111 0%, #1a1a1a 100%);
  overflow: hidden;
}
.vm-window::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,0.22), transparent 24%, transparent 72%, rgba(255,255,255,0.08));
  pointer-events: none;
}
.vm-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}
.vm-slot { position: relative; }
.vm-card {
  display: block;
  min-height: 124px;
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 8px 18px rgba(0,0,0,0.18);
}
.vm-card.orange { background: linear-gradient(180deg, #ffcd74, #f79a38); color: #231604; }
.vm-card.blue { background: linear-gradient(180deg, #b2ebff, #56b5ec); color: #041a2c; }
.vm-card.purple { background: linear-gradient(180deg, #d2b3ff, #9872eb); color: #130929; }
.vm-card.green { background: linear-gradient(180deg, #b9f4c7, #61c879); color: #082111; }
.vm-card.pink { background: linear-gradient(180deg, #ffc5ea, #f48cc9); color: #2a0c1f; }
.vm-card.lime { background: linear-gradient(180deg, #e9ffb4, #afd950); color: #203106; }
.vm-card.cyan { background: linear-gradient(180deg, #b8ffff, #65d6d6); color: #082626; }
.vm-card.red { background: linear-gradient(180deg, #ffcbcb, #f08f8f); color: #2d0a0a; }
.vm-card-code {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.46);
  font-size: 0.7rem;
  font-weight: 700;
}
.vm-card-inner {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.vm-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.1;
}
.vm-icon {
  font-size: 1.5rem;
  font-weight: 700;
}
.vm-coil {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.vm-coil-ring, .vm-coil-core {
  display: inline-block;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,0.22);
}
.vm-coil-ring { width: 26px; height: 26px; }
.vm-coil-core { width: 34px; height: 14px; }
.vm-product-strip {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.vm-product {
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
}
.vm-control-panel {
  display: grid;
  gap: 12px;
}
.vm-control-stack {
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
}
.vm-display {
  background: #091706;
  color: #afff6e;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.vm-keypad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.vm-keypad span, .vm-yellow-button, .vm-card-slot, .vm-receipt-slot {
  border-radius: 10px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.12);
}
.vm-keypad span { height: 22px; }
.vm-yellow-button { height: 52px; background: linear-gradient(180deg, #ffde72, #e0aa18); }
.vm-card-slot { height: 42px; }
.vm-receipt-slot { height: 26px; }
.vm-help-card {
  min-height: 100px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  padding: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.vm-drop-tray-shell {
  padding: 0 18px 18px;
}
.vm-drop-tray {
  height: 50px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, #0d0d0d, #1d1d1d 30%, #070707);
  border: 1px solid rgba(255,255,255,0.08);
}

.vm-builder {
  background: rgba(255,255,255,0.03);
  border-radius: 28px;
  padding: 10px 0 0;
}
.vm-builder-grid {
  grid-template-columns: repeat(3, 1fr);
}
.vm-builder-card input {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 12px;
}
.vm-builder-summary { margin-top: 16px; }
.vm-form-placeholder {
  margin-top: 16px;
  padding: 18px;
  border-radius: 16px;
  border: 2px dashed rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.03);
}
.vm-faq-list { display: grid; gap: 16px; }
.vm-faq-item h3, .vm-service-card h3, .vm-feature h3, .vm-builder-card h3, .vm-side-card h3 { margin-top: 0; }
.vm-split-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}
.vm-side-card, .vm-cta-panel {
  background: var(--vm-panel-strong);
  border: 1px solid var(--vm-border);
  border-radius: 24px;
  padding: 24px;
}
.vm-cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}
.vm-content-area { padding-top: 36px; }
.vm-center { text-align: center; }
.vm-meta { color: rgba(255,255,255,0.56); font-size: 0.9rem; }

.vm-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(8,8,8,0.72);
  padding: 42px 0 24px;
}
.vm-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}
.vm-footer-text { color: rgba(255,255,255,0.64); max-width: 430px; }
.vm-widget-title { margin-top: 0; margin-bottom: 12px; }
.vm-footer-links li { margin-bottom: 10px; color: rgba(255,255,255,0.72); }
.vm-footer-bottom {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.vm-footer-menu { display: flex; gap: 14px; flex-wrap: wrap; }

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce div.product,
.woocommerce-page div.product,
.woocommerce-cart-form,
.woocommerce-checkout-review-order,
.woocommerce .cart-collaterals .cart_totals {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 18px;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 14px;
  background: #fff;
  color: #111;
  font-weight: 700;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
  color: #fff;
}

@media (max-width: 1080px) {
  .vm-hero-grid,
  .vm-split-hero,
  .vm-contact-grid,
  .vm-cta-panel,
  .vm-footer-grid {
    grid-template-columns: 1fr;
  }
  .vm-machine-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .vm-stats,
  .vm-grid-3,
  .vm-feature-row,
  .vm-builder-grid {
    grid-template-columns: 1fr;
  }
  .vm-header-inner,
  .vm-nav,
  .vm-menu,
  .vm-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .vm-row {
    grid-template-columns: 1fr;
  }
  .vm-product-strip {
    grid-template-columns: repeat(7, 1fr);
  }
}



.vm-home-hero { align-items: flex-start; }
.vm-stats-compact .vm-stat strong { font-size: 1.4rem; }
.vm-icon-svg, .vm-svg-icon { display: inline-flex; align-items: center; justify-content: center; }
.vm-svg-icon svg { width: 34px; height: 34px; display: block; }
.vm-service-card .vm-svg-icon,
.vm-side-card .vm-svg-icon,
.vm-post-card .vm-svg-icon,
.vm-card .vm-svg-icon { color: #4da3ff; }
.vm-card .vm-icon-svg .vm-svg-icon svg { width: 40px; height: 40px; }
.vm-card-inner p { margin: 10px 0 0; font-size: 0.88rem; line-height: 1.45; color: rgba(0,0,0,0.68); }
.vm-machine-side { width: 220px; display: flex; flex-direction: column; gap: 18px; }
.vm-panel-screen, .vm-panel-help, .vm-panel-grid { border-radius: 22px; border: 1px solid rgba(255,255,255,0.08); background: rgba(10,10,10,0.88); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06); }
.vm-panel-screen { padding: 26px 18px; text-align: center; }
.vm-panel-label { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: rgba(255,255,255,.45); }
.vm-panel-status { margin-top: 10px; font-size: 1.1rem; font-weight: 800; color: var(--vm-blue); }
.vm-panel-grid { padding: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.vm-panel-grid span { display: block; min-height: 48px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); }
.vm-panel-help { padding: 18px; background: rgba(56,43,10,0.92); }
.vm-panel-help-title { text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; color: #d8c37a; font-weight: 800; }
.vm-panel-help p { margin: 14px 0 18px; color: rgba(255,255,255,0.82); line-height: 1.6; }
.vm-btn-accent { background: var(--vm-yellow); color: #111; box-shadow: 0 14px 35px rgba(0,0,0,0.28); }
.vm-woo-surface .products { margin-top: 0 !important; }
.vm-final-cta { padding-top: 34px; padding-bottom: 34px; }
.vm-actions-center { justify-content: center; }
.vm-center { text-align: center; }
.vm-section-heading h2 { margin: 12px 0 0; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.08; }
.vm-section-heading p { max-width: 860px; }
.vm-feature h3, .vm-service-card h3, .vm-side-card h3, .vm-builder-card h3, .vm-post-card h2 { margin-top: 14px; margin-bottom: 10px; }
.vm-form-placeholder { margin-top: 18px; padding: 18px; border-radius: 14px; border: 1px dashed rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.03); }
.vm-check-list li { margin-bottom: 10px; color: var(--vm-muted); }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 16px;
}
.woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .price { color: var(--vm-yellow); }
.woocommerce ul.products li.product a img, .woocommerce-page ul.products li.product a img { border-radius: 14px; }
@media (max-width: 1100px) {
  .vm-hero-grid { grid-template-columns: 1fr; }
  .vm-machine-side { width: 100%; }
}
@media (max-width: 820px) {
  .vm-stats, .vm-grid-3, .vm-feature-row, .vm-contact-grid, .vm-builder-grid { grid-template-columns: 1fr; }
  .vm-header-inner { flex-direction: column; align-items: flex-start; }
  .vm-machine-main { flex-direction: column; }
}
