/* Filters */
.smartwatch-comp-filters-wrapper {
  margin: 20px 0;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 10px;
}
.smartwatch-filters-grid {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.filter-group {
  display: flex;
  flex-direction: column;
  flex: 1 1 180px;
}
.filter-group label {
  font-weight: 600;
  margin-bottom: 5px;
}
.filter-group select {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Table wrapper scroll */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 10px;
}

/* Table styling */
.smartwatches-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}
.smartwatches-compare-table th,
.smartwatches-compare-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}
.smartwatches-compare-table th {
  background-color: #f2f2f2;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 3;
}

/* Sticky affiliate column */
.smartwatches-compare-table th.sticky-col,
.smartwatches-compare-table td.sticky-col {
  position: sticky;
  right: 0;
  background: #fff;
  z-index: 2;
  min-width: 140px;
}

/* Buttons */
.table-buy-btn,
.table-deal-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin: 2px 0;
  padding: 6px 0;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}
.table-buy-btn { background-color: #007bff; color: #fff; }
.table-deal-btn { background-color: #28a745; color: #fff; }

/* Horizontal scroll hint */
.table-scroll-hint {
  font-size: 0.95em;
  margin: 6px 0;
  color: #555;
}

/* Rating stars */
.smartwatches-compare-table td.rating .stars {
  color: #f5b50a !important; /* gold */
  font-size: 1em;
  letter-spacing: 1px;
}
.smartwatches-compare-table td.rating .rating-number {
  margin-left: 6px;
  color: #333;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .smartwatch-filters-grid { flex-direction: column; }
  .filter-group { flex: 1 1 100%; }
  .smartwatches-compare-table { min-width: 700px; }
}