body{
  margin: 0;
  padding: 0;
  background-color: #000000;
}

/* Banner Module */
.PROMO-Banner-container {
    width: 100%;
    /* Add any specific banner container styles if needed */
}

.PROMO-Banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Profile Module */
.PROMO-Profile-section-profile {
  width: 100%;
  background-color: white;
  padding: 80px 5vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
}


.PROMO-Profile-section-profile-text {
  flex: 1 1 300px;
  max-width: 600px;
}


.PROMO-Profile-section-profile-title {
  font-size: 3rem;
  margin-bottom: 2.2rem;  
  color: #202124;
  text-align: left;
  font-weight: 800;
  line-height: 1.25;
}


.PROMO-Profile-section-profile-desc {
  font-size: 1.8rem;
  color: #444;
  line-height: 1.9;
  margin-bottom: 2.4rem;
}


.PROMO-Profile-learn-more {
  display: inline-block;
  padding: 1em 2.5em;
  background-color: #fff;
  border: 3px solid #202124;
  color: #202124;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 900;
  transition: all 0.2s ease;
  margin-bottom: 1.5rem;
}

.PROMO-Profile-learn-more:hover {
  background-color: #202124;
  color: #fff;
}


.PROMO-Profile-section-profile-image-box {
  flex: 1 1 300px;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
}

.PROMO-Profile-section-profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}


@media (max-width: 768px) {
  .PROMO-Profile-section-profile {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .PROMO-Profile-section-profile-title {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    text-align: center;
  }

  .PROMO-Profile-section-profile-desc {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
  }

  .PROMO-Profile-learn-more {
    font-size: 1.15rem;
    padding: 0.9em 2.2em;
    margin: 0 auto 2rem;
  }

  .PROMO-Profile-section-profile-image-box {
    max-width: 90%;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }
}

/* Explore Module */
.PROMO-Explore-product-bg {
  background-color: #fff;
}

.PROMO-Explore-product {
  padding: 0 100px;
  background-color: rgb(247, 247, 247);
}

.PROMO-Explore-product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8vh 100px 4vh 100px;
}

.PROMO-Explore-title{
  font-size: 26px;
  font-weight: 800;
  color: #1f1f1f;
  line-height: 1.2;
  text-align: left;
}

.PROMO-Explore-viewAll{
  position: relative;
  width: 100%;
  height: 50px;
}

.PROMO-Explore-view-all-button {
  position: absolute;
  right: 100px;
  bottom: 60px;
  font-size: 1em;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  padding-bottom: 2px;
}

.PROMO-Explore-switch {
  margin-left: 100px;
  position: relative;
  display: flex;
  width: 320px;
  background-color: white;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

.PROMO-Explore-switch-option {
  flex: 1;
  padding: 12px 15px;
  text-align: center;
  color: black;
  z-index: 1;
  transition: color 0.3s ease-in-out;
  user-select: none;
}

.PROMO-Explore-switch-option.active {
  color: white;
}

.PROMO-Explore-slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background-color: #333333;
  border-radius: 50px;
  z-index: 0;
  transition: transform 0.3s ease-in-out;
}

.PROMO-Explore-product-list-container {
  padding: 2vh 100px;
  display: flex;
  gap: 30px; 
  flex-wrap: wrap;
  justify-content: left;
}

.PROMO-Explore-product-card {
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  width: 30%; 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#PROMO-Explore-canopy-products .PROMO-Explore-product-card {
    width: 23%; 
}

.PROMO-Explore-product-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
  align-self: center;
}

.PROMO-Explore-product-name {
  font-size: 1.25em;
  font-weight: bold;
  color: #333333;
  margin-top: 0;
  margin-bottom: 8px;
}

.PROMO-Explore-product-description {
  font-size: 12.5px;
  color: #555555;
  margin-bottom: 12px;
}

.PROMO-Explore-product-price {
  font-size: 1.1em;
  font-weight: bold;
  color: #d10000;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .PROMO-Explore-product-header{
    padding: 6vh 0px 2vh 0px;
  }
  .PROMO-Explore-title{
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
  }
  .PROMO-Explore-viewAll{
    top: 20px;
    text-align: center;
    margin-bottom: 20px;
  }
  .PROMO-Explore-view-all-button {
    position: static;
  }
  .PROMO-Explore-product-list-container{
    padding: 0;
  }
  .PROMO-Explore-product-name{
    margin: 5px auto;
    font-size: 14.5px;
  }
  .PROMO-Explore-product-description{
    margin: 5px auto;
    font-size: 12.5px; 
  }
  .PROMO-Explore-product-price{
    margin: 5px auto;
    font-size: 13px;
    color: #D10000;
  }
  .PROMO-Explore-product-card{
    padding: 0px;
    margin: 0px;
  }
  .PROMO-Explore-product{
    padding: 0;
  }
  .PROMO-Explore-switch {
    margin: 0 auto;
    width: 50%;
  }
  .PROMO-Explore-product-list-container {
    flex-direction: column;
    align-items: center;
  }

  .PROMO-Explore-product-card, #PROMO-Explore-canopy-products .PROMO-Explore-product-card {
    width: 90%; 
    max-width: 400px;
    margin-bottom: 20px;
  }
}

/* Carousel Module */
.PROMO-Carousel-Carousel {
    background: #e6e6e6;
}

.PROMO-Carousel-Carousel-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1F2937;
    user-select: none;
    background-color: #000000;
}

.PROMO-Carousel-Carousel-box {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 1600px;
    margin: 0 auto;
}

.PROMO-Carousel-Carousel-title {
    margin-bottom: 1.5rem;
    width: 100%;
}

.PROMO-Carousel-Carousel-title-left-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.PROMO-Carousel-Carousel-title-left {
    margin-bottom: 1rem;
    text-align: center;
}

.PROMO-Carousel-Carousel-title-left-h1 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: white;
}

.PROMO-Carousel-Carousel-title-left-h2 {
    margin-top: 0.25rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: white;
}

.PROMO-Carousel-Carousel-title-right {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

.PROMO-Carousel-Carousel-title-right-p {
    font-size: 1.2rem;
    line-height: 1.625;
    color: white;
}

.PROMO-Carousel-Container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 45vh;
    max-height: 700px;
}

.PROMO-Carousel-track {
    display: flex;
    height: 100%;
}

.PROMO-Carousel-desktop-controls {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    padding: 1rem;
    color: #ffffff;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.PROMO-Carousel-nav-buttons {
    display: flex;
    margin-bottom: 0.75rem;
    justify-content: center;
    pointer-events: auto;
    flex-wrap: wrap;
}

.PROMO-Carousel-text-box {
    text-align: center;
    pointer-events: auto;
}

.PROMO-Carousel-text-box-h3 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
}

.PROMO-Carousel-text-box-p {
    margin-top: 0.25rem;
    max-width: 32rem; 
    font-size: 0.75rem;
    line-height: 1.625;
    opacity: 0.9;
    margin-left: auto;
    margin-right: auto;
}

.PROMO-Carousel-mobile-controls {
    padding: 1rem;
    margin-top: 1.5rem;
    text-align: center;
}

.PROMO-Carousel-mobile-title {
    font-size: 1.6rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: white;
}

.PROMO-Carousel-mobile-description {
    margin-top: 0.25rem;
    font-size: 1.2rem;
    line-height: 1.625;
    color: white;
}

.PROMO-Carousel-mobile-dots {
    display: flex;
    margin-top: 1rem;
    justify-content: center;
}

.PROMO-Carousel-desktop-controls { display: none; }
.PROMO-Carousel-mobile-controls { display: block; }

.PROMO-Carousel-slide-div {
    position: relative;
    flex-shrink: 0;
    height: 100%;
}

.PROMO-Carousel-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    border-radius: 0.5rem;
    background-color: #000000;
    pointer-events: none;
}

.PROMO-Carousel-js-nav-buttons {
    padding: 0.25rem 0.5rem;
    margin: 0 0.2rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    line-height: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.PROMO-Carousel-mb-dot {
    border-radius: 9999px;
    width: 0.625rem;
    height: 0.625rem;
    margin: 0 0.3rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    padding: 0;
    cursor: pointer;
}

.nav-btn-active {
    color: #ffffff;
    font-weight: 600;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.2);
}
.nav-btn-inactive {
    color: #D1D5DB;
    opacity: 0.75;
}
.nav-btn-inactive:hover {
    color: #ffffff;
    opacity: 1;
}
.mobile-dot-active {
    background-color: #a40201;
}
.mobile-dot-inactive {
    background-color: #D1D5DB;
}
.mobile-dot-inactive:hover {
    background-color: #9CA3AF;
}

.PROMO-Carousel-track {
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.carousel-slide {
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, opacity;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    display: block;
}

.slide-overlay {
    transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: opacity;
    transform: translateZ(0);
}

.dragging .PROMO-Carousel-track,
.dragging .carousel-slide {
    transition: none !important;
}

.no-transition {
    transition: none !important;
}

.fade-in-element {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInElementAnimation 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes fadeInElementAnimation {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 640px) { 
    .PROMO-Carousel-Carousel-title-left-h1 { font-size: 1.875rem; line-height: 2.25rem; }
    .PROMO-Carousel-Carousel-title-left-h2 { font-size: 1.5rem; line-height: 2rem; }
    .PROMO-Carousel-Carousel-title-right-p { font-size: 1.4rem; line-height: 1.25rem; }
    .PROMO-Carousel-nav-buttons { margin-bottom: 1rem; }
    .PROMO-Carousel-text-box-h3 { font-size: 1.25rem; line-height: 1.75rem; }
    .PROMO-Carousel-text-box-p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.25rem; }
    .PROMO-Carousel-js-nav-buttons { padding: 0.5rem 0.75rem; font-size: 0.875rem; line-height: 1.25rem; }
}

@media (min-width: 768px) {
    .PROMO-Carousel-Carousel-wrapper { padding-top: 8rem; padding-bottom: 12rem; }
    .PROMO-Carousel-Carousel-title { margin-bottom: 2.5rem; width: 90%; margin-left:auto; margin-right:auto; }
    .PROMO-Carousel-Carousel-title-left-box { flex-direction: row; justify-content: space-between; align-items: center; }
    .PROMO-Carousel-Carousel-title-left { margin-bottom: 0; text-align: left; }
    .PROMO-Carousel-Carousel-title-right { padding-left: 1rem; margin-top: 0; text-align: right; max-width: 48%; }
    .PROMO-Carousel-Container { height: 55vh; }
    .PROMO-Carousel-desktop-controls { display: flex; padding: 1.5rem; } 
    .PROMO-Carousel-mobile-controls { display: none; }
}

@media (min-width: 1024px) {
    .PROMO-Carousel-Carousel-title-left-h1 { font-size: 3rem; line-height: 1; }
    .PROMO-Carousel-Carousel-title-left-h2 { margin-top: 0.5rem; font-size: 1.875rem; line-height: 2.25rem; }
    .PROMO-Carousel-Container { height: 60vh; }
    .PROMO-Carousel-desktop-controls { padding: 2rem; }
    .PROMO-Carousel-nav-buttons { margin-bottom: 1.5rem; }
    .PROMO-Carousel-text-box-h3 { font-size: 1.5rem; line-height: 2rem; }
    .PROMO-Carousel-text-box-p { font-size: 1rem; line-height: 1.5rem; }
    .PROMO-Carousel-js-nav-buttons { font-size: 1.6rem; line-height: 1.5rem; }
}

/* PKG Module */
.PROMO-PKG-nav{
    padding: 20px;
    width: 100%;
    display: flex;
    gap: 20px;
    background-color: #231f20;
    align-items: center;
    justify-content: center;
}
.PROMO-PKG-nav-item{
    width: 10%;
    height: 50px;
    background-color: rgb(162, 4, 1);
    border-radius: 10px;
    text-align: center;
    color: white;
    line-height: 50px;
    cursor: pointer;
}
.PROMO-PKG-container {
    /* max-width: 1280px;  */
    /* margin-left: auto;
    margin-right: auto; */
    padding: 0px; 
    margin: 0;
}

.PROMO-PKG-main-title {
    font-size: 1.875rem; 
    line-height: 2.25rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 2rem; 
    margin-top:3rem;
}

.PROMO-PKG-card-slider-wrapper {
    position: relative;
    display: flex;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border-radius: 0.5rem; 
    justify-content:center;
}

.PROMO-PKG-card-slider-wrapper {
  position: relative; /* 保持相对定位，以便内部元素的绝对定位可以参考它 */
  display: flex; /* 启用 Flexbox 布局 */
  align-items: center; /* 垂直居中对齐所有子项（箭头和卡片容器） */
  gap: 0px; /* 如果需要，可以设置箭头与卡片容器之间的间距 */
  width: 100%; /* 确保占据可用宽度 */
  overflow: hidden; /* 隐藏超出容器的部分，防止出现不必要的滚动条 */
  padding: 0px; /* 为左右两侧的箭头留出空间，防止它们遮挡卡片内容 */
  box-sizing: border-box; /* 确保 padding 包含在 width 内 */
  flex-direction: row;
  /* 你的其他原有样式（如果与上述有冲突，请以新添加的为准） */
}

.PROMO-PKG-card-container {
    display: flex;
    overflow-x: auto;
    cursor: grab;
    user-select: none;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.PROMO-PKG-card-container::-webkit-scrollbar {
    display: none; 
}

.PROMO-PKG-card-container:active {
    cursor: grabbing;
}

.PROMO-PKG-card-item {
    flex-shrink: 0;
    width: 25rem; 
    background-color: #262626; 
    border-radius: 0.5rem; 
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); 
    margin-right: 1.5rem; 
    display: flex;
    flex-direction: column;
}

.PROMO-PKG-card-image-wrapper {
    aspect-ratio: 4 / 4;
    background-color: #404040; 
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    overflow: hidden;
}

.PROMO-PKG-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.PROMO-PKG-card-content {
    padding: 1.5rem; 
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.PROMO-PKG-card-title {
    font-size: 1.5rem; 
    line-height: 2rem;
    font-weight: 700;
    margin-bottom: 1rem; 
    color: #f5f5f5; 
}

.PROMO-PKG-card-features {
    font-size: 0.875rem; 
    line-height: 1.25rem;
    color: #d4d4d4; 
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0; 
    flex-grow: 1;
}

.PROMO-PKG-card-features > li {
    padding-bottom: 0.5rem; 
    margin-top: 0.5rem; 
    border-bottom: 1px solid #404040; 
}
.PROMO-PKG-card-features > li:first-child {
    margin-top: 0;
}
.PROMO-PKG-card-features > li:last-child {
    border-bottom: none;
}

.PROMO-PKG-card-pricing {
    margin-top: auto;
    padding-top: 1rem; 
}

.PROMO-PKG-price-supplied {
    font-size: 1.5rem; 
    line-height: 1.75rem;
    font-weight: 600;
    color: #da6060; 
}

.PROMO-PKG-price-unavailable {
    color: #f97316; 
}

.PROMO-PKG-price-poa {
    color: #eab308; 
}

.PROMO-PKG-price-installed {
    font-size: 2.4rem; 
    font-weight:800;
    color:#d8d8d8;
    line-height: 2.6rem;
}

.PROMO-PKG-card-actions {
    margin-top: 1.5rem; 
}

.PROMO-PKG-learn-more-button {
    display: block;
    background-color: #a40201;
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 1rem; 
    border-radius: 0.5rem; 
    text-align: center;
    text-decoration: none;
    transition: background-color 150ms ease-in-out;
}

.PROMO-PKG-learn-more-button:hover {
    background-color: #8e0201; 
}

.PROMO-PKG-nav-arrows {
    position: relative;
    justify-content: flex-end;
    height:auto;
    align-items: center;
    display: inline-flex;
    padding: 0rem;
    z-index: 20;
}

.PROMO-PKG-arrow-button {
    background-color: #a40201;
    color: white;
    padding: 0.75rem; 
    border-radius: 9999px; 
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transition: opacity 150ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}
.PROMO-PKG-arrow-button:hover {
     background-color: #8e0201; 
}

.PROMO-PKG-arrow-icon {
    width: 1.5rem; 
    height: 1.5rem; 
}

.PROMO-PKG-hidden {
    display: none !important;
}

.PROMO-PKG-cursor-not-allowed {
    cursor: not-allowed;
}

@media (min-width: 640px) { 
    .PROMO-PKG-container {
        padding: 0rem; 
        margin: 0;
    }

    .PROMO-PKG-main-title {
        font-size: 2.25rem; 
        line-height: 2.5rem;
        margin-bottom: 3rem; 
    }
    
    .PROMO-PKG-card-content {
        padding: 1.5rem; 
    }

    .PROMO-PKG-card-title {
        font-size: 1.5rem; 
    }
}

@media (max-width: 768px) { 
    .PROMO-PKG-nav-arrows {
        display: none; 
    }
    .PROMO-PKG-card-slider-wrapper {
        padding:0% 5% 2.5% 5%;
    }
}




/* FAQ Module */
.PROMO-FAQ-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  width: 100%;
  padding: 40px 20px;
  margin: 0 auto;
  max-width:1280px;
}

.PROMO-FAQ-container {
  margin: 0 auto;
}

.PROMO-FAQ-h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  padding: 0;
  margin-bottom: 30px;
  border-bottom: none; 
}

.PROMO-FAQ-faq {
  list-style: none;
  padding: 0;
  margin: 0;
}

.PROMO-FAQ-faq li {
  background-color: #f7f7f7; 
  margin-bottom: 10px;      
  border: none;             
  transition: background-color 0.3s ease;
}

.PROMO-FAQ-faq li:last-child {
  margin-bottom: 0;
}

.PROMO-FAQ-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 25px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase; 
  cursor: pointer;
  background-color: transparent;
  border: none;
  text-align: left;
  position: relative;
  box-sizing: border-box;
}

.PROMO-FAQ-question:hover {
  background-color: #f0f0f0; 
}

.PROMO-FAQ-question::after {
  content: '+';
  font-size: 28px;
  font-weight: 300;
  color: #555;
  transition: transform 0.3s ease-in-out;
}

.PROMO-FAQ-faq li.active .PROMO-FAQ-question::after {
  transform: rotate(45deg);
}

.PROMO-FAQ-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  background-color: transparent;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.PROMO-FAQ-faq li.active .PROMO-FAQ-answer {
  max-height: 500px;
  padding: 0 25px 20px 25px;
}

.PROMO-FAQ-faq li:before {
  display: none;
  background: none !important;
  padding-left: 0px !important;
  margin-bottom: 0px !important;
}