/* =========================================================
   Utilities & Accessibility
========================================================= */

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--vcom-accent);
  outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Text helpers */
.text-muted {
  color: var(--vcom-muted);
}

/* Spacing helpers */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: .25rem !important; }
.mt-2 { margin-top: .5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mb-0 { margin-bottom: 0 !important; }

/* Layout helpers */
.btn-row {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

/* Container */
.container {
  max-width: var(--vcom-max);
  margin-inline: auto;
  padding: 0 1rem;
}

.desktop-only { display: block; }
.mobile-only  { display: none; }

@media (max-width: 960px) {
  .desktop-only { display: none; }
  .mobile-only  { display: block; }
}

html, body {
  overflow-x: clip;
}

a.added_to_cart.wc-forward {
  display: none !important;
}

.vcom-atc-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111;
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  z-index: 999999;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}

.vcom-atc-toast.show {
  opacity: 1;
  transform: translateY(0);
}