


:root {
  --font-sans: 'Montserrat', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
}


* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


:focus-visible {
  outline: 2px dashed theme('colors.brand.500');
  outline-offset: 2px;
}


.aspect-square {
  aspect-ratio: 1 / 1;
}


.fill-amber-500 {
  fill: #f59e0b;
}
.stroke-amber-500 {
  stroke: #f59e0b;
}


.tab-panel.hidden {
  display: none;
}


html {
  scroll-behavior: smooth;
}


#sticky-add-to-cart {
  box-shadow: 0 -8px 24px rgba(0,0,0,0.06);
}


#mobile-menu {
  transition: max-height 200ms ease-out;
}
#mobile-menu.hidden {
  max-height: 0;
  overflow: hidden;
}