.product-specifications header {
  text-align: center;
  margin-bottom: 3rem;
}
.product-specifications header h1 {
  background: linear-gradient(45deg, #2E8B57, rgb(58.6810810811, 177.3189189189, 110.9837837838));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.product-specifications header .lead {
  color: #6c757d;
}
.product-specifications .search-bar {
  position: relative;
  max-width: 500px;
  margin: 0 auto 2rem;
}
.product-specifications .search-bar input {
  width: 100%;
  padding: 1rem 3rem 1rem 1rem;
  border: 2px solid #DEE2E6;
  border-radius: 30px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.product-specifications .search-bar input:focus {
  outline: none;
  border-color: #2E8B57;
}
.product-specifications .search-bar input::placeholder {
  color: #ADB5BD;
}
.product-specifications .search-bar .search-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6C757D;
}
.product-specifications .filter-section {
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
.product-specifications .filter-section h5 {
  margin-bottom: 1rem;
}
.product-specifications .filter-section h6 {
  color: #6c757d;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.product-specifications .filter-section .filter-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.product-specifications .filter-section .filter-chip {
  background: #F8F9FA;
  border: 1px solid #DEE2E6;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-specifications .filter-section .filter-chip:hover {
  background: #E9ECEF;
}
.product-specifications .filter-section .filter-chip.active {
  background: #2E8B57;
  color: #FFFFFF;
  border-color: #2E8B57;
}
.product-specifications .filter-section .filter-chip i {
  margin-right: 0.25rem;
}
.product-specifications .d-flex.justify-content-between .stats-bar {
  background: #F8F9FA;
  padding: 1rem;
  border-radius: 0.375rem;
  margin-bottom: 0;
  text-align: center;
  flex-grow: 1;
  margin-right: 1rem;
}
.product-specifications .d-flex.justify-content-between .view-toggle {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.product-specifications .d-flex.justify-content-between .view-toggle .view-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #DEE2E6;
  background: #FFFFFF;
  cursor: pointer;
  border-radius: 0.2rem;
  transition: all 0.3s ease;
}
.product-specifications .d-flex.justify-content-between .view-toggle .view-btn.active {
  background: #2E8B57;
  color: #FFFFFF;
  border-color: #2E8B57;
}
.product-specifications .d-flex.justify-content-between .view-toggle .view-btn:hover:not(.active) {
  background: #F8F9FA;
}
.product-specifications .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.product-specifications .product-card {
  background: #FFFFFF;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #DEE2E6;
}
.product-specifications .product-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.product-specifications .product-card .product-header {
  background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
  padding: 1.5rem;
  border-bottom: 1px solid #DEE2E6;
}
.product-specifications .product-card .product-header .d-flex {
  align-items: center;
  gap: 1rem;
}
.product-specifications .product-card .product-header .d-flex .product-image-cell {
  flex-shrink: 0;
}
.product-specifications .product-card .product-header .d-flex .product-image-cell .product-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.375rem;
  border: 2px solid #E9ECEF;
  background: #F8F9FA;
  transition: all 0.3s ease;
  opacity: 0.9;
}
.product-specifications .product-card .product-header .d-flex .product-image-cell .product-image:hover {
  transform: scale(1.05);
  border-color: #2E8B57;
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.2);
  opacity: 1;
}
.product-specifications .product-card .product-header .d-flex .product-image-cell .product-image-placeholder {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.375rem;
  border: 2px solid #E9ECEF;
  background: #F8F9FA;
  transition: all 0.3s ease;
  opacity: 0.9;
}
.product-specifications .product-card .product-header .d-flex .product-image-cell .product-image-placeholder:hover {
  transform: scale(1.05);
  border-color: #2E8B57;
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.2);
  opacity: 1;
}
.product-specifications .product-card .product-header .d-flex .product-image-cell .product-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
  border: 2px dashed #DEE2E6;
  color: #6C757D;
  font-size: 1.5rem;
}
.product-specifications .product-card .product-header .product-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}
.product-specifications .product-card .product-header .product-qty {
  display: inline-block;
  background: #2E8B57;
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.product-specifications .product-card .product-materials {
  padding: 1rem 1.5rem;
  background: #F8F9FA;
  border-bottom: 1px solid #E9ECEF;
}
.product-specifications .product-card .product-materials .material-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.product-specifications .product-card .product-materials .material-badges .material-badge {
  background: rgba(52, 152, 219, 0.1);
  color: #3498DB;
  padding: 0.25rem 0.75rem;
  border-radius: 16px;
  font-size: 0.875rem;
  font-weight: 500;
}
.product-specifications .product-card .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0;
}
.product-specifications .product-card .features-grid .feature-item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #E9ECEF;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.product-specifications .product-card .features-grid .feature-item:nth-child(odd) {
  background: rgba(248, 249, 250, 0.5);
}
.product-specifications .product-card .features-grid .feature-item .feature-icon {
  width: 16px;
  height: 16px;
  color: #2ECC71;
}
.product-specifications .table-view {
  background: #FFFFFF;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.product-specifications .table-view .table-responsive {
  overflow-x: auto;
}
.product-specifications .table-view .modern-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}
.product-specifications .table-view .modern-table th {
  background: #F8F9FA;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #DEE2E6;
  position: sticky;
  top: 0;
  z-index: 10;
  font-size: 0.875rem;
}
.product-specifications .table-view .modern-table th.sortable {
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}
.product-specifications .table-view .modern-table th.sortable:hover {
  background: #E9ECEF;
}
.product-specifications .table-view .modern-table th.sortable.asc .fa-sort:before {
  content: "\f0de";
  color: #2E8B57;
}
.product-specifications .table-view .modern-table th.sortable.desc .fa-sort:before {
  content: "\f0dd";
  color: #2E8B57;
}
.product-specifications .table-view .modern-table td {
  padding: 1rem;
  border-bottom: 1px solid #E9ECEF;
  vertical-align: middle;
}
.product-specifications .table-view .modern-table td .product-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.375rem;
  border: 2px solid #E9ECEF;
  background: #F8F9FA;
  transition: all 0.3s ease;
  opacity: 0.9;
}
.product-specifications .table-view .modern-table td .product-image:hover {
  transform: scale(1.05);
  border-color: #2E8B57;
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.2);
  opacity: 1;
}
.product-specifications .table-view .modern-table td .product-image-placeholder {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.375rem;
  border: 2px solid #E9ECEF;
  background: #F8F9FA;
  transition: all 0.3s ease;
  opacity: 0.9;
}
.product-specifications .table-view .modern-table td .product-image-placeholder:hover {
  transform: scale(1.05);
  border-color: #2E8B57;
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.2);
  opacity: 1;
}
.product-specifications .table-view .modern-table td .product-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
  border: 2px dashed #DEE2E6;
  color: #6C757D;
  font-size: 1.5rem;
}
.product-specifications .table-view .modern-table td .status-badge.status-in-stock {
  background: rgba(46, 204, 113, 0.1);
  color: #2ECC71;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-specifications .table-view .modern-table td .status-badge.status-pre-order {
  background: rgba(241, 196, 15, 0.1);
  color: rgb(145.5118110236, 118.2283464567, 8.4881889764);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-specifications .table-view .modern-table td .status-badge.status-out-of-stock {
  background: rgba(231, 76, 60, 0.1);
  color: #E74C3C;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-specifications .table-view .modern-table td .pricing-info {
  font-size: 0.875rem;
  line-height: 1.2;
}
.product-specifications .table-view .modern-table td .pricing-info .pricing-tier {
  font-weight: 600;
  color: #2E8B57;
}
.product-specifications .table-view .modern-table td .specs-info {
  font-size: 0.75rem;
  line-height: 1.3;
}
.product-specifications .table-view .modern-table td .specs-info .spec-item {
  display: block;
  color: #6C757D;
  margin-bottom: 0.2rem;
}
.product-specifications .table-view .modern-table td .specs-info .spec-item .spec-value {
  font-weight: 500;
  color: #495057;
}
.product-specifications .table-view .modern-table tr {
  transition: all 0.3s ease;
}
.product-specifications .table-view .modern-table tr:hover {
  background: rgba(248, 249, 250, 0.5);
}
.product-specifications .table-view .bulk-actions {
  background: #F8F9FA;
  border-radius: 0.375rem;
  padding: 1rem;
  border: 1px solid #E9ECEF;
  margin-top: 1rem;
}
.product-specifications .table-view .bulk-actions .d-flex {
  align-items: center;
  gap: 0.5rem;
}
.product-specifications .table-view .bulk-actions .d-flex .text-muted {
  color: #6C757D;
}
.product-specifications .table-view .bulk-actions .d-flex .btn {
  min-width: auto;
}
.product-specifications .table-view .bulk-actions .d-flex .btn:hover {
  transform: translateY(-1px);
}
.product-specifications .no-results {
  text-align: center;
  padding: 3rem;
  color: #6C757D;
}
.product-specifications .no-results .fa-search {
  margin-bottom: 1rem;
}
.product-specifications .no-results h4 {
  color: #495057;
}
.product-specifications .cta-section {
  margin-top: 3rem;
}
.product-specifications .cta-section .card {
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.05) 0%, rgba(255, 127, 80, 0.05) 100%);
  border: 1px solid rgba(46, 139, 87, 0.1);
  padding: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.product-specifications .cta-section .card .card-body {
  padding: 2rem;
  text-align: center;
}
.product-specifications .cta-section .card .card-body h4 {
  color: #2E8B57;
  font-weight: 700;
  margin-bottom: 1rem;
}
.product-specifications .cta-section .card .card-body .text-muted {
  color: #6C757D;
  margin-bottom: 2rem;
}
.product-specifications .cta-section .card .card-body .btn {
  min-width: 180px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.product-specifications .cta-section .card .card-body .btn:hover {
  transform: translateY(-2px);
}
.product-specifications .cta-section .card .card-body .btn.btn-primary {
  background: linear-gradient(45deg, #2E8B57, rgb(58.6810810811, 177.3189189189, 110.9837837838));
  border: none;
}
.product-specifications .cta-section .card .card-body .btn.btn-primary:hover {
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}
.product-specifications .cta-section .card .card-body .btn.btn-success {
  background: #2ECC71;
  border-color: #2ECC71;
}
.product-specifications .cta-section .card .card-body .btn.btn-success:hover {
  background: rgb(36.616, 162.384, 89.948);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.product-detail-modal .modal-body {
  max-height: 70vh;
  overflow-y: auto;
}
.product-detail-modal .detail-section {
  margin-bottom: 2rem;
}
.product-detail-modal .detail-section h6 {
  color: #2E8B57;
  border-bottom: 2px solid #E9ECEF;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.product-detail-modal .detail-section h6 i {
  margin-right: 0.5rem;
}
.product-detail-modal .detail-section .certification-badge {
  display: inline-block;
  background: rgba(52, 152, 219, 0.1);
  color: #3498DB;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.product-detail-modal .img-fluid {
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  cursor: zoom-in;
}
.product-detail-modal .img-fluid:hover {
  transform: scale(1.02);
}

.modal .modal-content {
  border-radius: 0.5rem;
  overflow: hidden;
}
.modal .modal-body {
  padding: 1.5rem;
}
.modal .modal-body img {
  border-radius: 0.375rem;
}

@media (max-width: 992px) {
  .product-specifications .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
@media (max-width: 768px) {
  .product-specifications .product-grid {
    grid-template-columns: 1fr;
  }
  .product-specifications .product-card .features-grid {
    grid-template-columns: 1fr;
  }
  .product-specifications .product-card .product-header .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem !important;
  }
  .product-specifications .product-card .product-header .d-flex .product-image-cell {
    align-self: center;
  }
  .product-specifications .bulk-actions .d-flex {
    flex-direction: column;
    gap: 0.5rem !important;
  }
  .product-specifications .bulk-actions .d-flex .btn {
    width: 100%;
  }
  .product-specifications .cta-section .card-body {
    padding: 1.5rem;
  }
  .product-specifications .cta-section .card-body .btn {
    min-width: auto;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 576px) {
  .product-specifications .product-card .product-image,
  .product-specifications .product-card .product-image-placeholder {
    width: 60px;
    height: 60px;
  }
  .product-specifications .modern-table .product-image,
  .product-specifications .modern-table .product-image-placeholder {
    width: 60px;
    height: 60px;
  }
  .product-specifications .search-bar input {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
  }
  .product-specifications .filter-section {
    padding: 1rem;
  }
}
[data-theme=dark] .product-specifications {
  background-color: #0d1117;
  color: #e6edf3;
}
[data-theme=dark] .product-specifications .search-bar input {
  background-color: #21262d;
  border-color: #444c56;
  color: #e6edf3;
}
[data-theme=dark] .product-specifications .search-bar input:focus {
  border-color: #58a6ff;
}
[data-theme=dark] .product-specifications .search-bar input::placeholder {
  color: #8b949e;
}
[data-theme=dark] .product-specifications .search-bar .search-icon {
  color: #8b949e;
}
[data-theme=dark] .product-specifications .filter-section {
  background-color: #21262d;
  border-color: #444c56;
}
[data-theme=dark] .product-specifications .filter-section h5, [data-theme=dark] .product-specifications .filter-section h6 {
  color: #e6edf3;
}
[data-theme=dark] .product-specifications .filter-section .filter-chip {
  background-color: #30363d;
  border-color: #444c56;
  color: #e6edf3;
}
[data-theme=dark] .product-specifications .filter-section .filter-chip:hover {
  background-color: #444c56;
}
[data-theme=dark] .product-specifications .filter-section .filter-chip.active {
  background-color: #58a6ff;
  color: #0d1117;
  border-color: #58a6ff;
}
[data-theme=dark] .product-specifications .stats-bar {
  background-color: #21262d;
  color: #e6edf3;
}
[data-theme=dark] .product-specifications .view-btn {
  background-color: #21262d;
  border-color: #444c56;
  color: #e6edf3;
}
[data-theme=dark] .product-specifications .view-btn:hover:not(.active) {
  background-color: #30363d;
}
[data-theme=dark] .product-specifications .view-btn.active {
  background-color: #58a6ff;
  color: #0d1117;
  border-color: #58a6ff;
}
[data-theme=dark] .product-specifications .product-card {
  background-color: #21262d;
  border-color: #444c56;
}
[data-theme=dark] .product-specifications .product-card .product-header {
  background: linear-gradient(135deg, #30363d 0%, #444c56 100%);
  border-bottom-color: #444c56;
}
[data-theme=dark] .product-specifications .product-card .product-header .product-title {
  color: #f0f6fc;
}
[data-theme=dark] .product-specifications .product-card .product-header .product-qty {
  background-color: #58a6ff;
  color: #0d1117;
}
[data-theme=dark] .product-specifications .product-card .product-materials {
  background-color: #30363d;
  border-bottom-color: #444c56;
}
[data-theme=dark] .product-specifications .product-card .product-materials .material-badge {
  background-color: rgba(88, 166, 255, 0.1);
  color: #58a6ff;
}
[data-theme=dark] .product-specifications .product-card .features-grid .feature-item {
  border-bottom-color: #444c56;
}
[data-theme=dark] .product-specifications .product-card .features-grid .feature-item:nth-child(odd) {
  background-color: rgba(48, 54, 61, 0.5);
}
[data-theme=dark] .product-specifications .product-card .features-grid .feature-item .feature-icon {
  color: #56d364;
}
[data-theme=dark] .product-specifications .table-view {
  background-color: #21262d;
}
[data-theme=dark] .product-specifications .table-view .modern-table th {
  background-color: #30363d;
  border-bottom-color: #444c56;
  color: #f0f6fc;
}
[data-theme=dark] .product-specifications .table-view .modern-table th:hover {
  background-color: #444c56;
}
[data-theme=dark] .product-specifications .table-view .modern-table td {
  border-bottom-color: #444c56;
  color: #e6edf3;
}
[data-theme=dark] .product-specifications .table-view .modern-table tr:hover {
  background-color: rgba(48, 54, 61, 0.5);
}
[data-theme=dark] .product-specifications .table-view .bulk-actions {
  background-color: #30363d;
  border-color: #444c56;
}
[data-theme=dark] .product-specifications .table-view .bulk-actions .text-muted {
  color: #8b949e;
}
[data-theme=dark] .product-specifications .no-results {
  color: #8b949e;
}
[data-theme=dark] .product-specifications .no-results h4 {
  color: #e6edf3;
}
[data-theme=dark] .product-specifications .cta-section .card {
  background: linear-gradient(135deg, rgba(88, 166, 255, 0.05) 0%, rgba(255, 127, 80, 0.05) 100%);
  border-color: rgba(88, 166, 255, 0.1);
}
[data-theme=dark] .product-specifications .cta-section .card .card-body h4 {
  color: #58a6ff;
}
[data-theme=dark] .product-specifications .cta-section .card .card-body .text-muted {
  color: #8b949e;
}
[data-theme=dark] .product-specifications .cta-section .card .card-body .btn-primary {
  background: linear-gradient(45deg, #58a6ff, #79c0ff);
  color: #0d1117;
}
[data-theme=dark] .product-specifications .cta-section .card .card-body .btn-primary:hover {
  background: #58a6ff;
  box-shadow: 0 4px 12px rgba(88, 166, 255, 0.3);
}
[data-theme=dark] .product-specifications .cta-section .card .card-body .btn-success {
  background: #56d364;
  border-color: #56d364;
  color: #0d1117;
}
[data-theme=dark] .product-specifications .cta-section .card .card-body .btn-success:hover {
  background: #46c653;
  box-shadow: 0 4px 12px rgba(86, 211, 100, 0.3);
}
[data-theme=dark] .product-detail-modal .modal-content {
  background-color: #21262d;
  border-color: #444c56;
  color: #e6edf3;
}
[data-theme=dark] .product-detail-modal .detail-section h6 {
  color: #58a6ff;
  border-bottom-color: #444c56;
}
[data-theme=dark] .product-detail-modal .detail-section .certification-badge {
  background-color: rgba(88, 166, 255, 0.1);
  color: #58a6ff;
}
[data-theme=dark] .modal .modal-content {
  background-color: #21262d;
  color: #e6edf3;
}
[data-theme=dark] .modal .modal-header {
  border-bottom-color: #444c56;
}
[data-theme=dark] .modal .modal-header .modal-title {
  color: #f0f6fc;
}
[data-theme=dark] .modal .modal-footer {
  border-top-color: #444c56;
}
[data-theme=dark] .modal .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border: 1px solid #DEE2E6;
  vertical-align: top;
}
.comparison-table th {
  background: #F8F9FA;
  font-weight: 600;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 10;
}
.comparison-table .feature-row {
  background: rgba(248, 249, 250, 0.5);
}
.comparison-table .feature-row td:first-child {
  background: #F8F9FA;
  font-weight: 600;
  width: 200px;
}
.comparison-table .table-section td {
  background: #E9ECEF;
  font-weight: 700;
  text-align: center;
  color: #495057;
  border-color: rgb(192.9827586207, 200.5, 208.0172413793);
}

.comparison-product-header {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.comparison-product-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
  border: 2px solid #E9ECEF;
}

.comparison-product-image-placeholder {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
  border-radius: 0.375rem;
  border: 2px dashed #DEE2E6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6C757D;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.comparison-product-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.comparison-product-category {
  color: #6C757D;
  font-size: 0.9rem;
}

.feature-check {
  color: #2ECC71;
  font-size: 1.2rem;
}

.feature-cross {
  color: #E74C3C;
  font-size: 1.2rem;
}

.comparison-scroll-container {
  max-height: 70vh;
  overflow-y: auto;
}

.comparison-actions {
  background: #F8F9FA;
  padding: 1rem;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
  text-align: center;
}
.comparison-actions h6 {
  color: #2E8B57;
  margin-bottom: 0.5rem;
}
.comparison-actions .btn {
  margin: 0 0.25rem;
}

[data-theme=dark] .comparison-table th {
  background: #30363d;
  color: #f0f6fc;
  border-color: #444c56;
}
[data-theme=dark] .comparison-table td {
  background: #21262d;
  color: #e6edf3;
  border-color: #444c56;
}
[data-theme=dark] .comparison-table .feature-row {
  background: rgba(48, 54, 61, 0.5);
}
[data-theme=dark] .comparison-table .feature-row td:first-child {
  background: #30363d;
  color: #f0f6fc;
}
[data-theme=dark] .comparison-table .table-section td {
  background: #444c56;
  color: #f0f6fc;
  border-color: #6e7681;
}
[data-theme=dark] .comparison-product-header {
  background: linear-gradient(135deg, #30363d 0%, #444c56 100%);
}
[data-theme=dark] .comparison-product-name {
  color: #f0f6fc;
}
[data-theme=dark] .comparison-product-category {
  color: #8b949e;
}
[data-theme=dark] .comparison-product-image-placeholder {
  background: linear-gradient(135deg, #30363d 0%, #444c56 100%);
  border-color: #444c56;
  color: #8b949e;
}
[data-theme=dark] .comparison-actions {
  background: #30363d;
}
[data-theme=dark] .comparison-actions h6 {
  color: #58a6ff;
}
[data-theme=dark] .feature-check {
  color: #56d364;
}
[data-theme=dark] .feature-cross {
  color: #f85149;
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: 0.875rem;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }
  .comparison-product-image,
  .comparison-product-image-placeholder {
    width: 60px;
    height: 60px;
  }
  .comparison-product-header {
    padding: 1rem;
  }
  .comparison-actions {
    padding: 0.75rem;
  }
}
@media print {
  .product-specifications .search-bar,
  .product-specifications .filter-section,
  .product-specifications .view-toggle,
  .product-specifications .stats-bar,
  .product-specifications .cta-section,
  .product-specifications .bulk-actions {
    display: none !important;
  }
  .product-specifications .product-card,
  .product-specifications .table-view {
    box-shadow: none !important;
    border: 1px solid #000 !important;
  }
  .product-specifications .modern-table th {
    background: #f0f0f0 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .product-specifications .modern-table tr:hover {
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
  }
}
