.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

.cursor-follower.hovering {
  width: 80px;
  height: 80px;
  background-color: rgba(245, 139, 84, 0.2);
  border-color: transparent;
  backdrop-filter: blur(4px);
}

.cursor-follower.hovering-text {
  width: 80px;
  height: 80px;
  background-color: var(--orange);
  border-color: transparent;
  color: white;
}

.cursor-dot.hidden, .cursor-follower.hidden {
  opacity: 0;
}
/* Global massive typography styles */
.massive-text-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ink);
  color: var(--bg);
}
.massive-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15vw;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: -0.05em;
  line-height: 0.8;
}
.parallax-section {
  position: relative;
  overflow: hidden;
}

/* 3D hover effects for product cards */
.product-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}
.product-card .img-ph {
  transform: translateZ(30px);
  transition: transform 0.3s ease;
}
.product-card:hover .img-ph {
  transform: translateZ(50px) scale(1.05);
}
.product-card .product-body {
  transform: translateZ(20px);
}

@media (max-width: 768px) {
  .cursor-dot, .cursor-follower {
    display: none !important;
  }
}
