/* =========================================================
   VENDITAI — DESIGN TOKENS
   ========================================================= */
:root {
  --gold: #d4af37;
  --dark: #000000;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --text-dark: #000000;
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
}

* {
  box-sizing: border-box;
}

/* ... your existing CSS remains unchanged here ... */

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   VIDEO POPOVER
   ========================================================= */
#video-popover {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

#video-popover.show {
  opacity: 1;
}
