html {
  height: 100%;
  width: 100%;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--card-background-color, #fff);
  border-radius: var(--border-radius, 0.25rem);
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-header {
  min-height: 5rem;
  margin-bottom: 1rem;
}

.product-header h2 {
  margin-bottom: 0.25rem;
}

.product-header h3 {
  margin-bottom: 0;
}

.product-image {
  margin: 0 0 1rem 0;
}

.product-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.product-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info p:last-of-type {
  margin-bottom: 1rem;
}

.product-info button {
  margin-top: auto;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-header {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

.about-photo {
  text-align: center;
  margin: 0;
}

.about-photo img {
  width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius, 0.25rem);
}

.about-photo figcaption {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1.2rem;
}

.about-bio {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-bio p {
  font-size: 1.1rem;
  line-height: 1.7;
}
