@font-face {
  font-family: 'PPNeueMontreal-Extrabold';
  src: url('/fonts/PPNeueMontreal-Extrabold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   GLOBAL STYLES & RESETS
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "PPNeueMontreal-Extrabold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  background-color: #fde2e7;
  color: #333333;
  overflow-x: hidden;
  width: 100%;
}

main {
  max-width: auto;
  margin: 0 auto;
  padding: 0 2rem;
  background-color: #fde2e7;

}
.bag-reveal-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  background-color: #000; /* Matching your black background assets */
  overflow: hidden;
}

.bag-container {
  position: relative;
  width: 400px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* Items hidden behind the bag */
.bag-item {
  position: absolute;
  max-width: 100px;
  z-index: 1;
  opacity: 0;
  transform: scale(0.2);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-bag-trigger {
  position: relative;
  width: 100%;
  z-index: 2;
  transition: transform 0.3s ease;
}
