/* CSS PERSONALIZZATO PER STORES - GALVANISHOP */

/* Stili per i contatti sempre visibili */
.store-contacts-visible {
  margin-top: 15px;
  margin-bottom: 15px;
}

.store-contacts-visible p {
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.store-contacts-visible .material-icons {
  margin-right: 8px;
  color: #acaaa6;
  font-size: 18px;
}

.store-contacts-visible a {
  color: #333;
  text-decoration: none;
}

.store-contacts-visible a:hover {
  color: #007bff;
  text-decoration: underline;
}

/* Stili per gli orari in formato compatto */
.store-hours-compact {
  padding: 0 15px;
}

.compact-hours-table {
  width: 100%;
  border-collapse: collapse;
}

.compact-hours-table tr {
  height: auto;
  padding: 8px 0;
}

.compact-hours-table th {
  text-align: left;
  font-weight: 600;
  padding: 8px 10px 8px 0;
  vertical-align: top;
  white-space: nowrap;
  font-size: 14px;
  color: #333;
}

.compact-hours-table td {
  padding: 8px 0 8px 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Responsive per mobile */
@media (max-width: 575px) {
  .store-hours-compact {
    padding: 10px 0;
    margin-top: 15px;
  }
  
  .compact-hours-table th,
  .compact-hours-table td {
    font-size: 13px;
    padding: 6px 5px;
  }
  
  .compact-hours-table th {
    white-space: normal;
  }
  
  .store-contacts-visible {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .store-hours-compact {
    border-left: none;
    border-top: 1px solid #ebebeb;
    padding-top: 15px;
    margin-top: 15px;
  }
}

/* Aggiustamenti per la sezione About quando contiene solo la nota */
.store-item-footer .card-block p {
  margin-bottom: 0;
}
