/* Filter Section */
.season-filter {
    text-align: center;
    margin: 20px 0;
  }
  
  .season-filter h2 {
    font-size: 2.5rem; /* Make the title larger */
    margin-bottom: 20px;
    color: #2c3e50; /* Darker shade for better readability */
  }
  
  .month-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px; /* Larger gap between items */
  }
  
  .month-filters label {
    font-size: 1.2rem; /* Larger font for better visibility */
    font-weight: bold; /* Bold for emphasis */
    color: #34495e; /* Neutral dark color */
    padding: 10px 15px; /* Add padding around labels */
    border: 2px solid #bdc3c7; /* Light border for styling */
    border-radius: 5px; /* Rounded corners for a modern look */
    cursor: pointer; /* Indicate clickability */
    transition: all 0.3s ease-in-out; /* Smooth hover effect */
  }
  
  .month-filters label:hover {
    background-color: #ecf0f1; /* Light gray background on hover */
    color: #2c3e50; /* Darker text color on hover */
  }
  
  .month-checkbox {
    margin-right: 10px; /* Space between checkbox and label text */
    transform: scale(1.2); /* Enlarge checkbox size */
    cursor: pointer; /* Indicate clickability */
  }
  #produce-container {
    width: 75%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
  }
  
  .produce-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .produce-card img {
    max-width: 100%;
    border-radius: 10px;
  }
  
  .produce-card h3 {
    margin: 10px 0;
    font-size: 1.4rem;
  }
  
  .produce-card p {
    font-size: 1rem;
    margin: 10px 0;
  }
  
  .produce-card .vendor-link {
    display: block;
    color: #007bff;
    text-decoration: none;
    margin-top: 10px;
  }
  
  .produce-card .vendor-link:hover {
    text-decoration: underline;
  }
  
  .vendor-list {
    list-style-type: none; /* Removes the bullet points */
    padding-left: 0; /* Removes left padding */
    text-align: center; /* Aligns list items to the left */
    margin-top: 10px; /* Adds space above the list */
  }
  
  .vendor-list li {
    margin-bottom: 5px; /* Space between list items */
  }
  
  .vendor-link {
    color: #007bff; /* Standard blue link color */
    text-decoration: none;
  }
  
  .vendor-link:hover {
    text-decoration: underline;
  }
  