/* Clean BioFarm / Xanh Organic Base Theme Overrides */
html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

::selection {
  background-color: #a7f3d0;
  color: #064e3b;
}

/* Enforce exact 1:1 aspect ratio for all product card images */
.aspect-square {
  aspect-ratio: 1 / 1 !important;
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
}

.aspect-square img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.home-prod-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

/* Custom scrollbar for cart and drawers */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f5f5f4;
}
::-webkit-scrollbar-thumb {
  background: #d6d3d1;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a8a29e;
}
