* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: #000;
  padding: 20px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  box-shadow: 0px 0px 20px 5px #fff;
  border-radius: 5px 5px 5px 5px;
}

header .logo img {
  width: 135px;
  height: 50px;
  border-radius: 50%;
}

header .logo span {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  color: #000;
  border-radius: 20px;
  padding: 5px 10px;
}

.search-bar input {
  background: none;
  border: none;
  color: #000;
  padding: 5px;
  outline: none;
  width: 150px;
}

.search-bar input::placeholder {
  color: #ccc;
}

.search-bar i {
  color: #ccc;
}

/* Filters */
.filters {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.filter-group {
  flex: 1;
  min-width: 150px;
}

.filter-group select {
  width: 100%;
  padding: 8px;
  background: #fff;
  color: #000;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  outline: none;
}

/* Products Section */
.products {
  margin: 20px 0;
}

.products h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  color: #000;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* box-shadow: 0px 1px 3px 1px; */
  box-shadow: 0px 0px 2px 2px #f4f1f1;
}

.product-card .label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1abc9c;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.product-card img {
  width: 100%;
  height: 150px;
  border-radius: 4px;
  margin-bottom: 10px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 16px;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.4em;
  line-height: 1.2em;
  flex-grow: 1;
}

.product-card p {
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
}

.product-card .btn-container {
  margin-top: auto;
  padding-top: 10px;
}

.product-card .btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.no-products {
  text-align: center;
  padding: 20px;
  color: #000;
}

.load-more {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  max-width: 500px;
  width: 90%;
  color: #333;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .filters {
    flex-direction: column;
  }

  .search-bar input {
    width: 100px;
  }
}