/* ---------- HERO TITLE ---------- */

.products-hero {
  padding: 56px 0 24px;
}

.products-title {
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}

/* Wrapper around the products page content (below hero) */
.products-page-wrapper {
  padding-top: 0;
  padding-bottom: 0;
}

/* ---------- FILTER ROW (top) ---------- */

.filters-header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;          /* inline text + fields */
  margin-bottom: 12px;
}

/* shared label style */
.filters-label {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

/* Search: label + input inline */
.filters-search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 260px;
}

.filters-search-input {
  flex: 1 1 auto;
}

/* Sorting: label + select inline */
.filters-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
}

/* Count on the far right */
.filters-count {
  margin-left: auto;
  font-size: 16px;
  white-space: nowrap;
}

/* hidden panel that opens when clicking Filters */
.filters-panel {
  display: none;
  background: #fafafa;
  padding: 16px 20px;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-top: 8px;
}

.filters-panel.is-open {
  display: block;
}

/* each dropdown filter row in the panel */
.filters-panel .filters-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filters-panel .filters-field .filters-label {
  font-size: 14px;          /* a bit smaller inside panel */
}

.filters-panel .filters-control {
  flex: 1 1 auto;
}

/* Filters button */

.filters-btn {
  height: 60px; 
  background: #880C14;
  border-color: #880C14;
  color: #fff;
  padding: 8px 18px;
}

.filters-btn-icon {
  width: 18px;
  height: 18px;
}

.filters-btn:hover,
.filters-btn:focus {
    background: #6e0a11 !important;
    border-color: #6e0a11 !important;
    color: #ffffff !important;
}

.filters-search-input,
.filters-sort .form-select {
  height: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
}

.filters-panel .filters-control {
  height: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
}

.reset {
    background: #838383 !important;
    border-color: #838383 !important;
    padding-top: 17px;
}

/* Make the Apply filters button red like CTA */
.products-page-wrapper .btn-primary {
  background-color: #880C14;
  border-color: #880C14;
}

.products-page-wrapper .btn-primary:hover {
  background-color: #6e0a11;
  border-color: #6e0a11;
}

/* ---------- CTA STRIP ---------- */

.products-cta {
  background: #880C14;
  color: #fff;
  padding: 56px 0 52px;
  text-align: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 40px;
  margin-bottom: 0;
}

.products-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.products-cta-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
}

.products-cta-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.products-cta-btn {
  background: #ffffff;
  color: #880C14;
  padding: 10px 26px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 14px;
  border: none;
}

/* ---------- RED PAGINATION ---------- */

.pagination {
  gap: 6px;
}

.pagination .page-link {
  color: #880C14;
  border: 1px solid #880C14;
  border-radius: 4px;
}

.pagination .page-link:hover {
  background-color: #880C14;
  color: #fff;
  border-color: #880C14;
}

.pagination .page-item.active .page-link {
  background-color: #880C14 !important;
  border-color: #880C14 !important;
  color: #fff !important;
}

.pagination .page-item.disabled .page-link {
  color: #ccc;
  border-color: #ddd;
}




