::-webkit-scrollbar {
  display: none;
}
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
.container-slideranjaymabar {
  scroll-snap-type: y mandatory;
}
body {
  margin: 0;
  font-family: "Twemoji Country Flags", "Arial", sans-serif;
  margin-top: 56px;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.product-img-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  /* Optional biar sudutnya melengkung */
  border-radius: 8px;
}

/* Biar 1:1 aspect ratio */
.product-img-container::before {
  content: "";
  display: block;
  padding-top: 100%; /* Rasio 1:1 */
}

.square-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Biar gambar tetap proporsional, nggak ketarik */
}

.square-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.best-seller h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 40px;
  margin-bottom: 20px;
  margin-top: 50px;
}
.best-seller h5 {
  font-weight: bold;
}
.truncate-text {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* jumlah baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
