.crop-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 30px;
    max-width: 1200px;
    margin: auto;
  }
  .crop-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .crop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  .crop-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .crop-card h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #2c3e50;
  }
  .crop-card p {
    font-size: 0.95rem;
    color: #555;
  }
  .crop-card a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    background: #2ecc71;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
  }
  .crop-card a:hover {
    background: #27ae60;
  }

  h1 {
    text-align: center;
    margin-top: 20px;
    font-size: 2rem;
    color: #2c3e50;
  }
  .crop-card .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.search-bar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  margin: 5px 10px;
}

.search-bar input {
  padding: 10px;
  width: 200px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 16px;
}

.search-bar input:focus {
  border-color: #4CAF50;
  box-shadow: 0 0 5px #4CAF50;
}
