.shop-container {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 20px;
}

.shop-header {
  color: #fff;
  margin-bottom: 40px;
}

.shop-header h1 {
  font-size: calc(3rem + 0.5vw);
  margin-bottom: 20px;
}

.shop-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
}

.categories {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-button {
    background: rgb(85 85 85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-button:hover,
.category-button.active {
    background: #333333;
    border-color: #000000;
    color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card[data-hidden="true"] {
  display: none;
}

.product-image {
  height: 300px;
  background: linear-gradient(to bottom, #9fd483, #8dc26f);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.product-details {
  padding: 25px;
  display: flex;
  flex-direction: column;
  height: 250px;
}

.product-name {
  font-family: 'PT Serif', serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.product-description {
  color: #666;
  line-height: 1.4;
  margin-bottom: 20px;
  flex-grow: 1;
      max-height: 100px;
	      overflow: hidden;
}

.product-footer {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 1em;
    position: relative;
}

.product-price {
    max-width: 120px;
    background: #000000;
    color: white;
    font-size: 16px;
    padding: 5px 15px;
    position: relative;
}

.add-to-cart {
    background: #555555;
    color: #fff;
    border: none;
    padding: 5px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
  background: #70a751;
}

@media (max-width: 768px) {
  .shop-header h1 {
    font-size: 2.5rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .product-image {
    height: 250px;
  }
}
.hacks{
	    max-width: 1200px;
    margin: 0 auto;
}
.product-price{
	    max-width: 120px;
    background: #000000;
    color: white;
    font-size: 16px;
    padding: 5px 15px;
}
.products-grid a{
	    text-decoration: none;
}
.product-card:hover{
	    opacity: 0.8;
}