/* =============================
   SALON COMERCIAL - ECOMMERCE
   ============================= */
.salon-comercial-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: calc(100vh - 200px);
  /*background: #f5f6fa;
  padding: 40px 15px;*/
  background: transparent; /* ✅ deja ver el gris del body */
  padding: 40px 15px 90px;
}

.salon-comercial-section form {
  background: #fff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 650px;
}

.salon-comercial-section .form-label {
  font-weight: 600;
  color: #444;
}

.salon-comercial-section .form-control,
.salon-comercial-section .form-select {
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  transition: all 0.2s ease-in-out;
}

.salon-comercial-section .form-control:focus,
.salon-comercial-section .form-select:focus {
  border-color: var(--primary-color, #0d6efd);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
  outline: none;
}

.salon-comercial-section .btn-primary {
  background-color: var(--primary-color, #0d6efd);
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.2s ease-in-out;
}

.salon-comercial-section .btn-primary:hover {
  background-color: var(--secondary-color);
}

.salon-comercial-section .text-center a {
  color: var(--primary-color, #0d6efd);
  text-decoration: none;
  font-weight: 500;
}

.salon-comercial-section .text-center a:hover {
  text-decoration: underline;
}

.salonComercial-preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.salonComercial-preview-container .salonComercial-thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ddd;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.salonComercial-preview-container .salonComercial-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  border-color: var(--primary-color, #0d6efd);
}
/* =============================
   LEAFLET MAPA SALON COMERCIAL - ECOMMERCE
   ============================= */
/* Contenedor de previews de imágenes */
.salonComercial-preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.salonComercial-preview-container .salonComercial-thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ddd;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.salonComercial-preview-container .salonComercial-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color, #0d6efd);
}

/* Mapa Leaflet */
.map-salon {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

/* Ocultar botones + / - de Leaflet solo en este mapa */
#mapSalon .leaflet-control-zoom {
  display: none !important;
}

/* Ocultar el texto "Leaflet | © OpenStreetMap contributors" solo en este mapa */
#mapSalon .leaflet-control-attribution {
  display: none !important;
}
