.hero-section { position: relative;}
.hero-image { width: 100%;}
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: #fff;
    text-shadow: 0px 0px 9px #000000;
    line-height: 1.1;
}

.hero-text p { margin: 0; color:white; }
.new-entry-1 { font-size: clamp(27px, 3vw, 45px); font-weight: bold; }
.new-entry-2 { font-size: clamp(22px, 3vw, 25px); }

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    padding: 10px 0;
    border-bottom: solid 1px #eaeaea;
}

.marquee {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.marquee-inner {
    display: flex;
    animation: marquee linear infinite;
}

.marquee span {
    flex: 0 0 auto;
    padding: 0 2rem;
    white-space: nowrap;
    font-size: initial;
    font-weight: 600;
    color: #333;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


@media (max-width: 770px)
{
    .site-phone
    {
        padding: 8px 0px !important;
    }

}

@media (max-width: 720px) 
{
   .recensione-card{text-align: center;}
}

.recensioni-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  padding: 10px 40px;
  scroll-behavior: smooth;
  position: relative;
}

.recensione-card {
  flex: 0 0 300px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  scroll-snap-align: start;
}

.stars {
  color: #f4c542;
  font-size: 1.2rem;
  margin: 8px 0;
}

.text-truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pulsanti frecce */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ccc;
  font-size: 2rem;
  line-height: 1;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 20;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  opacity: 0.8;
}
.arrow:hover {
  opacity: 1;
}
.arrow.left { left: 0; }
.arrow.right { right: 0; }
a.toggle-text {
    font-weight: 600;
}

.recensioni-controls button
{
  outline: none !important;
}

.recensioni-controls
{
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
}