/*  Cursor Blob for Carousel */
.carousel-cursor-zone {
  cursor: none !important;
  position: relative;
}

/* Only apply on desktop (pointer: fine = mouse) */
@media (pointer: fine) {
  #cursor-blob {
    position: fixed;
    width: 80px;
    height: 80px;
    border-radius: 50%;

    /* Liquid glass effect */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.5),
      0 4px 24px rgba(0, 0, 0, 0.12);

    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease,
                opacity 0.25s ease;
    z-index: 99999;
    top: 0; left: 0;
    opacity: 0;
  }

  #cursor-blob span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    user-select: none;
  }
}

.carousel-cursor-zone,
.carousel-cursor-zone * {
  cursor: none !important;
}