/* === Main Layout === */
.nexa-wrapper {
  display: flex;
  gap: 30px;
  margin: 40px auto;
  max-width: 1300px;
}

/* === Sidebar Filters === */
.nexa-filters {
  flex: 0 0 260px;
  background: #fff;
  border: 2px solid #002B7F22;
  border-left: 6px solid #ED1C24;
  border-radius: 14px;
  padding: 25px 20px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.05);
  position: sticky;
  top: 120px;
  height: fit-content;
}

.nexa-filters h3 {
  color: #002B7F;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.nexa-filters label {
  display: block;
  font-size: 0.9rem;
  color: #ED1C24;
  margin: 12px 0 5px;
  font-weight: 600;
}

.nexa-filters select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  font-family: 'Inter', sans-serif;
  transition: 0.2s;
}

.nexa-filters select:focus {
  border-color: #002B7F;
  box-shadow: 0 0 0 3px rgba(0,43,127,0.1);
}

/* === Custom Product Card === */
.nexa-product-card {
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.3s ease;
  text-align: center;
  padding-bottom: 10px;
}

.nexa-product-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.nexa-product-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* === Title and Price === */
.nexa-product-details {
  padding: 10px 15px;
}

.nexa-product-title a {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease;
}

.nexa-product-title a:hover {
  color: #002B7F; /* Skisports Blue */
}

.nexa-product-price {
  margin-top: 5px;
  font-weight: 600;
  color: #ED1C24;
  font-size: 0.95rem;
}

/* === Grid Layout === */
#product-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 25px;
}
