@import url("https://fonts.googleapis.com/css2?family=Anonymous+Pro:wght@400;700&display=swap");

:root {
  --accent: #e01b1b;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: "Anonymous Pro", monospace;
  background: #fff;
  overflow: hidden;
}


.sale-box {
  position: absolute;
  top: 24px;
  left: 24px;
  color: var(--accent);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 6px;
  padding: 20px 32px;
  text-transform: uppercase;
  background: #fff;
  z-index: 10;
}


.image-gallery {
  margin-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.image-card {
  position: relative;
}

.image-card img {
  height: 320px;
  width: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-card:hover img {
  transform: scale(1.03);
}


.price-tag {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  font-weight: 700;
  color: black;
  background-color: var(--accent);
  padding: 6px 14px;
  border-radius: 0px;
  letter-spacing: 2px;
  opacity: 0;
  transition: opacity 0.2s ease-out;
  z-index: 5;
}


.savings-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Anonymous Pro", monospace;
  font-size: 24px;
  font-weight: 700;
  color: black;
  background-color: var(--accent);
  padding: 12px 20px;
  border-radius: 0px;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 6;
}
.savings-overlay.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}


body {
  cursor: none;
}

.cursor-canvas,
.floating-blocks-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.cursor-canvas { z-index: 9999; }
.floating-blocks-canvas { z-index: 1; }