    /* ================= SLIDER ================= */
    .hero-slider {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }
    .hero-slider1 {
      position: relative;
      height: 30vh;
      overflow: hidden;
    }
    .hero-slider1 .slide, .hero-slider .slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .hero-slider1 .slide.active, .hero-slider .slide.active {
      opacity: 1;
      z-index: 1;
    }

    .hero-slider1 .overlay, .hero-slider .overlay {
      position: absolute;
      inset: 0;
      //background: rgba(0,0,0,0.45);
    }

    .hero-slider1 .content, .hero-slider .content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding: 20px;
    }

    .hero-slider1 h1, .hero-slider h1 {
      font-size: clamp(1.4rem, 1.9vw, 2.5rem);
      margin: -30px 0 -20px 0; text-shadow: 2px 1px 1px rgb(255, 255, 255);
    }
    .testo-slide{font-size: clamp(1rem, 1vw, 2rem); margin-top: 10px; text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.71); font-weight: bold;}
    /* ================= DOTS ================= */
    .slider-dots {
      position: absolute;
      bottom: 25px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 1;
    }

    .slider-dots button {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,0.4);
      cursor: pointer;
      padding: 0;
    }

    .slider-dots button.active {
      background: #fff;
    }

    /* ================= ARROWS (DESKTOP ONLY) ================= */
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.4);
      border: none;
      color: #fff;
      font-size: 32px;
      width: 50px;
      height: 50px;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slider-arrow.left {
      left: 20px;
    }

    .slider-arrow.right {
      right: 20px;
    }
    .slide .subheading {
      font-family: "Great Vibes", cursive;
      font-size: 50px;
      color: #ebe2d3;
//      -webkit-text-stroke: 1px #ebe2d3;      
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.71);
    }
    
    .slider-text h1 {
      text-transform: uppercase;
      font-size: 40px;
      color: #fff;
      line-height: 1.7;
      font-weight: normal;
      letter-spacing: 1px;
      line-height: 1;
    }

    /* Nascondi frecce su mobile */
    @media (max-width: 768px) {
      .slider-arrow {
        display: none;
      }
    }
