.map-section {
  padding: 80px 20px;
  background-color: var(--warm-bg, #F7F6F1);
  text-align: center;
}

.map-address {
  font-style: normal;
  font-size: 1rem;
  color: var(--text-medium, #445574);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
}

.map-section h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #111;
  font-weight: 600;
}

.map-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.map-frame iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .map-section h2 {
    font-size: 1.8rem;
  }

  .map-subtitle {
    font-size: 1rem;
  }

  .map-frame iframe {
    height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .map-section {
    padding: 50px 16px;
  }

  .map-section h2 {
    font-size: 1.5rem;
  }

  .map-frame iframe {
    height: 240px;
  }
}

/* Segnaposto mappa: Google Maps viene caricato solo dopo il consenso */
.map-placeholder {
  height: 400px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px dashed #d8d5cf;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
}

.map-placeholder i {
  font-size: 2.4rem;
  color: var(--accent, #FB8B04);
}

.map-placeholder p {
  color: #555;
  max-width: 440px;
  line-height: 1.55;
  margin: 0;
}

.map-load-btn {
  background-color: var(--accent, #FB8B04);
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.map-load-btn:hover {
  background-color: var(--accent-hover, #e07c00);
}

.map-external {
  color: var(--accent, #FB8B04);
  font-weight: 600;
  font-size: 0.95rem;
}

@media screen and (max-width: 768px) {
  .map-placeholder { height: 300px; }
}

@media screen and (max-width: 480px) {
  .map-placeholder { height: 260px; padding: 16px; }
}
