/* ===== BILLYS_STOREFRONT_FOOTER_DEDICATED_V1_20260506 ===== */
/*
  Footer-only CSS.
  Future footer development should happen here, not in storefront.css.
*/

.siteFooter {
  margin-top: 40px;
  padding: 20px 16px 30px;
  border-top: 1px solid rgba(12, 82, 210, 0.1);
  background: rgba(255, 255, 255, 0.68);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.siteFooter__inner,
.siteFooter__inner--center {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
}

/* Payment icons */
.siteFooter__paymentSection {
  width: min(100%, 920px);
  margin: 0 auto 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.siteFooter__paymentTitle {
  margin: 0 0 10px;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
  color: #1B1B1B !important;
  text-align: center;
}

.siteFooter__paymentLogoRow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.siteFooter__paymentLogoCard {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.siteFooter__paymentLogo {
  display: block;
  max-width: 82px;
  max-height: 30px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ===== BILLYS_STOREFRONT_FOOTER_LINK_COLUMNS_DEDICATED_V2_20260506 ===== */
.siteFooter__linkColumns {
  width: 100%;
  max-width: 1280px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 10px auto 26px;
  padding-left: 16px;
  padding-right: 16px;
  text-align: left;
}

.siteFooter__linkColumn {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.siteFooter__linkTitle {
  margin: 0 0 8px;
  color: #1B1B1B !important;
  font-family: "Nunito", sans-serif;
  font-size: 15px !important;
  line-height: 1.75 !important;
  font-weight: 700 !important;
  text-align: left;
}

.siteFooter__linkItem {
  display: inline-flex;
  width: fit-content;
  color: #1B1B1B !important;
  font-family: "Nunito", sans-serif;
  font-size: 15px !important;
  line-height: 1.75 !important;
  font-weight: 400 !important;
  text-align: left;
  text-decoration: none;
  transition: color 0.18s ease;
}

.siteFooter__linkItem:hover {
  color: #0c52d2 !important;
}

@media (max-width: 900px) {
  .siteFooter__linkColumns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }
}

@media (max-width: 520px) {
  .siteFooter__linkColumns {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* ===== END BILLYS_STOREFRONT_FOOTER_LINK_COLUMNS_DEDICATED_V2_20260506 ===== */

/* Bottom row */
.siteFooter__bottomRow {
  width: 100%;
  max-width: 1280px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 2px auto 0;
  padding-left: 16px;
  padding-right: 16px;
}

.siteFooter__bottomLeft {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.siteFooter__bottomLeft .siteFooter__legalCopy {
  margin: 0;
  text-align: left;
  font-size: 13px;
  line-height: 1.5;
  color: #1B1B1B;
  white-space: nowrap;
}

.siteFooter__bottomRight {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 6px;
  text-align: right;
}

.siteFooter__bottomRight .siteFooter__socialRow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 0;
}

.siteFooter__bottomRight .siteFooter__socialLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.siteFooter__bottomRight .siteFooter__socialLink:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.siteFooter__bottomRight .siteFooter__socialIcon {
  display: block;
  width: auto;
  height: 22px;
}

.siteFooter__bottomRight .siteFooter__legalLinks {
  margin-top: 0;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(27, 27, 27, 0.78);
  text-align: right;
}

.siteFooter__bottomRight .siteFooter__legalLinks a {
  color: inherit;
  text-decoration: none;
}

.siteFooter__bottomRight .siteFooter__legalLinks a:hover {
  color: #0c52d2;
  text-decoration: none;
}

.siteFooter__legalLinksSeparator {
  opacity: 0.45;
  user-select: none;
}

@media (max-width: 768px) {
  .siteFooter {
    margin-top: 28px;
    padding: 18px 14px 18px;
  }

  .siteFooter__paymentLogoRow {
    gap: 8px 12px;
  }

  .siteFooter__paymentLogo {
    max-width: 70px;
    max-height: 25px;
  }

  .siteFooter__bottomRow {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 0;
  }

  .siteFooter__bottomLeft {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .siteFooter__bottomLeft .siteFooter__legalCopy {
    width: 100%;
    text-align: center;
    font-size: 12px;
    line-height: 1.45;
    white-space: normal;
  }

  .siteFooter__bottomRight {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
  }

  .siteFooter__bottomRight .siteFooter__socialRow,
  .siteFooter__bottomRight .siteFooter__legalLinks {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .siteFooter__bottomRight .siteFooter__socialIcon {
    height: 21px;
  }

  .siteFooter__bottomRight .siteFooter__legalLinks {
    font-size: 12px;
    line-height: 1.45;
    gap: 7px;
  }
}

/* ===== END BILLYS_STOREFRONT_FOOTER_DEDICATED_V1_20260506 ===== */

/* ===== BILLYS_STOREFRONT_FOOTER_LINK_PAYMENT_TUNE_V1_20260506 ===== */
.siteFooter__linkColumns {
  padding-left: 28px;
  padding-right: 28px;
  margin-bottom: 22px;
}

.siteFooter__paymentSection {
  margin-top: 0;
  margin-bottom: 28px;
  text-align: center;
}

.siteFooter__paymentLogoRow {
  justify-content: center;
}

.siteFooter__linkItem,
.siteFooter__linkItem:visited,
.siteFooter__linkItem:hover,
.siteFooter__linkItem:focus,
.siteFooter__linkItem:active {
  text-decoration: none !important;
}

.siteFooter__linkItem:hover,
.siteFooter__linkItem:focus {
  color: #0c52d2 !important;
}

.siteFooter__bottomRow {
  padding-left: 28px;
  padding-right: 28px;
}

@media (max-width: 768px) {
  .siteFooter__linkColumns,
  .siteFooter__bottomRow {
    padding-left: 22px;
    padding-right: 22px;
  }

  .siteFooter__paymentSection {
    margin-bottom: 24px;
  }
}
/* ===== END BILLYS_STOREFRONT_FOOTER_LINK_PAYMENT_TUNE_V1_20260506 ===== */

/* ===== BILLYS_STOREFRONT_FOOTER_PAYMENT_ONE_ROW_CLEAN_V4_20260507 ===== */
/*
  Payment visual cleanup:
  - buang visual card/background per logo
  - desktop 1 baris
  - logo lebih kecil
  - wrapper tetap hanya sebagai slot transparan supaya layout stabil
*/
footer.siteFooter .siteFooter__paymentSection {
  margin-top: 28px !important;
  margin-bottom: 30px !important;
  text-align: center !important;
}

footer.siteFooter .siteFooter__paymentLogoRow {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
}

footer.siteFooter .siteFooter__paymentLogoCard {
  width: 44px !important;
  height: 28px !important;
  flex: 0 0 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
  overflow: visible !important;
}

footer.siteFooter .siteFooter__paymentLogo {
  display: block !important;
  width: 44px !important;
  height: 28px !important;
  max-width: 44px !important;
  max-height: 28px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
}

/* Mobile/tablet boleh wrap supaya aman tidak overflow. */
@media (max-width: 900px) {
  footer.siteFooter .siteFooter__paymentLogoRow {
    flex-wrap: wrap !important;
    gap: 8px 2px !important;
    justify-content: center !important;
    align-items: center !important;
  
  }

  footer.siteFooter .siteFooter__paymentLogoCard,
  footer.siteFooter .siteFooter__paymentLogo {
    width: 48px !important;
    height: 26px !important;
    max-width: 48px !important;
    max-height: 26px !important;
    flex-basis: 48px !important;
  }
}

@media (max-width: 430px) {
  footer.siteFooter .siteFooter__paymentLogoRow {
    gap: 8px 2px !important;
    justify-content: center !important;
    align-items: center !important;
  
  }

  footer.siteFooter .siteFooter__paymentLogoCard,
  footer.siteFooter .siteFooter__paymentLogo {
    width: 48px !important;
    height: 26px !important;
    max-width: 48px !important;
    max-height: 26px !important;
    flex-basis: 48px !important;
  }
}
/* ===== END BILLYS_STOREFRONT_FOOTER_PAYMENT_ONE_ROW_CLEAN_V4_20260507 ===== */

/* ===== BILLYS_STOREFRONT_FOOTER_PAYMENT_MOBILE_TIGHT_GAP_V1_20260507 ===== */
/* Mobile only: rapatkan logo metode pembayaran tanpa mengubah desktop. */
@media (max-width: 900px) {
  footer.siteFooter .siteFooter__paymentLogoRow {
    justify-content: center !important;
    align-items: center !important;
    gap: 8px 0 !important;
  }

  footer.siteFooter .siteFooter__paymentLogoCard {
    margin-left: -3px !important;
    margin-right: -3px !important;
  }
}

@media (max-width: 430px) {
  footer.siteFooter .siteFooter__paymentLogoRow {
    justify-content: center !important;
    align-items: center !important;
    gap: 8px 0 !important;
  }

  footer.siteFooter .siteFooter__paymentLogoCard {
    margin-left: -4px !important;
    margin-right: -4px !important;
  }
}
/* ===== END BILLYS_STOREFRONT_FOOTER_PAYMENT_MOBILE_TIGHT_GAP_V1_20260507 ===== */


/* ===== BILLYS_STOREFRONT_FOOTER_SHIPPING_LOGO_SINGLE_V1_20260507 ===== */
/*
  Shipping logo single:
  - tampil di bawah Metode Pembayaran
  - tanpa title
  - tanpa card/background visual
*/
footer.siteFooter .siteFooter__shippingSection {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 10px auto 30px !important;
  padding: 0 16px !important;
  text-align: center !important;
  overflow: visible !important;
}

footer.siteFooter .siteFooter__shippingLogoCard {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 138px !important;
  height: 74px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
  overflow: visible !important;
}

footer.siteFooter .siteFooter__shippingLogo {
  display: block !important;
  width: 138px !important;
  height: auto !important;
  max-width: 138px !important;
  max-height: 74px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: none !important;
  animation: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
}

@media (max-width: 640px) {
  footer.siteFooter .siteFooter__shippingSection {
    margin: 8px auto 26px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  footer.siteFooter .siteFooter__shippingLogoCard {
    width: 118px !important;
    height: 64px !important;
  }

  footer.siteFooter .siteFooter__shippingLogo {
    width: 118px !important;
    max-width: 118px !important;
    max-height: 64px !important;
  }
}
/* ===== END BILLYS_STOREFRONT_FOOTER_SHIPPING_LOGO_SINGLE_V1_20260507 ===== */

/* ===== BILLYS_STOREFRONT_FOOTER_SHIPPING_COURIER_LOGOS_V1_20260507 ===== */
/*
  Courier logos:
  - JNE, Anteraja, Wahana lebih kecil
  - logo mobil lebih besar di kanan setelah Wahana
  - rata bawah supaya terlihat mobil menarik logo kurir
  - tanpa title dan tanpa card visual
*/
footer.siteFooter .siteFooter__shippingSection {
  flex-direction: row !important;
  align-items: flex-end !important;
  justify-content: center !important;
  gap: 7px !important;
  margin-top: 2px !important;
  margin-bottom: 12px !important;
}

footer.siteFooter .siteFooter__courierLogoRow {
  order: 1 !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: flex-end !important;
  justify-content: center !important;
  gap: 5px !important;
  width: auto !important;
  max-width: 100% !important;
  overflow: visible !important;
  margin-bottom: 7px !important;
}

footer.siteFooter .siteFooter__shippingLogoCard {
  order: 2 !important;
  width: 116px !important;
  height: 62px !important;
  flex: 0 0 116px !important;
  display: inline-flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
  overflow: visible !important;
}

footer.siteFooter .siteFooter__shippingLogo {
  display: block !important;
  width: 116px !important;
  height: auto !important;
  max-width: 116px !important;
  max-height: 62px !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: none !important;
  animation: none !important;
}

footer.siteFooter .siteFooter__courierLogoCard {
  width: 54px !important;
  height: 22px !important;
  flex: 0 0 54px !important;
  display: inline-flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
  overflow: visible !important;
}

footer.siteFooter .siteFooter__courierLogo {
  display: block !important;
  width: 54px !important;
  height: 22px !important;
  max-width: 54px !important;
  max-height: 22px !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
}

@media (max-width: 640px) {
  footer.siteFooter .siteFooter__shippingSection {
    flex-wrap: wrap !important;
    align-items: flex-end !important;
    gap: 5px 7px !important;
  }

  footer.siteFooter .siteFooter__courierLogoRow {
    flex-wrap: nowrap !important;
    align-items: flex-end !important;
    gap: 5px !important;
    width: auto !important;
    margin-bottom: 5px !important;
  }

  footer.siteFooter .siteFooter__courierLogoCard,
  footer.siteFooter .siteFooter__courierLogo {
    width: 46px !important;
    height: 20px !important;
    max-width: 46px !important;
    max-height: 20px !important;
    flex-basis: 46px !important;
  }

  footer.siteFooter .siteFooter__shippingLogoCard {
    width: 88px !important;
    height: 48px !important;
    flex-basis: 88px !important;
  }

  footer.siteFooter .siteFooter__shippingLogo {
    width: 88px !important;
    max-width: 88px !important;
    max-height: 48px !important;
  }
}

/* Road motion effect: subtle wheel road */
footer.siteFooter .siteFooter__shippingLogoCard {
  position: relative !important;
  isolation: isolate !important;
  overflow: visible !important;
}

footer.siteFooter .siteFooter__shippingLogoCard::before {
  content: "" !important;
  position: absolute !important;
  z-index: 1 !important;
  left: 50% !important;
  bottom: 1px !important;
  width: 76px !important;
  height: 2px !important;
  transform: translateX(-50%) !important;
  pointer-events: none !important;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 194, 71, .72) 0 11px,
      transparent 11px 18px
    ) 0 0 / 36px 2px repeat-x;
  opacity: .78 !important;
  animation: billysFooterShippingCarRoadMove 1050ms linear infinite !important;
}

footer.siteFooter .siteFooter__shippingLogoCard::after {
  content: none !important;
}

footer.siteFooter .siteFooter__journeyLayer {
  position: absolute !important;
  z-index: 0 !important;
  left: -22px !important;
  right: -8px !important;
  bottom: 0 !important;
  height: 66px !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

footer.siteFooter .siteFooter__journeyObject {
  position: absolute !important;
  left: 100% !important;
  bottom: 0 !important;
  display: block !important;
  opacity: 0;
  transform: translateX(0) scale(1);
  animation: billysFooterJourneyObjectPass 3s linear infinite !important;
  will-change: transform, opacity !important;
}

/* Fast separated timing: one object passes, then next object enters. */
footer.siteFooter .siteFooter__journeyObject--tree {
  width: 36px !important;
  height: 54px !important;
  animation-delay: 0s !important;
}

footer.siteFooter .siteFooter__journeyObject--pole {
  width: 24px !important;
  height: 58px !important;
  animation-delay: -.75s !important;
}

footer.siteFooter .siteFooter__journeyObject--house {
  width: 58px !important;
  height: 52px !important;
  animation-delay: -1.5s !important;
}

footer.siteFooter .siteFooter__journeyObject--building {
  width: 48px !important;
  height: 62px !important;
  animation-delay: -2.25s !important;
}

footer.siteFooter .siteFooter__journeyObject--tree::before {
  content: "" !important;
  position: absolute !important;
  left: 15px !important;
  bottom: 0 !important;
  width: 6px !important;
  height: 22px !important;
  border-radius: 999px !important;
  background: rgba(155, 106, 58, .74) !important;
}

footer.siteFooter .siteFooter__journeyObject--tree::after {
  content: "" !important;
  position: absolute !important;
  left: 3px !important;
  bottom: 17px !important;
  width: 25px !important;
  height: 25px !important;
  border-radius: 999px !important;
  background: rgba(39, 163, 91, .50) !important;
  box-shadow: 12px 4px 0 rgba(39, 163, 91, .34) !important;
}

footer.siteFooter .siteFooter__journeyObject--pole::before {
  content: "" !important;
  position: absolute !important;
  left: 11px !important;
  bottom: 0 !important;
  width: 4px !important;
  height: 50px !important;
  border-radius: 999px !important;
  background: rgba(12, 82, 210, .42) !important;
}

footer.siteFooter .siteFooter__journeyObject--pole::after {
  content: "" !important;
  position: absolute !important;
  left: 2px !important;
  bottom: 44px !important;
  width: 20px !important;
  height: 4px !important;
  border-radius: 999px !important;
  background: rgba(12, 82, 210, .34) !important;
  box-shadow: 18px 3px 0 -1px rgba(244, 194, 71, .70) !important;
}

footer.siteFooter .siteFooter__journeyObject--house::before {
  content: "" !important;
  position: absolute !important;
  left: 5px !important;
  bottom: 22px !important;
  width: 0 !important;
  height: 0 !important;
  border-left: 24px solid transparent !important;
  border-right: 24px solid transparent !important;
  border-bottom: 22px solid rgba(12, 82, 210, .36) !important;
}

footer.siteFooter .siteFooter__journeyObject--house::after {
  content: "" !important;
  position: absolute !important;
  left: 10px !important;
  bottom: 0 !important;
  width: 38px !important;
  height: 25px !important;
  border-radius: 3px !important;
  background: rgba(244, 194, 71, .52) !important;
  box-shadow:
    inset 15px -10px 0 -8px rgba(12, 82, 210, .34),
    inset -12px -10px 0 -8px rgba(12, 82, 210, .24) !important;
}

footer.siteFooter .siteFooter__journeyObject--building::before {
  content: "" !important;
  position: absolute !important;
  left: 7px !important;
  bottom: 0 !important;
  width: 36px !important;
  height: 56px !important;
  border-radius: 4px !important;
  background: rgba(12, 82, 210, .30) !important;
}

footer.siteFooter .siteFooter__journeyObject--building::after {
  content: "" !important;
  position: absolute !important;
  left: 14px !important;
  bottom: 38px !important;
  width: 5px !important;
  height: 5px !important;
  border-radius: 1px !important;
  background: rgba(255, 255, 255, .72) !important;
  box-shadow:
    13px 0 0 rgba(255,255,255,.72),
    0 12px 0 rgba(255,255,255,.62),
    13px 12px 0 rgba(255,255,255,.62),
    0 24px 0 rgba(255,255,255,.52),
    13px 24px 0 rgba(255,255,255,.52) !important;
}

footer.siteFooter .siteFooter__shippingLogo {
  position: relative !important;
  z-index: 2 !important;
  transform-origin: 50% 86% !important;
  animation: billysFooterShippingCarBob 820ms ease-in-out infinite !important;
  will-change: transform !important;
}

@keyframes billysFooterShippingCarBob {
  0%, 100% {
    transform: translateY(0) rotate(-.2deg);
  }
  25% {
    transform: translateY(-3px) rotate(.25deg);
  }
  50% {
    transform: translateY(0) rotate(-.15deg);
  }
  75% {
    transform: translateY(-2px) rotate(.2deg);
  }
}

@keyframes billysFooterShippingCarRoadMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -36px 0;
  }
}

/*
  Visible window hanya 18% dari 3s.
  Dengan delay 0 / -.75 / -1.5 / -2.25,
  object lewat bergantian, bukan barengan.
*/
@keyframes billysFooterJourneyObjectPass {
  0% {
    opacity: 0;
    transform: translateX(20px) scale(1);
  }
  4% {
    opacity: .78;
    transform: translateX(4px) scale(1);
  }
  18% {
    opacity: .78;
    transform: translateX(-96px) scale(1);
  }
  24% {
    opacity: 0;
    transform: translateX(-132px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-132px) scale(1);
  }
}

@media (max-width: 640px) {
  footer.siteFooter .siteFooter__shippingLogoCard::before {
    bottom: 1px !important;
    width: 58px !important;
    height: 2px !important;
  }

  footer.siteFooter .siteFooter__journeyLayer {
    left: -16px !important;
    right: -6px !important;
    bottom: 0 !important;
    height: 50px !important;
  }

  footer.siteFooter .siteFooter__journeyObject {
    animation-duration: 3.2s !important;
  }

  footer.siteFooter .siteFooter__journeyObject--tree {
    width: 28px !important;
    height: 42px !important;
  }

  footer.siteFooter .siteFooter__journeyObject--pole {
    width: 20px !important;
    height: 45px !important;
  }

  footer.siteFooter .siteFooter__journeyObject--house {
    width: 44px !important;
    height: 40px !important;
  }

  footer.siteFooter .siteFooter__journeyObject--building {
    width: 38px !important;
    height: 48px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  footer.siteFooter .siteFooter__shippingLogo,
  footer.siteFooter .siteFooter__shippingLogoCard::before,
  footer.siteFooter .siteFooter__journeyObject {
    animation: none !important;
  }
}
/* End subtle wheel road effect */

/* ===== END BILLYS_STOREFRONT_FOOTER_SHIPPING_COURIER_LOGOS_V1_20260507 ===== */

/* ===== BILLYS_STOREFRONT_FOOTER_SHIPPING_MOBILE_LIFT_V1_20260507 ===== */
/* Mobile only: naikkan seluruh area kurir + mobil agar tidak mepet social icons. */
@media (max-width: 900px) {
  footer.siteFooter .siteFooter__shippingSection {
    position: relative !important;
    top: -12px !important;
  }
}

@media (max-width: 430px) {
  footer.siteFooter .siteFooter__shippingSection {
    position: relative !important;
    top: -14px !important;
  }
}
/* ===== END BILLYS_STOREFRONT_FOOTER_SHIPPING_MOBILE_LIFT_V1_20260507 ===== */


/* ===== BILLYS_STOREFRONT_FOOTER_LINK_ACCORDION_MOBILE_V1_20260507 ===== */
/*
  Mobile-only footer link dropdown.
  Desktop tetap tampil sebagai 4 kolom terbuka.
*/
footer.siteFooter .siteFooter__linkTitle {
  list-style: none !important;
}

footer.siteFooter .siteFooter__linkTitle::-webkit-details-marker {
  display: none !important;
}

footer.siteFooter .siteFooter__linkPanel {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

@media (max-width: 768px) {
  footer.siteFooter .siteFooter__linkColumns {
    display: block !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto 18px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  footer.siteFooter .siteFooter__linkColumn {
    display: block !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(27, 27, 27, 0.14) !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  footer.siteFooter .siteFooter__linkTitle {
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin: 0 !important;
    padding: 12px 0 !important;
    color: #1B1B1B !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    font-weight: 800 !important;
    text-align: left !important;
    cursor: pointer !important;
    user-select: none !important;
  }

  footer.siteFooter .siteFooter__linkTitle::after {
    content: "+" !important;
    flex: 0 0 auto !important;
    color: #1B1B1B !important;
    font-size: 24px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
  }

  footer.siteFooter .siteFooter__linkColumn[open] > .siteFooter__linkTitle::after {
    content: "−" !important;
  }

  footer.siteFooter .siteFooter__linkPanel {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
    padding: 0 0 12px !important;
  }

  footer.siteFooter .siteFooter__linkItem {
    width: 100% !important;
    display: block !important;
    color: #1B1B1B !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    text-align: left !important;
    text-decoration: none !important;
  }

  footer.siteFooter .siteFooter__linkItem:hover,
  footer.siteFooter .siteFooter__linkItem:focus,
  footer.siteFooter .siteFooter__linkItem:active {
    color: #0c52d2 !important;
    text-decoration: none !important;
  }
}
/* ===== END BILLYS_STOREFRONT_FOOTER_LINK_ACCORDION_MOBILE_V1_20260507 ===== */


/* ===== BILLYS_STOREFRONT_FOOTER_PDP_MOBILE_ACCORDION_STICKY_SAFE_V2_20260507 ===== */
/*
  PDP mobile only.
  Keep sticky CTA safe space, but remove all visible footer dropdown separator lines.
*/
@media (max-width: 900px) {
  body.page-product footer.siteFooter {
    padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body.page-product footer.siteFooter .siteFooter__linkColumns {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
  }

  body.page-product footer.siteFooter .siteFooter__linkColumn {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    border-top: 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    border-left: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
  }

  body.page-product footer.siteFooter .siteFooter__linkColumn:first-child,
  body.page-product footer.siteFooter .siteFooter__linkColumn + .siteFooter__linkColumn {
    border-top: 0 !important;
  }

  body.page-product footer.siteFooter .siteFooter__linkTitle {
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  body.page-product footer.siteFooter .siteFooter__linkPanel {
    border: 0 !important;
    box-shadow: none !important;
  }
}

@media (max-width: 430px) {
  body.page-product footer.siteFooter {
    padding-bottom: calc(116px + env(safe-area-inset-bottom, 0px)) !important;
  }
}
/* ===== END BILLYS_STOREFRONT_FOOTER_PDP_MOBILE_ACCORDION_STICKY_SAFE_V2_20260507 ===== */


/* ===== BILLYS_STOREFRONT_FOOTER_GLOBAL_TOP_CURVE_V1_20260507 ===== */
/*
  Global storefront footer:
  lengkungkan kanan-kiri bagian atas footer untuk desktop dan mobile.
  Tidak menyentuh dropdown/payment/shipping/sticky CTA.
*/
footer.siteFooter {
  border-top-left-radius: 38px !important;
  border-top-right-radius: 38px !important;
  overflow: hidden !important;
  background-clip: padding-box !important;
}

@media (max-width: 900px) {
  footer.siteFooter {
    border-top-left-radius: 28px !important;
    border-top-right-radius: 28px !important;
  }
}

@media (max-width: 430px) {
  footer.siteFooter {
    border-top-left-radius: 24px !important;
    border-top-right-radius: 24px !important;
  }
}
/* ===== END BILLYS_STOREFRONT_FOOTER_GLOBAL_TOP_CURVE_V1_20260507 ===== */

