.carousel_wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
  }

  .carousel_container {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .carousel_card {
    position: absolute;
    width: 260px;
    height: 460px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) scale(0.7);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    transition: transform 0.5s ease, z-index 0.5s, opacity 0.5s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    transition: ease-in-out 0.2s;
  }

  .carousel_card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    scale: 1.04;
  }

  .carousel_badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    padding: 2px 10px 2px 7px;
    font-size: 12px;
    border-radius: 50px;
    display: flex;
    flex-direction: row;
    color: var(--color-accent);
    align-items: center;
    font-weight: 500;
    gap: 2px;
}

  .carousel_card.premium .carousel_badge {
    background: var(--color-accent);
    color: white;
  }

  .carousel_badge .material-symbols-rounded {
    font-size: 18px;
  }

  .carousel_title_wrapper {
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    text-align: left;
  }

  .carousel_card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
  }

  /* Active + Nearby Cards */
  .carousel_card.active {
    transform: translateX(-50%) scale(1.1);
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
  }

  .carousel_card.left1 {
    transform: translateX(-140%) scale(0.95);
    z-index: 4;
    opacity: 1;
    pointer-events: auto;
  }

  .carousel_card.right1 {
    transform: translateX(40%) scale(0.95);
    z-index: 4;
    opacity: 1;
    pointer-events: auto;
  }

  .carousel_card.left2 {
    transform: translateX(-200%) scale(0.8);
    z-index: 3;
    opacity: 0.8;
    pointer-events: auto;
  }

  .carousel_card.right2 {
    transform: translateX(100%) scale(0.8);
    z-index: 3;
    opacity: 0.8;
    pointer-events: auto;
  }


  .carousel_controls {
    display: flex;
    margin: auto;
    bottom: -50px;
    left: 50%;
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 10;
    justify-content: center;
  }

  .carousel_arrow {
    background: white;
    border: 1px solid var(--color-light);
    color: var(--color-accent);
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .carousel_arrow:hover {
    background: rgba(0,0,0,0.3);
  }

  .carousel_try_btn {
    background-color: #339af0;
    border: none;
    color: white;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .carousel_try_btn:hover {
    background-color: #228be6;
  }