.add-btn.js-compare-add.is-added {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.compare-list-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 8px;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
}
.compare-list-trigger .fa-scale-balanced {
  font-size: 16px;
}
@media (max-width: 991px) {
  .compare-list-trigger .compare-list-label {
    display: none;
  }
}
.compare-list-trigger:hover {
  opacity: 0.7;
}

.compare-page {
  padding-bottom: 4rem;
}
.compare-page .compare-page-header {
  margin: 0 0 40px;
}
.compare-page .compare-page-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  margin: 0;
  position: relative;
  color: #1a1a1a;
}
.compare-page .compare-page-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 350px;
  width: 100%;
  height: 5px;
  background: #e60012;
}
@media (max-width: 767px) {
  .compare-page .compare-page-title {
    font-size: 24px;
    padding-bottom: 16px;
  }
  .compare-page .compare-page-title::after {
    max-width: 200px;
    height: 4px;
  }
}
.compare-page .compare-total {
  font-size: 0.7em;
  color: #888;
  margin-left: 0.5rem;
  font-weight: 400;
}
.compare-page .compare-page-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .compare-page .compare-page-actions {
    justify-content: center;
  }
}
.compare-page .compare-clear-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #888;
  color: #555;
  padding: 8px 22px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}
.compare-page .compare-clear-all-btn i {
  font-size: 13px;
}
.compare-page .compare-clear-all-btn:hover {
  background: #e60012;
  color: #fff;
  border-color: #e60012;
}
.compare-page .compare-tabs {
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
  padding-left: 0;
}
.compare-page .compare-tabs .nav-item {
  margin-bottom: -1px;
}
.compare-page .compare-tabs .nav-link {
  cursor: pointer;
  border: none;
  color: #555;
  padding: 0.7rem 1.4rem;
  font-size: 15px;
  letter-spacing: 0.03em;
  background: transparent;
  transition: color 0.15s ease;
}
.compare-page .compare-tabs .nav-link:hover {
  color: #e60012;
}
.compare-page .compare-tabs .nav-link.active {
  font-weight: 700;
  color: #e60012;
  border-bottom: 2px solid #e60012;
  background: transparent;
}
.compare-page .compare-group {
  display: none;
}
.compare-page .compare-group.active {
  display: block;
}
.compare-page .compare-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}
.compare-page .compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: #fff;
  text-align: center;
}
.compare-page .compare-table tbody {
  border: 1px solid #e6e6e6;
}
.compare-page .compare-table th,
.compare-page .compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #ececec;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.6;
}
.compare-page .compare-table .sticky-col {
  position: sticky;
  left: 0;
  background: #fafafa;
  z-index: 2;
  min-width: 160px;
  font-weight: 500;
  color: #333;
}
.compare-page .compare-table thead .sticky-col {
  z-index: 3;
  background: #fff;
}
.compare-page .compare-table .compare-product-cell {
  min-width: 240px;
  text-align: center;
  position: relative;
  background: #fff;
  padding-top: 32px;
  padding-bottom: 22px;
}
.compare-page .compare-table .compare-product-cell .compare-product-image {
  display: inline-block;
  margin: 0.5rem 0 0.75rem;
  overflow: hidden;
}
.compare-page .compare-table .compare-product-cell .compare-product-image img {
  max-width: 200px;
  height: auto;
  display: block;
  transition: transform 0.25s ease;
}
.compare-page .compare-table .compare-product-cell .compare-product-image:hover img {
  transform: scale(1.05);
}
.compare-page .compare-table .compare-product-cell .compare-product-title {
  display: block;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}
.compare-page .compare-table .compare-product-cell .compare-product-title:hover {
  color: #e60012;
}
.compare-page .compare-table .compare-remove-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: 1px solid transparent;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  color: #aaa;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.compare-page .compare-table .compare-remove-btn:hover {
  color: #fff;
  background: #e60012;
  border-color: #e60012;
}
.compare-page .compare-table .section-header-row td {
  background: #f7f7f7;
  font-weight: 700;
  color: #222;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  letter-spacing: 0.05em;
  padding: 12px 18px;
  text-align: left;
}
.compare-page .compare-table .section-header-row td strong {
  position: relative;
  padding-left: 14px;
  display: inline-block;
}
.compare-page .compare-table .section-header-row td strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: #e60012;
}
.compare-page .compare-table .field-name-col {
  color: #666;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .compare-page .compare-table {
    min-width: 480px;
  }
  .compare-page .compare-table th,
  .compare-page .compare-table td {
    padding: 0.6rem 0.85rem;
    font-size: 13px;
  }
  .compare-page .compare-table .sticky-col {
    min-width: 110px;
  }
  .compare-page .compare-table .compare-product-cell {
    min-width: 170px;
    padding-top: 22px;
    padding-bottom: 16px;
  }
  .compare-page .compare-table .compare-product-cell .compare-product-image img {
    max-width: 130px;
  }
  .compare-page .compare-table .section-header-row td {
    padding: 10px 14px;
  }
}/*# sourceMappingURL=compare.css.map */