html, body {
    overflow-x: visible !important;
}

.product_section {
    .two-fifths,
    .three-fifths {
        width: calc(50% - 20px);
    }
}

.shopify-section--image-with-text-overlay {
  .headline {
    color: var(--color-gold);
    font-family: var(--font-primary);
    font-size: 40px;
    line-height: 1.15em;
    font-weight: 400;
    text-transform: inherit;
    letter-spacing: inherit;
    margin-top: 0;
    font-family: "Brandon Grotesque" !important;
    font-size: 24px !important;
    line-height: 28px !important;
    font-weight: 400 !important;
    text-shadow: none !important;
  }
  p {
    color: #151515;
    font-family: "Brandon Grotesque" !important;
    font-size: 18px !important;
    line-height: 21px !important;
    font-weight: 200 !important;
    text-shadow: none !important;
  }
  @media (max-width: 480px) {
    .caption--below-true .caption {
      position: absolute;
      left: 1em;
      right: 1em;
      top: 1em;
      width: auto;
    }
  }
}


.product_name {
  font-size: 21px !important;
  color: inherit;
  margin-bottom: 0;
  line-height: inherit !important;
}
.accordion_header .icon_with_title p,
.text-with-icon-block-container p,
.price .money,
.custom-list-item span,
.product-text {
  font-family: 'Brandon Grotesque' !important;
  font-size: 18px !important;
  line-height: 21px !important;
  color: var(--shopify-editor-setting-regular_color) !important;
  font-weight: 200 !important;
}
.price .money {
    font-weight: 400 !important;
}
.text-with-icon-block-container i[class^="fa"] {
  display: none;
}
.custom-list-item img {
  filter: contrast(0) brightness(0);
}
@media only screen and (max-width: 798px) {
  .product__images {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

.shopify-section--featured-collection {
    margin-top: 40px;
    .product-info__caption  {
        margin-top: 0 !important
    }
}
.featured-collection__products {
    .gallery-cell .title {
        font-family: 'Brandon Grotesque' !important;
        font-weight: 200;
        font-size: 18px;
        line-height: 23px;
        letter-spacing: 0;
        text-transform: inherit;
        text-align: left;
        @media only screen and (max-width: 798px) {
            font-size: 18px;
            line-height: 21px;
        }
    }
    .gallery-cell .price {
        display: none !important;
    }
}

.gallery-section {
    .image-element__wrap {
        max-width: 100% !important;
    }
}


.image-with-text__text-column .collection_title {
    font-family: 'Brandon Grotesque' !important;
    font-size: 24px !important;
    line-height: 28px !important;
    font-weight: 400 !important;
    }

    
.image-with-text__text-column p {
    font-family: 'Brandon Grotesque' !important;
    font-size: 18px !important;
    line-height: 21px !important;
    font-weight: 200 !important;
}

.shopify-section--featured-collection h2.title {
    font-family: 'Brandon Grotesque' !important;
    font-size: 21 !important;
    line-height: 23px !important;
    font-weight: 400 !important;
    text-transform: inherit;
    letter-spacing: 0;
}

.video-section .pretext p {
    font-family: 'Brandon Grotesque' !important;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0;
    font-weight: 200;;
    @media only screen and (max-width: 798px) {
        font-size: 18px;
        line-height: 21px;
    }
}
    
.video-section .button-grid-container,
.video-section .btn-cta {
    width: 100% !important;
    max-width: 300px !important;
}

.add_to_cart {
  font-family: var(--font-primary), var(--font-headline), var(--font-fallback) !important;
  font-weight: 400 !important;
  display: inline-block;
  padding: 12px 1.5em;
  gap: 10px;
  border-radius: 999px;
  margin-left: auto;
  margin-right: auto;

  position: relative;
  overflow: hidden;
  background: var(--color-gold) !important;
  color: var(--color-white) !important;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.add_to_cart:hover {
  transform: scale(1.03);
}

/* Shine effect */
.add_to_cart::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
}

/* Animate shine on hover */
.add_to_cart:hover::before {
  animation: shine 0.9s forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
