/* CONTENITORE SCROLL */
.tg-scroll{
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: calc(300px * 3 + 48px); /* SOLO 3 CARD VISIBILI */
  margin: 40px auto;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}

/* CARD */
.tg-card{
  flex: 0 0 300px;
  background: transparent;
  text-align: center;
}

/* IMMAGINE */
.tg-card img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* TITOLO */
.tg-title{
  margin-top: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
/* ===== BOTTONE PREMIUM BIANCO ===== */
.tg-button{
  margin-top: 16px;
  padding: 14px 26px;

  background: #ffffff;
  color: #000000 !important;

  border: none;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;

  text-decoration: none !important;

  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: all 0.25s ease;
}

/* HOVER: effetto premium */
.tg-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
  background: #f5f5f5;
  color: #000000;
}

/* CLICK */
.tg-button:active{
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}





