/**
 * Branch Management - Styles
 */
.product-branches-section .city-selector {
  margin-bottom: 1rem;
}
.product-branches-section .branch-selector {
  margin-bottom: 1rem;
}
.product-branches-section .branch-item {
  transition: all 0.3s ease;
}
.product-branches-section .branch-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.product-branches-section .branch-item.opacity-75 {
  opacity: 0.75;
}
.product-branches-section .branch-status .badge {
  font-size: 0.8rem;
}

.branch-pickup-section .branch-details .card {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
}

.fa-spinner.fa-spin {
  animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
