.comparison-slider {
    position: relative;
    overflow: hidden;
}
.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: white;
    cursor: ew-resize;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.comparison-handle::after {
    content: "separator";
    font-family: 'Material Symbols Outlined';
    font-size: 24px;
    color: #e92b34;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.material-symbols-outlined.fill-current {font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;}
.beer-slider {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
  }
  
  .beer-handle{background-color: #e92b34; color: #fff;}
  .beer-range:focus~.beer-handle{background-color: #e92b34; color: #fff;}

  /* Carousel Styles */
  .carousel-container {
    position: relative;
  }

  .carousel-wrapper {
    position: relative;
  }

  .carousel-slide {
    transition: opacity 0.5s ease-in-out;
  }

  .carousel-slide.opacity-100 {
    z-index: 10;
  }

  .carousel-slide.opacity-0 {
    z-index: 1;
  }

  .carousel-prev,
  .carousel-next {
    cursor: pointer;
  }

  .carousel-prev:hover,
  .carousel-next:hover {
    transform: translateY(-50%) scale(1.1);
  }

  .carousel-indicator {
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .carousel-indicator.active {
    width: 2rem;
  }