 * {
      box-sizing: border-box;
    }
    
    
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 20px;
      overflow: hidden;
    }
    
    h2 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 2.5rem;
      font-weight: 300;
      color: #2c3e50;
    }
    .swiper_section
    {
      margin: 0px 0px 50px 0;
    }
    .swiper_section h3
    {
text-align: center;
font-size: 2.3rem;
margin: 10px 0 10px 0;    
}

    .swiper {
      width: 100%;
      padding: 20px 40px 60px 40px;
      overflow: hidden;
      z-index: 1000 !important;
      mask: linear-gradient(to right, transparent 0px, black 40px, black calc(100% - 40px), transparent 100%);
      -webkit-mask: linear-gradient(to right, transparent 0px, black 40px, black calc(100% - 40px), transparent 100%);
    }
    
    .swiper-wrapper {
      align-items: stretch;
      width: fit-content;
    }
    
    .swiper-slide {
      background: white;
      border-radius: 0px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: auto;
      min-height: 420px;
    }
    
    .swiper-slide:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    }
    
    .swiper-slide img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }
    
    .swiper-slide:hover img {
      transform: scale(1.05);
    }
    
    .card-content {
      padding: 24px;
      text-align: center;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    
    .price {
      color: #e67e22;
      font-weight: 700;
      font-size: 1.3rem;
      margin: 0 0 10px 0;
      text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    
    .boat-name {
      color: #2c3e50;
      font-weight: 600;
      font-size: 1.4rem;
      margin: 0 0 20px 0;
      line-height: 1.4;
      font-family: 'jost';
      text-transform: uppercase;
    }
    
    .info-icons {
      display: flex;
      justify-content: center;
      gap: 24px;
      font-size: 14px;
      margin: 20px 0;
      color: #7f8c8d;
      flex-wrap: wrap;
    }
    
    .info-icons span {
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 500;
    }
    
    .book-btn {
      display: inline-block;
      background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
      color: white;
      padding: 14px 28px;
      margin-top: auto;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 16px rgba(231, 76, 60, 0.3);
    }
    
    .book-btn:hover {
      background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    }
    
    .swiper-button-next,
    .swiper-button-prev {
      color: #e74c3c;
      background: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
      top: 50%;
      margin-top: -25px;
    }
    
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      background: #e74c3c;
      color: white;
      transform: scale(1.1);
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 18px;
      font-weight: 600;
    }
    
    .swiper-pagination {
      bottom: 20px;
    }
    
    .swiper-pagination-bullet {
      background: #e74c3c;
      opacity: 0.4;
      transition: all 0.3s ease;
    }
    
    .swiper-pagination-bullet-active {
      opacity: 1;
      transform: scale(1.2);
    }
    
    /* Responsive Design */
    
    /* Mobile First (fino a 479px) */
    @media (max-width: 479px) {
      .container {
        padding: 15px;
      }
      
      h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
      }
      
      .swiper {
        padding: 15px 0 50px;
      }
      
      .swiper-slide {
        min-height: 380px;
      }
      
      .swiper-slide img {
        height: 180px;
      }
      
      .card-content {
        padding: 18px;
      }
      
      .price {
        font-size: 1.1rem;
      }
      
      .boat-name {
        font-size: 1rem;
      }
      
      .info-icons {
        gap: 16px;
        font-size: 13px;
      }
      
      .book-btn {
        padding: 12px 24px;
        font-size: 0.8rem;
      }
      
      .swiper-button-next,
      .swiper-button-prev {
        display: none;
      }
    }
    
    /* Small Mobile (480px - 767px) */
    @media (min-width: 480px) and (max-width: 767px) {
      .swiper {
        padding: 20px 30px 60px 30px;
        mask: linear-gradient(to right, transparent 0px, black 30px, black calc(100% - 30px), transparent 100%);
        -webkit-mask: linear-gradient(to right, transparent 0px, black 30px, black calc(100% - 30px), transparent 100%);
      }
      
      h2 {
        font-size: 2rem;
        margin-bottom: 30px;
      }
      
      .swiper-slide {
        min-height: 400px;
      }
      
      .swiper-slide img {
        height: 200px;
      }
      
      .swiper-button-next,
      .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
      }
      
      .swiper-button-next::after,
      .swiper-button-prev::after {
        font-size: 16px;
      }
    }
    
    /* Tablet (768px - 1023px) */
    @media (min-width: 768px) and (max-width: 1023px) {
      .container {
        padding: 25px 10px;
      }
      
      .swiper {
        mask: linear-gradient(to right, transparent 0px, black 40px, black calc(100% - 40px), transparent 100%);
        -webkit-mask: linear-gradient(to right, transparent 0px, black 40px, black calc(100% - 40px), transparent 100%);
      }
      
      h2 {
        font-size: 2.2rem;
        margin-bottom: 35px;
      }
      
      .swiper-slide {
        min-height: 440px;
      }
      
      .swiper-slide img {
        height: 240px;
      }
      
      .card-content {
        padding: 22px;
      }
      
      .price {
        font-size: 1.2rem;
      }
      
      .info-icons {
        gap: 20px;
      }
    }
    
    /* Desktop (1024px+) */
    @media (min-width: 1024px) {
      .container {
        padding: 30px 10px;
      }
      
      .swiper {
        padding: 25px 60px 70px 60px;
        mask: linear-gradient(to right, transparent 0px, black 60px, black calc(100% - 60px), transparent 100%);
        -webkit-mask: linear-gradient(to right, transparent 0px, black 60px, black calc(100% - 60px), transparent 100%);
      }
      
      .swiper-slide {
        min-height: 460px;
      }
      
      .swiper-slide img {
        height: 260px;
      }
      
      .card-content {
        padding: 26px;
      }
      
      .swiper-button-next {
        right: 20px;
        z-index: 10;
      }
      
      .swiper-button-prev {
        left: 20px;
        z-index: 10;
      }
    }
    
    /* Large Desktop (1400px+) */
    @media (min-width: 1400px) {
      .swiper-slide {
        min-height: 480px;
      }
      
      .swiper-slide img {
        height: 280px;
      }
      
      .card-content {
        padding: 28px;
      }
    }
    