* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #ffffff;
}

a img:hover {
  transform: scale(1.02);
  transition: all 0.3s;
}

a img.reseller:hover {
  transform: none;
  transition: none;
}

a img.grow-scale:hover {
  transform: none;
  transition: none;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c43131;
}

::-webkit-scrollbar-thumb:hover {
  background: #c43131;
}

/* ANIMASI */

.grow-scale {
  animation-name: grow;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: grow;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
}
@keyframes grow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.text-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Banner */
.banner-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 30px;
}


/* Label */
.label-promosi{
  margin:20px;
}

.label-promosi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Order Product */

.official-webstore img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marketplace img {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 10px;
  margin-top: 20px;
}

.marketplace img.shopee-indonesia {
  width: 100%;
  height: 100%;
  padding: 10px;
}

.shopee img {
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  display: flex;
}

.reseller-join {
  margin-top: 50px;
  margin-bottom: 50px;
}

.reseller-join img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partnership img {
  width: 100%;
}
.export img {
  width: 100%;
}
.complain img {
  width: 100%;
}

.follow-us {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.follow-us img {
  width: 90%;
  height: 60%;
  object-fit: cover;
  margin:20px;
}

.video {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0 40px;
}

.video iframe {
  width: 826px;
  height: 515px;
  border-radius: 15px; /* sudut membulat */
  overflow: hidden;    /* pastikan isi iframe tidak keluar sudut */
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: #c43131;
}

footer span {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
}

/* MEDIA QUERY */

@media screen and (max-width: 768px) {
  .container {
    max-width: 100%;
    margin: 0 auto;
  }

  .banner-header img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 20px;
  }

  .official-webstore img {
    width: 90%;
    object-fit: cover;
  }
  .marketplace .box-2 img {
    width: 88%;
  }
  .marketplace img{
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    margin:10px;
  }
  .marketplace img.shopee-indonesia {
    width: 90%;
    height: 100%;
    padding: 0px;
    margin:10px;
  }

  .shopee .box-2 img {
    width: 92%;
    margin-left: -3px;
  }

  .reseller-join {
    margin-top: 30px;
  }

  .reseller-join img{
    margin-bottom: -25px;
  }

  .label-promosi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .partnership img {
    width: 80%;
  }
  .export img {
    width: 80%;
  }
  .complain img {
    width: 80%;
  }

  .video iframe {
    width: 90%;
    height: 230px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  .follow-us img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    margin:12px;
  }

  footer span {
    font-size: 0.7rem;
    color: #ffffff;
    font-weight: 600;
  }
}
