    .carousel-container {
      position: relative;
      background: transparent;
      user-select: none;
      overflow: hidden;
      border-radius: 40px;
    }

    .carousel-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .carousel-track {
      position: relative;
      width: 100%;
    }

    .carousel-slide {
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      visibility: hidden;
      transition: none;
    }

    .carousel-slide.active {
      position: relative;
      opacity: 1;
      visibility: visible;
      transition: none;
      z-index: 2;
    }

    .carousel-slide.sliding-in-right {
      position: absolute;
      opacity: 1;
      visibility: visible;
      transform: translateX(100%);
      z-index: 3;
      animation: slideInFromRight 0.5s ease forwards;
    }

    .carousel-slide.sliding-in-left {
      position: absolute;
      opacity: 1;
      visibility: visible;
      transform: translateX(-100%);
      z-index: 3;
      animation: slideInFromLeft 0.5s ease forwards;
    }

    .carousel-slide.sliding-out-left {
      position: relative;
      opacity: 1;
      visibility: visible;
      z-index: 1;
      animation: slideOutToLeft 0.5s ease forwards;
    }

    .carousel-slide.sliding-out-right {
      position: relative;
      opacity: 1;
      visibility: visible;
      z-index: 1;
      animation: slideOutToRight 0.5s ease forwards;
    }

    @keyframes slideInFromRight {
      from {
        transform: translateX(100%);
      }
      to {
        transform: translateX(0);
      }
    }

    @keyframes slideInFromLeft {
      from {
        transform: translateX(-100%);
      }
      to {
        transform: translateX(0);
      }
    }

    @keyframes slideOutToLeft {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-100%);
      }
    }

    @keyframes slideOutToRight {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(100%);
      }
    }

    .carousel-slide a {
      display: block;
      line-height: 0;
      cursor: pointer;
    }

    .carousel-slide picture {
      display: block;
      line-height: 0;
    }

    .carousel-slide img,
    .carousel-slide video {
      width: 100%;
      height: auto;
      display: block;
      pointer-events: none;
      user-select: none;
      -webkit-user-drag: none;
    }

    /* Media queries for responsive content */
    @media (min-width: 769px) {
      .mobile-media {
        display: none !important;
      }
    }

    @media (max-width: 768px) {
      .desktop-media {
        display: none !important;
      }
      .carousel-container {
        border-radius: 20px;
      }
    }

    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #FFF;
      color: #D25A73 !important;
      border: 1px solid #F5F3F1;
      width: 60px;
      height: 60px;
      cursor: pointer;
      z-index: 10;
      transition: background 0.3s, opacity 0.3s;
      border-radius: 50%;
      opacity: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .carousel-arrow span {
      font-size:32px;
    }

    .carousel-arrow:hover {
      opacity: 0.9;
    }

    .carousel-arrow:active {
      transform: translateY(-50%) scale(0.95);
    }

    .carousel-arrow.prev {
      left: 15px;
    }

    .carousel-arrow.next {
      right: 15px;
    }

    .carousel-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }

    .carousel-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      border: 2px solid rgba(255, 255, 255, 0.8);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .carousel-dot:hover {
      background: rgba(255, 255, 255, 0.7);
      transform: scale(1.1);
    }

    .carousel-dot.active {
      background: rgba(255, 255, 255, 1);
      transform: scale(1.2);
    }

    .carousel-timeline {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: rgba(255, 255, 255, 0.3);
      z-index: 10;
      overflow: hidden;
    }

    .carousel-timeline-bar {
      height: 100%;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 1));
      width: 0;
      transition: width 0.05s linear;
    }

    @media (max-width: 768px) {
      .carousel-arrow {
        width: 52px;
        height: 52px;
        top: 15px;
        transform: none;
      }

      .carousel-arrow.prev {
        left: auto;
        right: 68px;
      }

      .carousel-arrow.next {
        right: 10px;
      }

      .carousel-arrow:active {
        transform: scale(0.95);
      }

      .carousel-dots {
        bottom: 15px;
        gap: 8px;
      }

      .carousel-dot {
        width: 10px;
        height: 10px;
      }
    }