/* ── Charly O's Pizza — Custom Styles ── */

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

/* ── Selection ── */
::selection {
  background: #fce7eb;
  color: #6c1729;
}

/* ── Scrollbar (subtle burgundy) ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #fdf8f4; }
::-webkit-scrollbar-thumb { background: #f9d0d9; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #f3a6b8; }

/* ── Focus visible ── */
:focus-visible {
  outline: 2px solid #b92643;
  outline-offset: 2px;
}

/* ── Smooth scroll offset for fixed nav ── */
section[id] {
  scroll-margin-top: 80px;
}

/* ── Image aspect ratio fallback ── */
.img-zoom {
  aspect-ratio: 5/4;
}
.img-zoom img {
  width: 100%;
  height: 100%;
}
