.jt-store-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
  opacity: 0.9;
}

.jt-store-switch strong {
  color: #fff;
  font-weight: 600;
}

.jt-store-switch:hover {
  opacity: 1;
}


/* ===== MODAL GENERAL ===== */

#modalTiendas .modal-content {
  border-radius: 18px;
  border: none;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

#modalTiendas .modal-header {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  padding: 18px 20px;
  border-bottom: none;
  position: relative;
}

#modalTiendas .modal-header h5 {
  font-weight: 600;
  font-size: 19px;
  margin: 0 auto;
}

#modalTiendas .modal-body {
  background: #f9fafb;
  padding: 28px;
}
#modalTiendas .modal-body p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 22px;
}
/* ===== LISTA ===== */

.address-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.address-list li {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid #e5e7eb;
  position: relative;
}

.address-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  border-color: #2563eb;
}
/* ===== TIENDA SELECCIONADA ===== */

.address-list li.selected {
  border: 2px solid #2563eb;
  background: linear-gradient(to right, #eff6ff, #ffffff);
}


.address-list li.selected::after {
  content: "✓ Seleccionada";
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
}
.address-icon {
  font-size: 16px;
  color: #2563eb;
  background: #e0ecff;
  padding: 10px;
  border-radius: 50%;
}
.store-address-title {
  font-weight: 600;
  font-size: 15px;
  color: #111827;
}


.store-schedule {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
  display: block;
}