.link-orange {
  color: #ff6915;
}

.top-bar {
  margin-bottom: -15px;
}

.text-top-bar {
  font-size: 12px;
}

/* best seller */

.container.best-seller {
  margin-top: 5.7rem;
  position: relative;
}

.container.best-seller .product {
  width: 500px;
  height: 300px;
  flex: 0 0 auto;
}
.product-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.scroll-btn {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  background-color: white;
  color: black;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.scroll-left {
  left: 10px;
}
.scroll-right {
  right: 10px;
}

/* Our Store */
.container.our-store {
  margin-top: 5.7rem;
}
/* .our-store .products {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
} */
.our-store .products .description {
  font-size: 12px;
  font-weight: 500;
  color: lightgray;
}

.our-store .products .description .rate {
  color: orange;
  font-weight: 600;
}

.our-store .products .description .product-price {
  color: orange;
  font-weight: 600;
  font-size: 14px;
}
.our-store .products .product {
  position: relative;
}
.our-store .products .product .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: black;
  opacity: 0;
  transition: 0.2s;
}
.our-store .products .product .overlay:hover {
  opacity: 0.1;
}

/* Why Choose Us? */
.why-choose-us {
  margin-top: 5.7rem;
}

.why-choose-us .card {
  background-color: #f9f9f9;
  border: none;
}

.why-choose-us .card .card-body i {
  color: gray;
}

.why-choose-us .card .card-text {
  /* text-align: justify; */
  color: gray;
}

/* Reviews */
.reviews {
  margin-top: 5.7rem;
  margin-bottom: 5.7rem;
}

.reviews .carousel-container {
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.reviews .carousel-track {
  display: flex;
  width: calc(100% * 10); /* Adjust based on the number of items (5 original + 5 clones) */
  animation: scroll 25s linear infinite;
}

.reviews .carousel-itemz {
  min-width: 33.33%;
  box-sizing: border-box;
  padding: 10px;
}

.reviews .card {
  margin: 10px;
}

.our-store .product {
  /* max-width: 260px;   */
  max-height: 260px;
  /* max-width: 260px; */
  overflow: hidden;
  position: relative;
}

.our-store .product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-store .product:hover .overlay {
  opacity: 1;
}

.our-store .description {
  padding: 10px;
}



/* Responsive Styles */

@media (max-width: 768px) {
  .reviews .carousel-itemz {
    min-width: 600px;
  }

  .our-store {
    margin-bottom: 10rem !important;
  }

 .our-store .product {
      max-width: 100% !important;
  
  }
  
}

@media (max-width: 600px) {
  .reviews .carousel-itemz {
    min-width: 480px;
  }
  .our-store .products {
    justify-content: center;
  }
}

/* Keyframes for scrolling animation */
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%); /* Adjust based on the number of items (50% for 5 items + 5 clones) */
  }
}

/* Footer */
.footer {
  color: black;
  padding: 40px 0;
}

.footer a {
  color: black;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .footer-logo img {
  max-width: 100%;
  height: auto;
}
.footer-logo {
  margin-top: 20px;
}
.payment-images img {
  display: block;
  margin-top: 10px;
}

.copyright {
  background-color: #002d3e;
}

/* HALAMAN PRODUCT */
.product-thumbnails {
  display: flex;
  justify-content: space-between;
  gap: 10px; /* Jarak antar thumbnail */
}

.product-thumbnails img {
  flex: 1;
  max-width: calc(25% - 10px); /* Empat gambar dalam satu baris dengan jarak */
  height: auto;
  object-fit: cover; /* Agar gambar tetap proporsional */
}

.row.align-items-stretch {
  display: flex;
  flex-wrap: wrap;
}

.row.align-items-stretch > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

.card.h-100 {
  flex: 1;
}

.order-quantity {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
}
.order-quantity input {
  width: 50px;
  text-align: center;
}
.order-quantity button {
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 0;
  line-height: 30px;
}
