 /* Carousel Styles */
      .carousel-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
      }

      .carousel-track {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        width: 100%;
      }

      .carousel-slide {
        min-width: 100%;
        height: 100%;
        position: relative;
        flex-shrink: 0;
        overflow: hidden;
        z-index: 2;

      }

      .carousel-slide img {
        width: 115%;
        height: 115%;
        object-fit: cover;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
        transition: transform 0.15s ease-out;
        will-change: transform;
      }

      .carousel-nav {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 20;
      }

      .carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid rgba(255, 255, 255, 0.8);
      }

      .carousel-dot.active {
        background: #ff3366;
        width: 28px;
        border-radius: 5px;
        border-color: #ff3366;
      }

      .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.7);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.5);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 50;
        transition: all 0.3s ease;
        font-size: 28px;
        font-weight: bold;
        pointer-events: auto;
        user-select: none;
      }

      .carousel-arrow:hover {
        background: rgba(255, 51, 102, 1);
        border-color: #ff3366;
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 0 20px rgba(255, 51, 102, 0.5);
      }

      .carousel-arrow:active {
        transform: translateY(-50%) scale(0.95);
      }

      .carousel-arrow.prev {
        left: 15px;
      }

      .carousel-arrow.next {
        right: 15px;
      }

      .carousel-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
      }

      /* Auto-play indicator */
      .carousel-timer {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff3366, #ff6b9d);
        width: 0;
        transition: width 5s linear;
        z-index: 20;
      }

      .carousel-timer.active {
        width: 100%;
      }

      /* Image counter */
      .carousel-counter {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        z-index: 20;
        backdrop-filter: blur(10px);
      }