@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');

.mmrtb-wrap {
  font-family: "Host Grotesk", sans-serif;
}

/* DESKTOP */
.mmrtb-wrap .ingredienti-tabella {
  display: block;
  margin-bottom: 20px;
}

.mmrtb-wrap .ingredienti-tabella table {
  width: 100%;
  border-collapse: collapse;
}

.mmrtb-wrap .ingredienti-tabella th,
.mmrtb-wrap .ingredienti-tabella td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
  vertical-align: top;
}

.mmrtb-wrap .ingredienti-tabella th {
  background-color: #f5f5f5;
  font-weight: 700;
}

/* MOBILE base: nascosto su desktop */
.mmrtb-wrap .nutrizione-mobile {
  display: none;
}

/* Header vuoto: niente testo, ma mantiene griglia */
.mmrtb-wrap .mmrtb-th-empty {
  color: transparent;
}

/* MOBILE */
@media screen and (max-width: 768px) {
  .mmrtb-wrap .ingredienti-tabella {
    display: none;
  }

  .mmrtb-wrap .nutrizione-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1rem;
  }

  .mmrtb-wrap .mmrtb-card-item {
    background-color: #f0f0f0;
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .mmrtb-wrap .mmrtb-card-title {
    font-weight: 700;
    font-size: 15px;
    color: #000;
    line-height: 1.3;
    margin-bottom: 2px;
  }

  .mmrtb-wrap .mmrtb-card-detail {
    font-size: 15px;
    color: #000;
    font-weight: 400;
    line-height: 1.3;
  }
}

