body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

h1, h2 {
  font-weight: 600;
  color: #333;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.subtitle-note {
  font-size: 1.6rem; /* metà della main-logo */
  color: #ccc;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap; /* forza una sola riga */
}

.subtitle-note .subtitle-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.subtitle-note .subtitle-link:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.like-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
  font-size: 22px;
  color: #bbb;
  transition: color 0.2s;
}


.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.image-gallery img {
  max-width: 300px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.image-gallery img:hover {
  transform: scale(1.02);
}

.back-link {
  display: inline-block;
  margin-top: 2rem;
  color: #555;
}

.main-logo {
  width: auto;
  height: 32rem;
  margin-bottom: 8px; /* spazio molto ridotto sotto il logo, ora in px */
}

.main-title {
  font-size: 50px; /* ancora più grande */
  font-weight: 700;
  margin-bottom: 0px;
  text-align: center;
  margin-top: 60px;
}