.byxs-product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.byxs-product-item {
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: calc(33.333% - 20px);
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.byxs-product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.byxs-product-item img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Title Styling */
.byxs-product-item h4 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.19px;
  color: #333333;
  margin: 15px 0 10px;
}

.byxs-title-link {
  text-decoration: none;
  color: inherit;
}

.byxs-title-link:hover {
  text-decoration: underline;
}

/* Description Styling */
.byxs-description {
  font-family: 'PT Sans', sans-serif !important;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: -0.11px;
  color: #333333;
  margin-bottom: 12px;
  text-align: center;
}

/* Price Styling */
.byxs-price {
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

/* Learn More Button */
.byxs-learn-more {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 16px;
    background-color: #5C9340;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    font-family: PT Sans !important;
    transition: background-color 0.3s ease;
    width: 80%;
}

.byxs-learn-more:hover {
  background-color: #4b7c35;
}

@media (max-width: 768px) {

.byxs-product-list {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
}

.byxs-product-item {
    width: 100%;
}
}

.term-maintenance-products .woocommerce-products-section {
    padding: 0px 0 40px !important;
}