/** Shopify CDN: Minification failed

Line 18:11 Unexpected "{"
Line 18:20 Expected ":"
Line 19:11 Unexpected "{"
Line 19:20 Expected ":"
Line 20:11 Unexpected "{"
Line 20:20 Expected ":"
Line 24:11 Unexpected "{"
Line 24:20 Expected ":"
Line 34:11 Unexpected "{"
Line 34:20 Expected ":"
... and 10 more hidden warnings

**/

  /* Giữ nguyên phần bạn đã có */
  #Banner-{{ section.id }} .banner__heading,
  #Banner-{{ section.id }} .banner__text,
  #Banner-{{ section.id }} .button {
    color: #FF841C !important;
  }

  #Banner-{{ section.id }} .button {
    border-radius: 90px !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: #FF841C !important;
    color: #fff !important;
  }

  /* ✅ Đẩy toàn bộ nội dung chữ (heading + text) lên trên một chút */
  #Banner-{{ section.id }} .banner__content {
    transform: translateY(-40px); /* chỉnh giá trị này để thay đổi mức độ nâng lên */
  }

  /* Nếu bạn chỉ muốn đẩy riêng chữ, không ảnh hưởng button */
  #Banner-{{ section.id }} .banner__heading,
  #Banner-{{ section.id }} .banner__text {
    margin-bottom: 0 !important;
    margin-top: -20px !important; /* đẩy chữ lên cao */
  }






  /* Di chuyển text sang trái chỉ khi fullscreen */
  @media screen and (min-width: 1600px) {
    #Banner-{{ section.id }}.banner--content-align-center .banner__content {
      justify-content: flex-start !important;
      text-align: left !important;
      padding-left: 6vw !important; /* chỉnh khoảng cách tùy ý */
    }

    #Banner-{{ section.id }} .banner__box {
      margin-left: 0 !important;
      align-items: flex-start !important;
      text-align: left !important;
    }

    /* Đảm bảo toàn bộ khối nội dung không bị giới hạn giữa */
    #Banner-{{ section.id }} .page-width {
      max-width: 100% !important;
      margin: 0 !important;
      padding-left: 6vw !important; /* căn mép trái nội dung */
    }
  }










.banner {
  display: flex;
  position: relative;
  flex-direction: column;
  z-index: auto;
  isolation: isolate;
}

.banner__box {
  text-align: center;
}

/* Gradient fix */
.banner__box.gradient {
  transform: perspective(0);
}

@media only screen and (max-width: 749px) {
  .banner--content-align-mobile-right .banner__box {
    text-align: right;
  }
  .banner--content-align-mobile-left .banner__box {
    text-align: left;
  }
}

@media only screen and (min-width: 750px) {
  .banner--content-align-right .banner__box {
    text-align: right;
  }
  .banner--content-align-left .banner__box {
    text-align: left;
  }
  .banner--content-align-left.banner--desktop-transparent .banner__box,
  .banner--content-align-right.banner--desktop-transparent .banner__box,
  .banner--medium.banner--desktop-transparent .banner__box {
    max-width: 68rem;
  }
}

/* --- VIDEO & MEDIA FIX START --- */
.banner__media {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}

.banner__media video,
.banner__media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.banner__media::after {
  /* Overlay giúp chữ rõ hơn */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 1;
}

.banner__content {
  padding: 0;
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
/* --- VIDEO & MEDIA FIX END --- */

.banner__media-half {
  width: 50%;
}

.banner__media-half + .banner__media-half {
  right: 0;
  left: auto;
}

.banner__media-half.animate--fixed:first-child > img,
.banner__media-half.animate--zoom-in:first-child > img {
  width: 50%;
}

.banner__media-half.animate--fixed:nth-child(2) > img,
.banner__media-half.animate--zoom-in:nth-child(2) > img {
  left: 50%;
  width: 50%;
}

@media screen and (max-width: 749px) {
  .banner--stacked .animate--fixed:first-child > img,
  .banner--stacked .animate--zoom-in:first-child > img {
    width: 100%;
  }
  .banner--stacked .banner__media-half.animate--fixed:nth-child(2) > img,
  .banner--stacked .banner__media-half.animate--zoom-in:nth-child(2) > img {
    left: 0;
    width: 100%;
  }
  .banner--stacked .banner__media-half {
    width: 100%;
  }
  .banner--stacked .banner__media-half + .banner__media-half {
    order: 1;
  }
}

@media screen and (min-width: 750px) {
  .banner {
    flex-direction: row;
  }
  .banner--small:not(.banner--adapt) {
    min-height: 42rem;
  }
  .banner--medium:not(.banner--adapt) {
    min-height: 56rem;
  }
  .banner--large:not(.banner--adapt) {
    min-height: 72rem;
  }

  .banner__content.banner__content--top-left {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .banner__content.banner__content--top-center {
    align-items: flex-start;
    justify-content: center;
  }
  .banner__content.banner__content--top-right {
    align-items: flex-start;
    justify-content: flex-end;
  }
  .banner__content.banner__content--middle-left {
    align-items: center;
    justify-content: flex-start;
  }
  .banner__content.banner__content--middle-center {
    align-items: center;
    justify-content: center;
  }
  .banner__content.banner__content--middle-right {
    align-items: center;
    justify-content: flex-end;
  }
  .banner__content.banner__content--bottom-left {
    align-items: flex-end;
    justify-content: flex-start;
  }
  .banner__content.banner__content--bottom-center {
    align-items: flex-end;
    justify-content: center;
  }
  .banner__content.banner__content--bottom-right {
    align-items: flex-end;
    justify-content: flex-end;
  }
}

/* Mobile adjustments */
@media screen and (max-width: 749px) {
  .banner--mobile-bottom .banner__media,
  .banner--stacked:not(.banner--mobile-bottom) .banner__media {
    position: relative;
  }
}

.banner__box {
  padding: 4rem 1.5rem;
  position: relative;
  height: fit-content;
  align-items: center;
  text-align: center;
  width: 100%;
  word-wrap: break-word;
  z-index: 2;
}

.banner__box > * + .banner__buttons {
  margin-top: 2rem;
}

/* Overlay text alignment rules retained */
@media screen and (min-width: 750px) {
  .banner__box {
    width: auto;
    max-width: 71rem;
    min-width: 45rem;
  }
  .banner--desktop-transparent .banner__box {
    background: transparent;
    border: none;
    box-shadow: none;
  }
}
