@charset "UTF-8";
.products-table-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.products-table {
  margin-bottom: 0;
  background: white;
}
.products-table .table-header {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}
.products-table .table-header th {
  border: none;
  padding: 1.25rem 1rem;
  font-weight: 600;
  color: #495057;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #dee2e6;
}
.products-table .table-header th.actions-column {
  width: 300px;
  min-width: 300px;
}
.products-table .product-table-row {
  transition: all 0.3s ease;
  border: none;
}
.products-table .product-table-row:hover {
  background: linear-gradient(135deg, #f8f9fa, #fff);
  transform: scale(1.01);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.products-table .product-table-row td {
  padding: 1.25rem 1rem;
  border-color: #e9ecef;
  vertical-align: middle;
  border-top: 1px solid #e9ecef;
}
.products-table .product-info-cell .product-details .product-description {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.3;
}
.products-table .product-info-cell .product-details .product-sku {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 500;
}
.products-table .metric-cell .product-metric {
  display: inline-block;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #1976d2;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid #90caf9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.products-table .price-cell .price-info .product-price {
  font-weight: 700;
  color: #28a745;
  font-size: 1.1rem;
  display: block;
  line-height: 1.2;
}
.products-table .price-cell .price-info .price-label {
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 0.125rem;
}
.products-table .status-cell .status-badge {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  min-width: 70px;
  text-align: center;
}
.products-table .status-cell .status-badge.badge-success {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white !important;
  border: 2px solid #1e7e34;
  box-shadow: 0 3px 8px rgba(40, 167, 69, 0.4);
}
.products-table .status-cell .status-badge.badge-secondary {
  background: linear-gradient(135deg, #6c757d, #495057);
  color: white !important;
  border: 2px solid #495057;
  box-shadow: 0 3px 8px rgba(108, 117, 125, 0.4);
}
.products-table .actions-cell {
  width: 300px;
  min-width: 300px;
}
.products-table .actions-cell .btn-group-product-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  text-transform: none;
  letter-spacing: 0.025em;
  white-space: nowrap;
}
.custom-btn i {
  margin-right: 0.5rem;
  font-size: 0.9em;
  font-weight: 400;
  flex-shrink: 0;
}
.custom-btn:hover {
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.custom-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease;
}
.custom-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}
.custom-btn.btn-primary {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.custom-btn.btn-primary:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  color: white !important;
}
.custom-btn.btn-primary:active {
  background: linear-gradient(135deg, #004085 0%, #002752 100%);
}
.custom-btn.btn-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.custom-btn.btn-secondary:hover {
  background: linear-gradient(135deg, #495057 0%, #343a40 100%);
  color: white !important;
}
.custom-btn.btn-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.custom-btn.btn-success:hover {
  background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
  color: white !important;
}
.custom-btn.btn-danger {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.custom-btn.btn-danger:hover {
  background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
  color: white !important;
}
.custom-btn.btn-info {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.custom-btn.btn-info:hover {
  background: linear-gradient(135deg, #138496 0%, #117a8b 100%);
  color: white !important;
}
.custom-btn.btn-outline-primary {
  background: rgba(0, 123, 255, 0.1);
  border: 2px solid #007bff;
  color: #007bff !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.custom-btn.btn-outline-primary:hover {
  background: #007bff;
  color: white !important;
  border-color: #007bff;
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.3);
}
.custom-btn.btn-outline-secondary {
  background: rgba(108, 117, 125, 0.1);
  border: 2px solid #6c757d;
  color: #6c757d !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.custom-btn.btn-outline-secondary:hover {
  background: #6c757d;
  color: white !important;
  border-color: #6c757d;
  box-shadow: 0 4px 16px rgba(108, 117, 125, 0.3);
}
.custom-btn.btn-outline-danger {
  background: rgba(220, 53, 69, 0.1);
  border: 2px solid #dc3545;
  color: #dc3545 !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.custom-btn.btn-outline-danger:hover {
  background: #dc3545;
  color: white !important;
  border-color: #dc3545;
  box-shadow: 0 4px 16px rgba(220, 53, 69, 0.3);
}
.custom-btn.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}
.custom-btn.btn-sm i {
  margin-right: 0.375rem;
  font-size: 0.8em;
}
.custom-btn.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.custom-btn.btn-lg i {
  margin-right: 0.75rem;
}
.custom-btn.btn-block {
  width: 100%;
  display: flex;
}
.custom-btn:disabled, .custom-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}
.custom-btn:disabled:hover, .custom-btn.disabled:hover {
  transform: none !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.action-btn {
  padding: 0.5rem 0.875rem !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  text-transform: none !important;
  letter-spacing: 0.025em !important;
  min-width: 80px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.25s ease !important;
}
.action-btn i {
  margin-right: 0.375rem !important;
  font-size: 0.8em !important;
}
.action-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25) !important;
}
.action-btn.btn-primary {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: white !important;
}
.action-btn.btn-primary:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%) !important;
  color: white !important;
}
.action-btn.btn-outline-secondary {
  background: rgba(108, 117, 125, 0.1) !important;
  border: 2px solid #6c757d !important;
  color: #495057 !important;
}
.action-btn.btn-outline-secondary:hover {
  background: #6c757d !important;
  color: white !important;
  border-color: #6c757d !important;
}
.action-btn.btn-outline-danger {
  background: rgba(220, 53, 69, 0.1) !important;
  border: 2px solid #dc3545 !important;
  color: #c82333 !important;
}
.action-btn.btn-outline-danger:hover {
  background: #dc3545 !important;
  color: white !important;
  border-color: #dc3545 !important;
}

.btn-group-product-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn-group-product-actions .custom-btn,
.btn-group-product-actions .action-btn {
  flex-shrink: 0;
}

.action-card {
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  overflow: hidden;
}
.action-card .card-header {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  border: none;
  padding: 1.5rem;
}
.action-card .card-header .card-title {
  margin: 0;
  font-weight: 700;
  font-size: 1.25rem;
}
.action-card .card-body {
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
.action-card .card-body p {
  color: #495057;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}
.action-card .card-body .custom-btn {
  width: 100%;
  margin-bottom: 1rem;
  font-weight: 600;
}
.action-card .card-body .custom-btn:last-child {
  margin-bottom: 0;
}

.product-form .btn-group-product-actions {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 3px solid #dee2e6;
  justify-content: flex-start;
}
.product-form .btn-group-product-actions .custom-btn {
  margin-right: 1rem;
  margin-bottom: 0.75rem;
  min-width: 140px;
}

.feature-card {
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card .card-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: none;
  padding: 1.5rem;
}
.feature-card .card-header .card-title {
  color: #495057;
  font-weight: 700;
  font-size: 1.125rem;
}
.feature-card .card-body {
  padding: 1.5rem;
  background: white;
}
.feature-card .feature-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.feature-card .feature-list li i {
  margin-right: 1rem;
  width: 20px;
  flex-shrink: 0;
  font-size: 1.125rem;
}

.empty-state {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 4rem 2rem;
  text-align: center;
}
.empty-state .fa-box-open {
  opacity: 0.6;
  color: #6c757d;
}
.empty-state h4 {
  color: #495057;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.product-search-container {
  margin-bottom: 2rem;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.product-search-wrapper {
  position: relative;
  margin-bottom: 1rem;
}
.product-search-wrapper .product-search-input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  transition: all 0.3s ease;
}
.product-search-wrapper .product-search-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.product-search-wrapper .product-search-input::-moz-placeholder {
  color: #a0aec0;
}
.product-search-wrapper .product-search-input::placeholder {
  color: #a0aec0;
}
.product-search-wrapper .product-search-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  pointer-events: none;
}

.product-filters-container {
  margin-bottom: 1rem;
}
.product-filters-container .product-filters {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 100%;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.product-filters-container .product-filters .product-filter-select {
  flex: 1;
  max-width: none;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  background: white;
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.product-filters-container .product-filters .product-filter-select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}
.product-filters-container .product-filters .product-clear-button {
  flex-shrink: 0;
  padding: 0.75rem 1.25rem;
  background: #718096;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.product-filters-container .product-filters .product-clear-button:hover {
  background: #4a5568;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.product-filters-container .product-filters .product-clear-button:active {
  transform: translateY(0);
}

.product-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.product-results-counter {
  font-size: 0.875rem;
  color: #4a5568;
  font-weight: 500;
}
.product-results-counter .results-count {
  font-weight: 700;
  color: #2d3748;
}

.product-filter-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.product-filter-badges .filter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: #667eea;
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.product-filter-badges .filter-badge .remove-filter {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.product-filter-badges .filter-badge .remove-filter:hover {
  background: rgba(255, 255, 255, 0.2);
}

.product-no-results {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-top: 1rem;
}
.product-no-results .no-results-icon {
  font-size: 3rem;
  color: #a0aec0;
  margin-bottom: 1rem;
}
.product-no-results h4 {
  color: #4a5568;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.product-no-results p {
  color: #718096;
  margin-bottom: 1.5rem;
}
.product-no-results .clear-filters-btn {
  padding: 0.75rem 1.5rem;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-no-results .clear-filters-btn:hover {
  background: #5a67d8;
  transform: translateY(-1px);
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  padding: 1.5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pagination {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  list-style: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  background: white;
}
.pagination .page-item {
  margin: 0;
  border: none;
}
.pagination .page-item:first-child .page-link {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-left: 2px solid #dee2e6;
}
.pagination .page-item:last-child .page-link {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-right: 2px solid #dee2e6;
}
.pagination .page-item .page-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #495057;
  text-decoration: none;
  background: white;
  border: none;
  border-top: 2px solid #dee2e6;
  border-bottom: 2px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 44px;
  height: 44px;
  line-height: 1;
}
.pagination .page-item .page-link:hover {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  border-color: #007bff;
  z-index: 2;
}
.pagination .page-item .page-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
  z-index: 3;
}
.pagination .page-item .page-link[aria-label*=Previous]::before, .pagination .page-item .page-link[rel=prev]::before {
  content: "‹";
  font-size: 1.2rem;
  font-weight: bold;
}
.pagination .page-item .page-link[aria-label*=Next]::before, .pagination .page-item .page-link[rel=next]::before {
  content: "›";
  font-size: 1.2rem;
  font-weight: bold;
}
.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  border-color: #007bff;
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.4);
  transform: translateY(-1px);
  z-index: 1;
}
.pagination .page-item.active .page-link:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  transform: translateY(-2px);
}
.pagination .page-item.disabled .page-link {
  color: #adb5bd;
  background: #f8f9fa;
  border-color: #dee2e6;
  cursor: not-allowed;
  opacity: 0.6;
}
.pagination .page-item.disabled .page-link:hover {
  background: #f8f9fa;
  color: #adb5bd;
  transform: none;
  box-shadow: none;
  border-color: #dee2e6;
}

.pagination-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.pagination-info-wrapper .pagination-summary {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 500;
  text-align: center;
  background: #f8f9fa;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  border: 1px solid #e9ecef;
}
.pagination-info-wrapper .pagination-summary .pagination-numbers {
  font-weight: 700;
  color: #495057;
}

@media (max-width: 768px) {
  .pagination .page-item:not(.active):not(:first-child):not(:last-child) {
    display: none;
  }
  .pagination .page-item:not(.active):not(:first-child):not(:last-child).current-group {
    display: flex;
  }
  .pagination .page-item .page-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    min-width: 36px;
    height: 36px;
  }
  .pagination-wrapper {
    padding: 1rem;
    margin-top: 1.5rem;
  }
  .pagination-info-wrapper {
    margin-top: 1rem;
  }
  .pagination-info-wrapper .pagination-summary {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 576px) {
  .pagination .page-item .page-link {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    min-width: 32px;
    height: 32px;
  }
  .pagination .page-item .page-link[aria-label*=Previous]::before, .pagination .page-item .page-link[aria-label*=Next]::before {
    font-size: 1rem;
  }
  .pagination-wrapper {
    padding: 0.75rem;
  }
}
.pagination-ellipsis .page-item .page-link {
  cursor: default;
  color: #adb5bd;
}
.pagination-ellipsis .page-item .page-link:hover {
  background: white;
  color: #adb5bd;
  transform: none;
  box-shadow: none;
  border-color: #dee2e6;
}

.pagination-results {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 0.875rem;
  color: #6c757d;
}
.pagination-results .results-info {
  font-weight: 500;
}
.pagination-results .results-info .results-highlight {
  font-weight: 700;
  color: #495057;
}
.pagination-results .pagination-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1200px) {
  .pagination .page-item .page-link {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    min-width: 48px;
    height: 48px;
  }
}
.page-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #2c3e50;
  line-height: 1.2;
}

.card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}
.card .card-header {
  background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
  border: none;
  padding: 1.5rem 2rem;
}
.card .card-header .card-title {
  color: #495057;
  font-weight: 700;
  margin: 0;
  font-size: 1.25rem;
}
.card .card-body {
  padding: 2rem;
  background: white;
}

.badge.badge-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
  color: white !important;
  border: 2px solid #1e7e34 !important;
  padding: 0.5rem 1rem !important;
  font-weight: 700 !important;
  border-radius: 20px !important;
  box-shadow: 0 3px 8px rgba(40, 167, 69, 0.4) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}
.badge.badge-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
  color: white !important;
  border: 2px solid #495057 !important;
  padding: 0.5rem 1rem !important;
  font-weight: 700 !important;
  border-radius: 20px !important;
  box-shadow: 0 3px 8px rgba(108, 117, 125, 0.4) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.product-detail .product-info-section .info-label {
  color: #495057;
  font-weight: 600;
  font-size: 0.95rem;
}
.product-detail .product-info-section .info-value {
  color: #212529;
  font-weight: 500;
  font-size: 1rem;
}
.product-detail .product-info-section .product-sku-display {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #1976d2;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #90caf9;
  display: inline-block;
}
.product-detail .product-info-section .product-metric-display {
  background: linear-gradient(135deg, #fff3e0, #ffcc02);
  color: #f57c00;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #ffb74d;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-detail .pricing-section .price-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #dee2e6;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}
.product-detail .pricing-section .price-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: #007bff;
}
.product-detail .pricing-section .price-box .price-label {
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.product-detail .pricing-section .price-box .price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: #28a745;
  line-height: 1.2;
}
.product-detail .pricing-section .price-box:last-child {
  margin-bottom: 0;
}

.product-search-input.loading {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,19a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' opacity='.25'/%3E%3Cpath fill='%23666' d='M12,4a8,8,0,0,1,7.89,6.7A1.53,1.53,0,0,0,21.38,12h0a1.5,1.5,0,0,0,1.48-1.75,11,11,0,0,0-21.72,0A1.5,1.5,0,0,0,2.62,12h0a1.53,1.53,0,0,0,1.49-1.3A8,8,0,0,1,12,4Z'%3E%3CanimateTransform attributeName='transform' dur='0.75s' repeatCount='indefinite' type='rotate' values='0 12 12;360 12 12'/%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

.products-table-container {
  transition: opacity 0.3s ease;
}
.products-table-container.loading {
  opacity: 0.6;
  pointer-events: none;
}

.product-filter-badges .filter-badge {
  animation: fadeInBadge 0.3s ease-in-out;
}
.product-filter-badges .filter-badge .remove-filter:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

@keyframes fadeInBadge {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pagination-info {
  font-size: 0.8rem;
  color: #6c757d;
  margin-left: 0.5rem;
}

.product-search-input {
  transition: all 0.3s ease;
}
.product-search-input.loading {
  background-color: #f8f9fa;
  border-color: #007bff;
}
.product-search-input.typing {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.product-search-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  outline: 0;
}

.results-count {
  transition: transform 0.2s ease;
  font-weight: 600;
  color: #007bff;
}

.filter-badge {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.products-table-container {
  transition: opacity 0.3s ease;
}
.products-table-container.loading {
  opacity: 0.6;
  pointer-events: none;
}
