/* RESET & GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Urbanist", sans-serif;
}

body {
  background-color: f5f9f9;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* HOVER EFFECT */
a img:hover {
  transform: scale(1.02);
  transition: all 0.3s;
}

a img.reseller:hover,
a img.grow-scale:hover {
  transform: none;
  transition: none;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #45b2a3;
}

::-webkit-scrollbar-thumb:hover {
  background: #45b2a3;
}

/* 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); }
}

/* LAYOUT */
.container {
  max-width: 900px;
  margin: 0 auto;
}

.text-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* BANNER */
.banner-header img,
.banner-footer img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.banner-footer img {
  margin-bottom: 15px;
}

/* ORDER PRODUCT */
.official-webstore img {
  width: 47%;
  height: 47%;
  margin-top:-210px;
  margin-bottom: -20px;
}

/* LABEL PROMOSI */
.label-promosi img,
.label-promosi img.tell-us {
  width: 60%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 30px;
  margin-top:30px;
}

.marketplace .marketplace-3{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.marketplace img {
  width: 150px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 10px;
}

.marketplace-3 img {
  width: 150px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 10px;
}


/* RESELLER JOIN */
.reseller-join {
  margin: 40px 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reseller-join img {
  width: 620px;
  height: 100%;
  display: flex;
  justify-content: center;
  margin-top: -20px;
  margin-bottom: -30px;
}

/* OTHER SECTIONS */
.partnership img,
.export img,
.complain img {
  width: 100%;
}

.follow-us {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.follow-us img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.video {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 40px;
}

.video iframe {
  width: 725px;
  height: 515px;
  border-radius: 15px; /* sudut membulat */
  overflow: hidden;    /* pastikan isi iframe tidak keluar sudut */
}

/* Rasio 4:3 → 3/4 = 75% */
.video-embed::before {
  content: "";
  display: block;
  padding-top: 56.25%%;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 15px;
}


/* FOOTER */
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: #45b2a3;
}

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;
  }

  .official-webstore img {
    width: 85%;
    object-fit: cover;
    margin-top:-100px;
  }

.marketplace {
    object-fit: cover;
    grid-template-columns: repeat(3, 1fr);  /* tetap 3 kolom tapi responsif */
    gap: 3px;                               /* jarak sedikit lebih sempit */
    margin:auto;;
  }

  .marketplace-3 {
    object-fit: cover;
    grid-template-columns: repeat(3, 1fr);   /* 3 kolom untuk baris kedua */
    gap: 0px;
    margin:auto;                        /* beri jarak atas */
  }
  
 .marketplace img{
    width: 90px;
    height: auto;
    padding: 1px;
    margin-bottom: 5px;
    object-fit: cover;
    display: flex
  }
  
  .marketplace-3 img {
    width: 100px;
    height: auto;
    object-fit: cover;
    display: flex
  }

  .reseller-join {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
   .reseller-join img {
    width: 330px;
    height: 100%;
    display: flex;
    justify-content: center;
    margin:3px;
  }

  .label-promosi img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    margin: 20px 0;
  }
  
  .label-promosi img.tell-us {
    width: 60%;
    height: 100%;
    object-fit: cover;
    margin: 20px 0;
  }

  .partnership img,
  .export img,
  .complain img {
    width: 90%;
    display: block;
    margin: 0 auto;
  }

  .video iframe {
    width: 90%;
    height: 230px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  footer span {
    font-size: 0.7rem;
    color: #ffffff;
    font-weight: 600;
    background-color: #45b2a3;
  }
}