:root {
  --color-primary: #f07d00;    /* Arancione brand */
  --color-dark: #2e2f2f;       /* Grigio scuro */
  --color-light: #f5f5f5;      /* Sfondo chiaro */
  --color-border: #e0dfde;
}

/* GLOBAL */
body {
  font-family: "Open Sans", sans-serif;
  color: var(--color-dark);
  margin: 0;
  padding: 0;
  background: var(--color-light);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.2s;
}

a:hover {
  color: #d86f00;
  text-decoration: underline;
}

/* HEADER */
.header {
  background: #ffffff;             /* sfondo bianco */
  color: #2e2f2f;                  /* testo grigio scuro */
  padding: 25px 0;
  text-align: center;
  border-bottom: 2px solid #f07d00; /* linea arancione brand */
}

.header img {
  max-width: 220px;
  filter: none;                    /* nessuna modifica al logo */
}

/* INFO BAR */
.infobar {
  background: #f07d00;             /* arancione brand */
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* CONTENT */
.content {
  max-width: 950px;
  margin: 35px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.product-title {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  background: var(--color-dark);
  color: #fff;
  padding: 18px 25px;
  text-transform: uppercase;
  border-bottom: 4px solid var(--color-primary);
}

.product-body {
  padding: 25px;
  line-height: 1.7;
}

.product-body hr {
  border: 0;
  border-top: 1px solid var(--color-border);
  margin: 25px 0;
}

.data-sheet {
  background: #fafafa;
  padding: 15px;
  border-left: 4px solid var(--color-primary);
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
  white-space: pre-wrap;
  overflow-x: auto;
}

/* FOOTER */
.footer {
  background: var(--color-dark);
  color: #ddd;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 950px;
  margin: 0 auto;
}

.footer-col {
  flex: 1;
  min-width: 220px;
  margin: 15px 10px;
}

.footer .head {
  color: var(--color-primary);
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer p,
.footer td {
  color: #eee;
}

.footer img {
  max-width: 100px;
}

.hours-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}

.hours-table td {
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-table td:first-child {
  width: 38%;
  font-weight: 600;
  color: #fff; /* Giorni ben visibili */
}

.hours-table td:last-child {
  text-align: right;
  color: #ccc;
}

/* COPYRIGHT */
.copyright {
  text-align: center;
  margin-top: 25px;
  font-size: 13px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .product-title {
    font-size: 22px;
    padding: 15px;
  }

  .product-body {
    padding: 15px;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
  }

  .hours-table td:last-child {
    text-align: left;
  }
}
