.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
}

html, body{
    font-family: "Roboto", sans-serif;
    height: 100%;
}

.offer-box {
    background-color: #1c1c1c;
    border-radius: 10px;
    padding: 10px;
    color: white;
    transition: transform 0.3s ease;
}

.offer-box:hover{
    transform: scale(1.05);
}

.offer-logo img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}
.offer-button {
    background-color: #f4a623;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    width: 100%;
    cursor: pointer;
}
.info-icon {
    background-color: #e5e5e5;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: bold;
    margin: auto;
}
.no-bullets {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size:12px;
}

.no-bullets li{
    padding:2px;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9); /* overlay nero traslucido */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.gap-2 > * {
  margin-right: 0.5rem;
}

.gap-2 > *:last-child {
  margin-right: 0;
}

#smc{
    display: none;
    visibility: hidden;
    width: 2px;
    height: 2px;
    overflow: none;
}

@media (max-width: 768px) {
  .img-mobile-half {
    width: 50% !important;
  }
}