
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-size: 16px;
  box-sizing: border-box;
}

.container {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: 16px;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  body {
    font-size: 14px;
  }

  .product-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column grid for mobile */
    gap: 12px;
  }
}

/* Desktop view adjustments */
@media (min-width: 1024px) {
  .container {
    max-width: 1200px; /* Max width for larger screens */
    padding: 20px;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 20px;
  }
}

/* Ensure images are responsive */
img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
