  body {
      overflow: hidden;
      font-family: "Roboto", serif;
      background: linear-gradient(135deg, black, #220033);
  }

  .carousel {
      position: relative;
      z-index: 1;
      height: 100vh;
      overflow: hidden;
      pointer-events: none;
  }

  .carousel-item {
      --items: 10;
      --width: clamp(220px, 30vw, 300px);
      --height: clamp(300px, 40vw, 400px);
      --x: calc(var(--active) * 600%);
      --y: calc(var(--active) * 200%);
      --rot: calc(var(--active) * 120deg);
      /* overflow: hidden; */
      position: absolute;
      z-index: var(--zIndex);
      width: var(--width);
      height: var(--height);
      margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
      border-radius: 10px;
      top: 50%;
      left: 50%;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      transform-origin: 0% 100%;
      /* box-shadow: 0 10px 50px 10px rgba(0, 0, 0, 0.5);
      background: black; */
      pointer-events: all;
      transform: translate(var(--x), var(--y)) rotate(var(--rot));
      transition: transform 0.8s cubic-bezier(0, 0.02, 0, 1);
  }

  .carousel-item .carousel-box {
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
      opacity: 1;
      font-family: "Orelo-sw-db", serif;
      perspective: 1000px;
  }

  /* .carousel-item .carousel-box:before {
      content: "";
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
      pointer-events: none;
  } */

  .carousel-item .title {
      position: absolute;
      z-index: 1;
      color: #fff;
      bottom: 20px;
      left: 20px;
      transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
      font-size: clamp(19px, 3vw, 30px);
      text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  }

  .carousel-item .num {
      position: absolute;
      z-index: 1;
      color: #fff;
      top: 10px;
      left: 20px;
      transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
      font-size: clamp(20px, 10vw, 80px);
  }

  .carousel-item img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover;
      pointer-events: none;
  }

  /* Card flip effect */
  .card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.8s;
      transform-style: preserve-3d;
      -webkit-transform-style: preserve-3d;
      -moz-transform-style: preserve-3d;
  }

  .carousel-item:hover .card-inner {
      transform: rotateY(180deg);
  }

  .card-front,
  .card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      -webkit-backface-visibility: hidden;
      -moz-backface-visibility: hidden;
      backface-visibility: hidden;
      border-radius: 10px;
      overflow: hidden;
      transform: rotateY(0deg);
  }

  .card-front {
      background: black;
  }

  .card-back {
      background: linear-gradient(135deg, #1a1a2e, #16213e);
      transform: rotateY(180deg);
      -webkit-transform: rotateY(180deg);
      -moz-transform: rotateY(180deg);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
      box-sizing: border-box;
  }

  .card-back img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
  }

  .card-back-content {
      position: relative;
      z-index: 1;
      color: #fff;
      text-align: center;
      max-height: 100%;
      overflow-y: auto;
  }

  .back-title {
      font-size: clamp(18px, 2.5vw, 24px);
      font-weight: bold;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  .back-short-description {
      font-size: clamp(12px, 1.5vw, 16px);
      margin-bottom: 12px;
      opacity: 0.9;
      line-height: 1.4;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  }

  .back-description {
      font-size: clamp(15px, 1.2vw, 18px);
      opacity: 1;
      line-height: 1.2;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
      max-height: 250px;
      overflow-y: auto;
  }

  /* Scrollbar styling for description */
  .back-description::-webkit-scrollbar {
      width: 3px;
  }

  .back-description::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 3px;
  }

  .back-description::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.3);
      border-radius: 3px;
  }

  .back-description::-webkit-scrollbar-thumb:hover {
      background: rgba(255, 255, 255, 0.5);
  }

  /* Ensure front side elements are positioned correctly */
  .card-front .title,
  .card-front .num {
      position: absolute;
      z-index: 2;
  }

  .card-front img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .layout {
      position: absolute;
      z-index: 0;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
  }

  .layout:before {
      content: "";
      position: absolute;
      z-index: 1;
      top: 0;
      left: 90px;
      width: 10px;
      height: 100%;
      border: 1px solid #fff;
      border-top: none;
      border-bottom: none;
      opacity: 0.15;
  }

  .layout .box {
      position: absolute;
      bottom: 0;
      left: 30px;
      color: #fff;
      transform-origin: 0% 10%;
      transform: rotate(-90deg);
      font-size: 9px;
      line-height: 1.4;
      text-transform: uppercase;
      opacity: 0.4;
  }


  /* Product Gallery Carousel Wrapper */
  .product-gallery-carousel-wrapper {
      position: relative;
      height: 100vh;
      overflow: hidden;
  }

  /* Floating
 Background Icons */
  .floating-icons {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
  }

  .floating-icon {
      position: absolute;
      width: 60px;
      height: 60px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      opacity: 0.6;
      transition: opacity 0.6s ease, transform 0.8s ease;
      animation: float 6s ease-in-out infinite;
  }

  .floating-icon-1 {
      top: 15%;
      left: 10%;
      animation-delay: 0s;
      animation-duration: 8s;
  }

  .floating-icon-2 {
      top: 25%;
      right: 15%;
      animation-delay: 1s;
      animation-duration: 7s;
  }

  .floating-icon-3 {
      top: 60%;
      left: 8%;
      animation-delay: 2s;
      animation-duration: 9s;
  }

  .floating-icon-4 {
      top: 70%;
      right: 20%;
      animation-delay: 3s;
      animation-duration: 6s;
  }

  .floating-icon-5 {
      top: 40%;
      left: 25%;
      animation-delay: 4s;
      animation-duration: 8.5s;
  }

  .floating-icon-6 {
      top: 80%;
      right: 40%;
      animation-delay: 5s;
      animation-duration: 7.5s;
  }

  .floating-icon-7 {
      top: 90%;
      right: 60%;
      animation-delay: 5s;
      animation-duration: 7.5s;
  }

  .floating-icon-8 {
      top: 70%;
      right: 12%;
      animation-delay: 5s;
      animation-duration: 7.5s;
  }

  .floating-icon-9 {
      top: 10%;
      right: 40%;
      animation-delay: 5s;
      animation-duration: 7.5s;
  }

  /* Floating animation */
  @keyframes float {

      0%,
      100% {
          transform: translateY(0px) rotate(0deg);
      }

      25% {
          transform: translateY(-20px) rotate(2deg);
      }

      50% {
          transform: translateY(-10px) rotate(-1deg);
      }

      75% {
          transform: translateY(-15px) rotate(1deg);
      }
  }

  /* Responsive adjustments for floating icons */
  @media (max-width: 768px) {
      .carousel-item {
          --x: calc(var(--active) * 400%);
      }

      .product-gallery-carousel-wrapper {
          height: 80vh;
      }

      .floating-icon {
          width: 40px;
          height: 40px;
      }

      .floating-icon-1 {
          top: 20%;
          left: 5%;
      }

      .floating-icon-2 {
          top: 30%;
          right: 10%;
      }

      .floating-icon-3 {
          top: 65%;
          left: 5%;
      }

      .floating-icon-4 {
          top: 75%;
          right: 15%;
      }

      .floating-icon-5 {
          top: 45%;
          left: 20%;
      }

      .floating-icon-6 {
          top: 85%;
          right: 35%;
      }

      .floating-icon-7 {
          top: 90%;
          right: 50%;
      }

      .floating-icon-8 {
          top: 70%;
          right: 12%;
      }

      .floating-icon-9 {
          top: 10%;
          right: 40%;
      }
  }