  .swiper {
    width: 100%; 
    max-width: 800px; 
    height: 400px !important; /* Высота Card (340) + padding-top (60) */
    overflow: visible !important;
    padding-top: 60px;
    margin: 0 auto;
    position: relative;
  }

  .swiper-wrapper {
    overflow: visible !important;
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important; /* Отключает горизонтальный полет */
  }

  .swiper-slide {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    
    /* Центрируем карточку и немного уменьшаем по умолчанию */
    transform: translate(-50%, -50%) scale(0.9) !important;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Легкая тень для объема */
    
    /* Чтобы контент внутри карточки был по центру */
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: transform 700ms cubic-bezier(0.23, 1, 0.32, 1), opacity 700ms ease !important;
    will-change: transform, opacity;
  }

  /* СОСТОЯНИЯ СТОПКИ */

  /* 1. Центральная */
  .swiper-slide[data-position="1"] {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 3 !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }

  /* 2. Вторая (Сзади) */
  .swiper-slide[data-position="2"] {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2 !important;
    transform: translate(-45%, -60%) scale(0.98) !important;
    filter: blur(1px) !important;
  }

  /* 3. Третья (Самая дальняя) */
  .swiper-slide[data-position="3"] {
    opacity: 0.8 !important;
    visibility: visible !important;
    z-index: 1 !important;
    transform: translate(-40%, -70%) scale(0.96) !important;
    filter: blur(2px) !important;
  }

  /* Уходящая карта */
  .is-leaving {
    opacity: 0 !important;
    z-index: 4 !important;
    transform: translate(-75%, -50%) scale(0.9) !important;
  }