.home {
  min-height: 100vh;
}

.hero {
  width: 100%;
  margin-bottom: var(--spacing-xxl);
}

.heroImage {
  width: 100%;
  height: 80vh;
  min-height: 500px;
  position: relative;
  background-color: #f5f5f5;
  overflow: hidden;
}

.heroImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured {
  padding: var(--spacing-xxl) 0;
}

.productGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.productCard {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.productImage {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  background-color: #f5f5f5;
  margin-bottom: var(--spacing-md);
  overflow: hidden;
}

.productImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.productInfo {
  text-align: center;
}

.productTitle {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text);
}

@media (max-width: 1024px) {
  .productGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .heroImage {
    height: 60vh;
    min-height: 400px;
  }
  
  .featured {
    padding: var(--spacing-xl) 0;
  }
  
  .productGrid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .productImage {
    margin-bottom: var(--spacing-sm);
  }
}
