/** Shopify CDN: Minification failed

Line 1979:2 Unexpected "="

**/

.templatev2 .product:not(.product--featured) {
  margin-bottom: 0px;
}

.pl-rating {
  margin: 6px 0 8px;
  min-height: 24px;           /* keeps rows even on desktop */
}
.pl-rating__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  justify-content: flex-start;
}
.pl-rating .jdgm-prev-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}
.pl-rating .jdgm-prev-badge__text { display: none !important; } /* avoid duplicate "(x reviews)" */
.pl-rating__value { font-weight: 700; font-size: 14px; }
.pl-rating__count { font-size: 14px; text-underline-offset: 2px; text-decoration: underline; }

/* --- Mobile tweaks -------------------------------------------------------- */
@media (max-width: 740px) {
  .pl-rating__link { 
    flex-wrap: wrap; 
    justify-content: flex-start;
    gap: 4px; /* tighter gap on small screens */
  }
  .pl-rating__count { 
    width: auto; 
    margin-top: 0; 
    font-size: 11px; /* smaller review count */
  }
  .pl-rating { 
    min-height: 24px; 
    margin: 4px 0; /* tighter spacing above/below */
  }
  .pl-rating__value { 
    font-size: 11px; /* smaller "4.4/5" */
  }
  /* shrink Judge.me stars */
  .pl-rating .jdgm-star,
  .pl-rating .jdgm-star svg { 
    width: 14px !important; 
    height: 14px !important; 
  }
}

.product__info .jdgm-widget, .product-item .jdgm-widget {
    font-size: 15px;
}

.product-form .gfgPageWrapper {
  display: none;
}

.collection-hero {
  margin-top: 0px;
}

.collection-hero .description p {
    font-size: 19px;
    line-height: 25px;
}

/* ====== General Card Styling ====== */
.collection-card {
  background: #F5F4F1;
  border-radius: 10px;
  display: flex;
  align-items: stretch; /* Ensures both image and text container fill height */
  overflow: hidden;
}
.collection-card p+.button-wrapper {
  margin-top: 0px;
}
.collection-card .heading {
  margin-bottom: 10px;
}
.collection-card h3 {
  margin: 0px; 
}
/* ====== Image Wrapper (Desktop & Tablet) ====== */
@media (min-width: 1000px) { /* Applies to tablets and larger screens */
  .collection-card {
    flex-direction: row; /* Image on the left */
  }

  .collection-card .multi-column__image-wrapper {
    flex: 0 0 30%; /* Image takes 30% of the width */
    height: 100%; /* Matches parent height */
    display: flex;
    align-items: stretch; /* Ensures image fully fills container */
    justify-content: center;
    overflow: hidden;
    border-radius: 16px 0 0 16px;
  }

  .collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures full coverage without distortion */
  }

  .collection-card .text-container {
    flex-grow: 1; /* Allows text to take remaining space */
    padding: 15px 15px 25px 0;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically centers content */
  }
}

.faq-navigation li.scroll-spy__item.is-visible .heading {
    color: #bb18b8;
}

/* ====== Mobile Optimization (One Column Layout) ====== */
@media (max-width: 999px) {
  .collection-card {
    flex-direction: column;
    width: 100%;
  }

  .collection-card .multi-column__image-wrapper {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0px;
    position: relative; /* Ensures pseudo-element is positioned correctly */
    overflow: hidden;
  }

  .collection-card .multi-column__image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    box-shadow: 
      inset 10px 0px 10px rgba(0, 0, 0, 0.07),  /* Even softer inner shadow along the left edge */
      inset -10px -5px 12px rgba(0, 0, 0, 0.06), /* More subtle top-left shadow */
      inset -6px 10px 10px rgba(0, 0, 0, 0.05);  /* Very light bottom-left fade */;
    
    mask-image: linear-gradient(to right, 
      rgba(0, 0, 0, 1) 0%, 
      rgba(0, 0, 0, 1) 15%, 
      rgba(0, 0, 0, 0) 50%); /* Cuts off shadow before reaching the right */
    
    -webkit-mask-image: linear-gradient(to right, 
      rgba(0, 0, 0, 1) 0%, 
      rgba(0, 0, 0, 1) 15%, 
      rgba(0, 0, 0, 0) 50%);
    
    pointer-events: none;
  }

  .collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .collection-card p {
    margin-top: 5px;
    line-height: 22px;
  }

  .collection-card .text-container {
    padding: 15px 15px 20px 15px;
    text-align: left;
  }
}
@media screen and (max-width: 1400px) {

.collection-hero .hero-image .multi-column__image {
    object-fit: cover;
    object-position: 50% 0;
    width: 400px;
    height: 450px;
}
}

.collection-hero .quote p {
  position: relative;
  padding-left: 50px;
  padding-right: 15px;
  margin: 0;
  font-family: brandon-grotesque;
  font-weight: 400;
  font-style: italic;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0px;
  padding-bottom: 10px;
}

.collection-hero .quote p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-image: url("/cdn/shop/files/quote-mark.png?v=1676607000");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 768px) {
.collection-hero {
  margin-top: 10px;
}
  
.collection-hero .description p {
    font-size: 15px;
    line-height: 20px;
}
  .collection-hero .quote p {
  font-size: 22px;
  line-height: 26px;
  }
}

.product-facet__filter-list .color-swatch-list {
  grid-template-columns: none;
  text-align: left;
  align-items: center;
  font-size: 13px;
}  
.product-facet__filter-list .color-swatch__item {
  width: 26px;
  height: 26px;
  margin-left: 0px;
  margin-right: 5px;
  border: 0px;
}  
.product-facet__filter-list .method__item {
  width: 40px;
  height: 40px;
  margin-left: 0px;
  margin-right: 5px;
  border: 0px;
}  
.product-facet__filter-list .method-list {
  grid-template-columns: none;
  text-align: left;
  align-items: center;
  font-size: 13px;
}  

.product-facet__filter-list .color-swatch span {
  font-size: 15px;
}
[dir=ltr] .product-facet__filter-item .collapsible__content {
  padding-left: 0px;
  margin-bottom: 15px;
}  


.swatch-area .product-item-meta__swatch-container {
  display: flex;
  align-items: center;
  gap: 0;
  width: 230px;
  margin: 0 auto;
}

@media screen and (min-width: 577px) and (max-width: 1000px) {
    .swatch-area .product-item-meta__swatch-container {
        width: 230px;
    }
}

@media screen and (min-width: 421px) and (max-width: 576px) {
    .swatch-area .product-item-meta__swatch-container {
        width: 200px;
    }
}

@media screen and (max-width: 420px) {
    .swatch-area .product-item-meta__swatch-container {
        width: 160px;
    }
}
  
  .swatch-area .scroll-arrow {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    font-size: 1.5rem;
    color: #333;
    opacity: 1;
    transition: opacity 0.3s;
  }

  .swatch-area .scroll-arrow.disabled {
    opacity: 0.4;
    pointer-events: none;
  }

  .swatch-area .product-item-meta__swatch-list-wrapper {
    flex: 1;
    overflow: hidden;
  }

  .swatch-area .color-swatch-list {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    justify-content: flex-start;
  }

  .swatch-area .color-swatch {
    flex: 0 0 auto;
  }

  .swatch-area .color-swatch__item {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    cursor: pointer;
  }

.color-swatch-list label.color-swatch__item:first-of-type {
  margin-left: 2px; /* Example styling */
}

  /* Hide scrollbar */
  .swatch-area .color-swatch-list::-webkit-scrollbar {
    display: none;
  }

  .swatch-area .color-swatch-list {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

div#shop-hcaptcha-badge-container {
  display: none;
}

span.label.label--subdued.hc-last-chance {
  display: none;
}

.price-list span i {
    display: none;
}

.cart-banner {
    border-radius: 8px;
    margin: 10px 0 5px 0;
    font-family: Open Sans, sans-serif;
    font-size: 16px;
    color: #de2a2a;
}

.text--center {
  text-align: center; /* Center align text */
}


.mini-cart__recommendations-list .promo-sale-message {
  display: none;
}

.sold-out-variant .buy-more-button,
.sold-out-variant .view-count,
.buy-more-button.hide, 
.popover .buy-more-button, 
.drawer .buy-more-button {
  display: none !important;
}

.drawer .product-form__add-button.button--secondary, .popover .product-form__add-button.button--secondary {
  background: #bb18b8;
  color: white;
}

store-pickup.product-form__store-availability-container {
  display: none;
}
.h6.discountflex {
  display: flex;
  gap: 15px;
}
.rbrSubTotal {
  padding-top: 10px;
  color: green;
}

a.link--faded.wholesale {
  color: red;
}

span.label.label--custom.buy-more-save-more {
  display: none;
}
span.label.label--subdued.low-stock {
    background: #E1467c;
}

/* Begin Dynamic Content for Testing & Pro Stylists */

#pro-content,
#consumer-content {
  display: none; /* Hide both divs by default */
  visibility: hidden; /* Ensure content is not just hidden, but also not visible */
}
.hide-content {
  display: none;
}
.show-content {
  display: block !important;
}

.force-hide {
  display: none !important;
}

/* End Dynamic Content for Testing & Pro Stylists */


.hero-badges {
  display: flex;
  max-width: 450px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .hero-badges {
    margin: auto;
    padding: 0;
  }
}

.hero-badges .badge-inner {
  text-align: center;
  width: fit-content;
}
.hero-badges img.hero-icon {
  margin-bottom: 5px;
  margin: 10px auto 10px auto !important;
}
.hero-badges .badge-inner p.detail {
  text-align: center;
  margin: 0;
  font-family: "Avenir Next";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  max-width: 130px;
}


/* End Hero Section */

.hero-benefits .hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: min(6.8vw, 28px);
    row-gap: min(1vw, 40px);
    font-family: SaolText-Regular !important;
    font-size: min(4.7vw, 20px);
    line-height: min(6vw, 26px);
}

.hero-benefits .hero-badges .badge-inner p.detail {
    max-width: 100%;
}

.hero-benefits .image-with-text-block__content {
    width: max-content;
}

@media screen and (max-width: 999px) {
    .hero-benefits .image-with-text-block__content {
        width: 100%;
    }
}

.hero-benefits .badge-inner.link {
    align-self: center;
    margin: 0 auto;
}

.hero-benefits .hero-badges img.hero-icon {
    margin: 10px auto !important;
    margin-bottom: 5px;
}

.promo-sale-message .label {
    background: #faf1f3;
    display: inline-block;
    line-height: 24px;
    padding: 5px 10px;
    color: #1a1a1a !important;
    margin-top: 10px;
    font-size: 15px;
    text-transform: none;
    border-radius: 5px;
    letter-spacing: 0px;
  font-weight: normal;
  border: 1px solid pink;
}

.promo-sale-message .label strong {
  font-weight: bold;
}

.product__info .promo-sale-message .label {
  font-size: 18px;
}

/* Pro Stylist Styling */
.promo-sale-message.pro {
  margin-top: 10px;
}

.pro.discount-message {
  background: #ccbfa1;
  color: #000 !important;
  line-height: 24px;
  padding: 7px 10px 7px 25px;
  margin: 7px 0 10px 30px;
  font-size: 16px;
  font-style: italic;
  text-transform: none;
  border-radius: 5px;
  letter-spacing: 0;
  display: inline-block;
  font-weight: 700;
  font-family: "proxima-nova";
}

/* Discount Badge */
.line-item__discount-list .discount-badge {
  padding: 0px;
  text-transform: capitalize;
  background: none;
  color: #de2a2a;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
}

span.product-item-meta__property.text--subdued {
  font-style: italic;
}

.line-item__discount-list {
  margin-top: 0px;
}

span.label.label--custom.pro {
  background: #AA9767;
  color: black;
  margin: 0px;
}
span.label.label--custom.rtw {
  background: #D36FBA;
  color: black;
  margin: 0px;
}

.pro svg {
  position: absolute;
  width: 50px;
  height: 50px;
}

.variant-version {
  display: none;
}

.popover .under-atc-button-wrapper {
  display: none;
}

.popover .payment-terms {
  border-bottom: none;
  padding-bottom: 0;
}

/* PL Pro Styling */
a.link-bar__link.join-now {
  background: #bb18b8;
  color: white;
  text-transform: uppercase;
  font-family: "brandon-grotesque" !important;
  padding: 5px 10px;
  font-weight: 700;
  border-radius: 5px;
  letter-spacing: 1px;
  font-size: 15px;
}

@media screen and (max-width: 1389px) {
  #reamaze-widget {
    background: white !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
  }

  #reamaze-widget svg g g path {
    fill: #bb18b8 !important;
    color: #bb18b8;
  }
}

.shopify-payment-button__button--unbranded {
  padding: 1em 2em !important;
  font-family: brandon-grotesque, sans-serif !important;
}

scroll-shadow.product__thumbnail-scroll-shadow.hidden-pocket {
  margin: 0 auto;
}

.payment-terms {
  line-height: 140%;
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  font-size: 0.8rem;
  padding-top: 8px;
}

.border-top {
  border-top: 1px solid #cccccc;
}

.hc-btn-price,
span.hc-btn-price-hyphen {
  display: none;
}

.svg-white {
  padding-bottom: 5px;
}
.svg-white svg path {
  stroke: white;
}

.new-version {
  display: none;
}
div.view-count {
  font-style: italic !important;
  color: #1a1a1a !important;
}
.view-count::before {
  content: url("/cdn/shop/files/icon-eye.svg?v=1689948034");
  position: relative;
  z-index: 3;
  left: -4px;
  top: 7px;
}
.view-count {
  position: static;
  left: 50%;
  margin-left: -1px;
  top: -16px;
}

[hidden] .inview {
  display: none !important;
}
figure.inview {
  margin: 0;
  padding: 10px;
}
figure.inview a {
  display: block;
}
figure.inview {
  padding: 0;
  position: relative;
}
figure.inview img {
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  border-radius: min(var(--block-border-radius), 4px);
}
figure.inview.nostyles img {
  margin: 0;
  border-radius: 0px;
}
figure.inview:before {
  content: "";
  padding-top: 69.25%;
}
figure.inview.is-loaded img {
  animation: fadeIn 0.3s linear 1s forwards;
}
figure.inview.is-loading {
  position: relative;
}
figure.inview.is-loading:after {
  content: "";
  display: block;
  color: #ddd;
  font-size: 30px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.5em;
  margin-top: -0.5em;
  transform: translateZ(0);
  animation: loading 1.7s infinite ease;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em,
      -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em,
      -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
      -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
      -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
      -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
      -0.82em -0.09em 0 -0.477em;
  }
  100% {
    transform: rotate(360deg);
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

/*# sourceMappingURL=style.css.map */

.mobile-nav__image-push {
  max-width: none;
  min-width: 225px;
  min-height: 225px;
  margin-bottom: 5px;
  text-align: left;
}

.mobile-nav__images-scroller {
  width: auto;
  overflow-x: scroll;
  grid-gap: 20px;
  padding-bottom: 20px;
  min-height: 330px;
}

[dir="ltr"] .mobile-nav + .mobile-nav__images-wrapper {
  padding: 0px;
}

ul.sub-links.mobile-nav.list--unstyled.mid-level {
  padding: 15px 15px 0 15px;
  margin-bottom: 0px !important;
}

ul.sub-links li.mobile-nav__item {
  padding-bottom: 15px;
}

ul.mobile-nav.list--unstyled.mid-level.explore {
  border-top: 1px solid #cccccc;
  padding: 20px;
}

ul.mobile-nav.list--unstyled.more-links {
  padding: 0px 20px 0 20px;
}
.mobile-nav.list--unstyled.more-links li {
  padding-top: 14px;
}

li .mobile-nav__item .heading.heading--small {
  padding: 10px 20px;
}

li.mobile-nav__item.explore {
  border-top: 1px solid #cccccc !important;
  padding-top: 15px !important;
}

button.h5.mid-level.mobile-nav__link {
  display: none;
}
.mobile-nav .mobile-nav .mobile-nav__item {
  margin-bottom: 0px;
}
.mobile-nav .collapsible {
  margin: 0px;
}
[dir="ltr"] .mobile-nav .mobile-nav {
  padding: 0;
  margin: 0;
  margin-top: 0 !important;
}

[dir="ltr"] .mobile-nav .mobile-nav .mobile-nav {
  padding-bottom: 10px;
  padding-top: 10px;
  border-left: 0px;
}

button.h5.mobile-nav__link.heading.border-top {
  font-size: 20px;
}

li.mobile-nav__item.account {
  border-top: 1px solid #cccccc !important;
  padding: 10px 15px 15px 15px !important;
}

.mega-menu-button-bar {
  background: #932191;
  text-align: center;
  color: white;
}
@media screen and (min-width: 1000px) {
  .explore li.linklist__item a {
    font-family: brandon-grotesque, sans-serif !important;
    font-size: 20px;
  }
}

.product__media-image-wrapper.aspect-ratio.aspect-ratio--natural {
  --aspect-ratio: 0.8333 !important;
}

.product__media-item .aspect-ratio--natural img,
.product__media-item .aspect-ratio--natural video,
.product__media-item .aspect-ratio--natural svg {
  object-fit: contain;
  height: auto;
}

.video-wrapper--native video {
  height: auto;
}

.rte {
  font-size: 18px;
}
.contact-faq {
  display: flex;
  align-items: center;
  column-gap: 30px;
  justify-content: center;
}
@media screen and (max-width: 769px) {
  .contact-faq {
    display: grid;
    row-gap: 15px;
  }
}
.spaced2 {
  letter-spacing: 2px;
}
.spaced1 {
  letter-spacing: 1px;
}

.row-of-photos {
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 1000px) {
  .row-of-photos {
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: center;
  }
  .row-of-photos .heading {
    display: flex;
    align-items: center;
    text-align: right;
    padding: 0px !important;
    margin: 0px;
  }
}
@media screen and (max-width: 1000px) {
  .row-of-photos .heading {
    text-align: center;
    margin-bottom: 10px;
  }
}

button.js-video-button {
  display: none;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

button.js-video-button svg {
  margin-right: 10px;
}

.resize-grid-image {
  height: fit-content !important;
  padding-top: 11.5%;
}
.payment-plans {
  font-size: 14px;
}
.sharethis-inline-share-buttons img {
  margin: 0px !important;
}
.article__info {
  display: none;
}
.template-product #attentive_overlay {
  display: none;
}
.article__content:after {
  content: none;
}
.product-before-thumb {
  border-radius: 50%;
  position: absolute;
  z-index: 10;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034),
    0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06),
    0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086),
    0 100px 80px rgba(0, 0, 0, 0.12);
  bottom: 20px;
  left: 20px;
  display: none;
}

.image-with-text-block__content.half-padding {
  padding: 20px 24px 20px 24px;
}
span.promo-text {
  letter-spacing: 0px;
  color: red;
  font-family: "proxima-nova";
  letter-spacing: 0px !important;
}
.header__inline-navigation .icon.icon--dropdown-arrow-right:hover {
  transform: rotate(270deg);
}

.breadcrumb {
  font-size: 13px;
  color: #555;
  margin-bottom: 1rem;
  padding: 10px 0 0 0; 
}

@media (max-width: 480px) {
  .breadcrumb {
    font-size: 12px;
  }
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.breadcrumb li + li::before {
  content: "/";
  margin: 0 0.5em;
  color: #bbb;
}
.breadcrumb a {
  text-decoration: none;
  color: #333;
}
.breadcrumb a:hover {
  text-decoration: underline;
  color: #bb18b8; /* Perfect Locks brand purple */
}
.product__zoom-button {
  border-radius: 50%;
}
.accent-color {
  color: rgb(var(--accent-color));
}
.grecaptcha-badge {
  visibility: hidden;
}
li.linklist__item.mega-menu_collection-image {
  display: flex;
  align-items: center;
}

span.count_down_timer.hightlight_date {
  font-weight: bold;
}
ul.header__linklist.list--unstyled.hidden-pocket {
  display: flex;
  align-items: center;
  column-gap: 30px;
  font-size: 80%;
  justify-content: center;
}
@media screen and (max-width: 1100px) {
ul.header__linklist.list--unstyled.hidden-pocket {
    column-gap: 20px;
}
}  

[dir="ltr"] .header__linklist-item:not(:last-child) {
  margin-right: 0px;
}
.header__inline-navigation .icon.icon--dropdown-arrow-right {
  display: inline;
  margin-left: 5px;
  align-items: inherit;
  vertical-align: baseline;
  transform: rotate(90deg);
}
a.button.button--primary.button--xsmall, .button--primary.button--xsmall {
  padding-left: 10px;
  padding-right: 10px;
  line-height: 10px;
}
@media screen and (min-width: 1000px) {
  .text-with-icons-grid-desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    justify-content: safe center;
    padding: 0 10px;
    grid-auto-flow: inherit;
  }
}
@media screen and (max-width: 999px) {
  .text-with-icons-grid {
    display: grid;
    grid-template-columns: 45% 45%;
    grid-gap: 20px;
    justify-content: safe center;
    padding: 0 10px;
  }
  .text-with-icons.vertical-breather {
    padding: 20px 10px 20px 10px;
  }
  .text-with-icons-grid .text-with-icons__item {
    padding: 0px;
  }
}
@media screen and (max-width: 1000px) {
  .shopify-section--rich-text img {
    margin: 0 auto !important;
  }
}
video.video-wrapper {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  top: 0;
  left: 0;
}
html {
  scroll-behavior: smooth !important;
  scroll-padding-top: 75px;
}

.article.flex {
  margin: 0px;
}
.article.flex .article__info {
  display: inline-flex;
  border-top: 0px;
}
.discount-badge span.money {
  display: contents;
}

.back-to-top {
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  padding: 15px 0;
}
.back-to-top .icon--chevron {
  transform: rotate(180deg);
  margin-left: 5px;
  margin-top: -3px;
}
.footer__item-title.h5 {
  letter-spacing: 1px;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .footer__item.footer__item--newsletter {
    margin-top: 20px;
    text-align: center;
  }
  .footer__item-list {
    display: inline;
  }
  .footer__item-list .footer__item {
    max-width: 100%;
  }
  .footer__item.faq__item {
    border-bottom: 0.0625rem solid #c3c3c3;
    border-top: none;
    max-width: 100%;
    padding: 0px;
  }
  .footer__item-title {
    margin-bottom: 0px;
  }
  ul.social-media {
    text-align: center;
    display: inline-flex;
  }
  .footer__item--social-media, .footer .popover-container {
    text-align: center;
    margin: 0 auto;
  }
}

/*********************** Brand Bar **************************/

.drawer__header.drawer__header--shadowed {
  padding: 20px;
}
.drawer__header a.header__logo-link {
    width: 145px;
}

.announcement-bar {
  padding-left: 10px;
  padding-right: 10px;
  justify-content: space-evenly;
}

.announcement-bar__message {
  padding-top: 7px;
  padding-bottom: 7px;
  text-align: center;
}
.announcement-bar__list {
  padding: 0px;
}
.announcement-bar__content-text ul {
  display: inline-block;
  margin-top: 0px;
  text-align: left;
}


/*********************** Ship Cart Enhancements **************************/

.mini-cart__drawer-footer.note {
  padding: 10px 10px 12px 10px;
  text-align: center;
}

.cart__total-container.total {
  border-top: 1px solid #d5d5d5;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 5px;
}

.cart-shipping-top {
  text-align: center;
  font-size: 18px;
  border-bottom: 1px solid #e9e9e9;
  border-top: 1px solid #e9e9e9;
  padding: 10px;
  text-transform: uppercase;
  font-family: brandon-grotesque, sans-serif;
  margin: 20px 0;
  letter-spacing: 1px;
}
cart-shipping-top .shipping-text {
  margin: 0;
  font-size: 15px;
}
@media (max-width: 420px) {
  .cart-shipping-top .shipping-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .cart {
    grid-template-columns: 1fr 474px;
  }
}
.cart__recap {
  padding: 20px;
}
.credit-card-icons,
.faq.drawer__content {
  text-align: center;
  margin: 30px auto 20px auto;
  padding: 0px;
}
@media screen and (min-width: 468px) {
  .credit-card-icons {
    width: 350px;
  }
}
.rte ul li h3,
.rte ul li h2 {
  padding: 30px 0 0 0 !important;
  margin: 0px !important;
}
.mini-cart-form .line-item {
  border-bottom: #eaeaea solid 1px;
  padding: 0 0 20px 0;
}

.mini-cart-form line-item:last-of-type {
  border-bottom: 0;
}

.mini-cart .shipping-bar {
  padding-left: var(--container-gutter);
  padding-right: var(--container-gutter);
  margin: 10px auto 10px auto;
}

.mini-cart .payment-methods-list {
  margin-top: 15px;
  margin-bottom: -15px;
}

@media screen and (max-width: 768px) {
  .mini-cart .payment-methods-list {
    margin-top: 15px;
    margin-bottom: 0px;
  }
}

.mini-cart .collapsible__content.text-container {
  text-align: left;
  padding: 15px 0;
}

.mini-cart .collapsible__content.text-container .button-wrapper {
  margin: 0px;
}

.cart-savings {
  text-align: left;
  color: green;
  font-size: 18px;
  font-weight: 500;
  display: block;
}

.cart__checkout-button:not(:only-child) {
  margin-top: 0px;
  margin-bottom: 10px;
}
.article__share.page__share {
  margin: 0 auto !important;
}
.cart-faq__wrapper .collapsible-toggle {
  padding: 15px 0px;
}
.content__wrapper .collapsible-toggle {
  padding: 15px 0px;
  margin: 0 auto;
  width: fit-content;
}

.collapse-box .animated-plus {
  padding: 20px 0 10px 30px;
}

span.label.label--custom.new-release {
  background: #d77070;
}
.coupon-block .product-meta__label-list.label-list {
  font-size: 14px !important;
}
.promotion-block-list .coupon-block {
  margin: 0 auto;
  text-align: center;
  display: inline-flex;
}
.coupon-block .label {
  font-size: 13px !important;
}
:target:before {
  content: "";
  display: block;
  height: 100px;
  margin: -100px 0 0;
}

a.anchor {
  display: block;
  position: relative;
  top: -250px;
  visibility: hidden;
}
.image-with-text-block__content.no-bg {
  background: none !important;
}
.script-font {
  font-family: "white-oleander" !important;
}

.heading.slideshow {
  font-size: 18px;
  font-weight: normal;
  font-family: "proxima-nova" !important;
}
.promotion-block-framed:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: auto;
  border: 7px solid transparent;
  box-shadow: inset 0 0 0 2px #fff;
  z-index: 2;
}
/* HC - Overlay styles for promotion blocks - 07 Jun '22 */
.promotion-block:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 15%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.2) 100%);
}

/* Mobile: make promo span the whole row */
@media (max-width: 740px) {
  /* If product list is CSS GRID (most themes) */
  .product-list__inner { 
    display: grid;
  }
  .promotion-block--expand {
    grid-column: 1 / -1;          /* take whole row */
    width: 100%;
  }

  /* If your product list is FLEX (fallback) */
  .product-list__inner--is-flex .promotion-block--expand,
  .product-list__inner[style*="display:flex"] .promotion-block--expand {
    flex: 0 0 100%;               /* take whole row */
    width: 100%;
  }

  .promotion-block:before {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0) 5%,     /* start fade much higher */
      rgba(0,0,0,0.4) 40%,  /* stronger mid fade */
      rgba(0,0,0,0.7) 100%  /* darker bottom */
    );
  }  
}

.promotion-block .promotion-block__image {
  z-index: 0;
}
.promotion-block .promotion-block__content-wrapper {
  z-index: 2;
  color: white !important;
}
.promotion-block p.heading.heading--small, .promotion-block p.heading.h4 {
color: white;
}
[dir="ltr"] .article__header-content {
  padding: 20px;
}
@media screen and (min-width: 1200px) {
  .nav-blog {
    width: 66px !important;
    position: absolute;
    margin-top: -8px !important;
  }
}
.nav-blog {
  width: 66px !important;
  position: absolute;
  margin-top: 10px;
}
@media screen and (min-width: 741px) {
  .link-bar.header-link-bar .link-bar__link-item {
    padding-top: 7px;
    padding-bottom: 7px;
  }
}
.blockquote {
  font-weight: normal !important;
}
[dir="ltr"] .breadcrumb--floating.right {
  right: 0;
  left: unset;
}
.collection-description {
  font-weight: 700;
  font-size: 13px;
  margin: 10px 0;
}

.product-facet__filter-list .icon-text svg {
  margin-right: 9px;
}
.section.hidden {
  display: none;
}
.no-margin {
  margin: 0 !important;
}
.no-margin-left {
  margin-left: 0px;
}
.no-margin-bottom {
  margin-bottom: 0px !important;
}
.no-padding {
  padding: 0 !important;
}

.thin-padding {
  padding: 10px !important;
}

.padding-left {
  padding-left: 20px;
}

.margin-top-10 {
  margin-top: 10px;
} 
.padding-right-10 {
  padding-right: 10px;
}

.margin-right-10 {
  margin-right: 10px;
}
.no-padding-bottom {
  padding-bottom: 0px;
}
.no-margin-bottom {
  margin-bottom: 0px;
}
.padding-bottom-10 {
  padding-bottom: 10px;
}
.padding-bottom-15 {
  padding-bottom: 15px;
}

.section.no_bottom_breather {
  margin-bottom: 0px;
}
.section.no_top_breather {
  margin-top: 0px;
}

.no-margin-top {
  margin-top: 0px;
}
.notice-box {
  background: #ecd9eb;
  border: 1px solid #bb18b8;
  color: black;
  font-size: 13px;
  padding: 15px;
}
.list-wrapper {
  position: relative;
  margin: 1em;
  overflow: hidden;
}
ul.list-row {
  list-style: none;
  padding: 0;
  margin: 0 0 0 -10px;
  float: left;
}
ul.list-row li {
  float: left;
  margin-right: 10px;
}
ul.list-row li:before {
  content: "|";
  margin-right: 10px;
}
ul.list-row li a {
  white-space: nowrap;
}
/* Promo Bar */
#promo-bar {
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.flexy {
  display: flex;
}
.promo-bar-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-overlay .promo-bar-content {
  position: relative;
}
#promo-bar .copyarea p {
  padding-top: 0px;
  margin-top: 10px;
}

.promo-bar-content.copyarea.cta {
    width: 70%;
}

@media (max-width: 768px) {
  #promo-bar .copyarea {
    padding: 15px 0 0 0;
    display: inline-block;
    width: 100%;
  }
  .promo-bar-content img {
    padding: 0 30px 0 10px;
  }
  .flexy {
    display: block;
    padding: 20px;
  }
  .promo-bar-content.copyarea.text--center {
    display: none !important;
}
  
}
@media (min-width: 768px) {
  .promo-bar-content {
    height: auto;
  }
  .promo-bar-content.copyarea,
  .promo-bar-content.countdown {
    padding: 18px 10px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
.shopify-section--promo-bar .container.flexy {
    display: flex;
}

    .promo-bar-content.copyarea.text--center {
    display: none !important;
}
.shopify-section--promo-bar .container > div {
    flex: 100%;
  padding-top: 15px;
  padding-bottom: 10px;
}
  .promo-bar-content.countdown {
    padding-bottom: 0px;
  }
  .promo-bar-content.copyarea {
    padding-top: 0px;
  }
}

.close-alert {
  top: 10px;
  right: 10px;
  padding: 10px;
  cursor: pointer;
  position: absolute;
  color: currentColor;
  z-index: 10;
  display: none;
}
.hide {
  display: none;
}
 .CountdownTimer {
     display: flex;
     align-items: center;
     justify-content: center;
}
 .CountdownTimer .numbox {
     border: 3px solid currentColor;
     padding: 0px;
     flex: 1;
     margin: 0 2%;
     text-align: center;
     padding-top: 0.25rem;
     height: 4rem;
     width: 5rem;
}
 @media (max-width: 1200px) {
     .CountdownTimer .numbox {
         height: 4rem;
         width: 4rem;
    }
}
 @media (max-width: 768px) {
     .CountdownTimer .numbox {
         border: 2px solid currentColor;
         padding: 0px;
         flex: 1;
         margin: 0 auto;
         text-align: center;
         height: 3.5rem;
         width: 4.5rem;
    }
     .CountdownTimer .number {
         font-size: 16px;
         display: block;
         padding: 0px;
         font-weight: bold;
         height: 1.2rem;
    }
}
 .CountdownTimer .number {
     font-size: 20px;
     display: block;
     padding: 0px;
     font-weight: bold;
     height: 1.5rem;
}
 .CountdownTimer .days {
     font-size: 16px;
     display: block;
}
 .announcement-bar__item .numbox {
     border: none;
     display: inline-flex;
     font-size: 13px;
     height: auto;
     width: auto;
     padding: 0;
     margin: 0 1%;
}
 .announcement-bar__item .number, .announcement-bar__item .hours .announcement-bar__item .seconds, .announcement-bar__item .ends{
     font-size: 16px;
     margin-right: 3px;
     display: inline;
}
 .announcement-bar__item .CountdownTimer {
    display: inline-flex;
    gap: 6px;
}
.product-facet.center-grid {
  justify-content: center;
}
/* Promotion Enhancements */
@media screen and (min-width: 741px) {
  .image-overlay--extra-small {
    --image-height: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .promotion-block--extra {
    --promotion-block-min-height: 600px;
  }
}
.promotion-block--extra {
  --promotion-block-min-height: 400px;
}
/* Promo Bock Tall Heights */
.promotion-block--tall {
  --promotion-block-min-height: 600px;
}
@media screen and (min-width: 1000px) {
  .promotion-block--tall {
    --promotion-block-min-height: 850px;
  }
}
/* Custom Icons in Text with Icons */
.invert svg.icon,
.invert img.text-with-icons__custom-icon {
  background: #e6e6e6;
  border-radius: 50%;
  padding: 5px;
}
.text--left .icon {
  display: inline;
}

.link svg.icon.icon--nav-arrow-right {
  display: inline-block;
  margin: 0 0 2px 5px;
  height: 10px;
}

.link svg.icon.icon--more-arrows {
  display: inline-block;
  margin: 0px;
}

.mobile-collection__header h1 {
  font-size: 30px;
  line-height: 34px;
}
.checkbox-container {
  font-size: 17px;
}
.text-container .heading--small {
  margin-top: 16px;
}

/* End Multicolumn Enhancements */
.product-faq .timeline .text-container {
  margin: initial !important;
}
.timeline__content.text-container {
  background: white;
}
@media screen and (min-width: 1000px) {
  .natural.image-with-text-block {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
  }
}
@media screen and (min-width: 1200px) {
  .natural.image-with-text-block {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
  }
}
img.image-with-text-block__image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.sr-only {
  border: 0 !important;
  clip: rect(0.0625rem, 0.0625rem, 0.0625rem, 0.0625rem);
  height: 0.0625rem !important;
  overflow: hidden;
  padding: 0 !important;
  position: absolute !important;
  width: 0.0625rem !important;
}
.template-collection .multi-column__link .icon--nav-arrow-right {
  position: relative;
  margin-left: 5px;
  bottom: 2px;
  display: inline-block;
}

/************************************* MISC ***************************************/

.flex {
  display: flex;
}
.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
    justify-content: space-between;
}
.gap11 {
  column-gap: 10px;
}
.gap15 {
  column-gap: 15px;
}.gap20 {
  column-gap: 20px;
}

.product-detail-list {
  padding-left: 15.5px;
  font-weight: 700;
}

@media (min-width: 1000px) {
  .product-detail-list {
    grid-column-end: span 8;
    grid-column-start: 1;
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
  }
  .product-detail-list .product-detail-list__item {
    width: calc(50% - 1.5625rem);
    background-color: #fafafa;
    border-radius: 0.25rem;
    font-size: 1.1875rem;
    line-height: 1.2;
    margin-left: 0;
    padding: 1.25rem;
    margin-top: 1.5625rem;
    margin-right: 1.5625rem;
  }
  .product-detail-list .product-detail-list__item::marker {
    display: none;
  }
}
.product-sticky-form {
  z-index: 3;
}
.collection-review-text {
  display: inline-block;
  font-size: 15px;
}

.article-item__image,
.list-collections__item-image-wrapper {
  -o-object-fit: cover;
  object-fit: cover;
  height: 250px;
}
.article-item--horizontal .article-item__image,
.article-item--featured .article-item__image {
  height: auto;
}
.shopify-section--collection-list img.list-collections__item-image {
  -o-object-position: top;
  object-position: top;
}
@media (min-width: 741px) {
  .list-collections--collage .list-collections__item-list {
    grid-auto-rows: 300px;
  }
}
.product-facet__filter-item button {
  text-transform: capitalize;
}
a.filter_enable.multi-column__link.heading.heading--small.link
  svg.icon.icon--nav-arrow-right {
  display: inline;
  margin: 0 0 3px 10px;
  font-weight: bold;
}
h1.heading, h2.heading, h3.heading, .h1, .h2, .h3 {
  font-family: brandon-grotesque, sans-serif;
  /* font-style: italic; */
  /* letter-spacing: .8px; */
  font-weight: 600;
}

.heading.heading--small {
    font-style: normal;
    letter-spacing: 2px;
}

.heading,
.blockquote,
.rte h3,
.rte h4,
.rte h5,
.rte h6,
.rte blockquote {
  font-weight: 600;
  font-family: brandon-grotesque, sans-serif;
}

.faq__item .help-banner {
  padding: 0px;
  box-shadow: none;
}

.help-banner {
  padding: 15px;
  box-shadow: 0 0.0625rem 0.125rem 0 rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  margin-bottom: 20px;
}
.help-banner h4,
.help-banner p {
  margin: 0;
}
.help-banner .icon--wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.help-banner table th,
.help-banner table td {
  padding: 0.1em;
  text-align: center;
  border: 1px solid #bb18b8;
  font-size: 16px;
  line-height: normal;
}

.help-banner table td.hed {
  font-weight: bold;
}
.help-banner .copy {
  margin-left: 10px;
}
.help-banner table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}
.help-banner table caption {
  font-size: 1.5em;
  margin: 0.5em 0 0.75em;
}
.help-banner table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: 0.35em;
}
.help-banner table th,
.help-banner table td {
  text-align: center;
}
.help-banner table th {
  font-size: 0.85em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


* ============================
   SHIPPING TABLE STYLES
   ============================ */

/* Base table */
.table-responsive {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-family: inherit;
  font-size: 20px;       /* Bigger text on desktop */
  line-height: 1.6;
  color: #222;
  text-align: center;    /* Center horizontally */
}

/* Table cells */
.table-responsive td {
  border: 1px solid #ddd;
  padding: 24px !important;          /* Equal padding on all sides */
  vertical-align: middle; /* Vertical centering */
}

/* First column (shipping type) emphasis */
.table-responsive td:first-child {
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
}

/* Small notes inside cells */
.table-responsive small {
  display: block;
  font-weight: normal;
  font-size: 15px;
  color: #666;
  margin-top: 8px;
  line-height: 1.4;
}

/* Free shipping highlight */
.table-responsive .free-option {
  color: #bb18b8; /* Perfect Locks brand color */
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .table-responsive {
    font-size: 16px; /* Slightly smaller text on small screens */
  }
  .table-responsive td {
    padding: 18px !important;   /* Even padding, just reduced for mobile */
    text-align: center;
  }
}

.rte.color-chart-swatches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.color-guide-swatches {
  height: auto;
  margin: 5px !important;
  display: inline-block !important;
  position: relative;
}
.color-guide-swatches img {
  margin: 0px !important;
  width: 125px;
}
.swatch-caption {
  position: absolute;
  background-color: #000000a8;
  color: #fff;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  padding: 5px;
  width: 100%;
  bottom: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.drawer__footer .button-wrapper {
  padding-bottom: 10px;
}

.product-meta__title {
  margin-bottom: 10px;
  margin-top: 8px;
}
.price-country {
  margin-left: 5px;
  font-size: 12px;
  font-weight: 600;
}

.product-form__option-name {
  font-weight: 700;
}
.product-form__option-selector--length .block-swatch__item,
.block-swatch-length .block-swatch__item {
  padding: 9px 5.5px 9px 10.5px;
}
.block-swatch__item {
  min-width: 50px !important;
  font-weight: 700;
  font-size: 17px;
}
.product__media-nav {
  margin-top: 15px;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .product__media-nav {
    width: 95%;
    margin: -35px auto 30px auto;
  }
  .template-product .product-meta {
    padding-bottom: 0px;
    border-bottom: 0px;
    margin-bottom: 5px;
  }
}
.product-form__option-info {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .product-form__option-info {
    display: flow-root;
    font-size: 15px;
  }
  [dir="ltr"] .product-form__option-link {
    font-size: 14px;
    padding-left: 10px;
    float: right;
  }
}
.product__media-nav .dots-nav {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  background: rgb(255 255 255 / 70%);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}
.dots-nav__item.play-icon-triangle {
  background: none;
}

.slider-progress-bar-container {
  height: 7px; 
  background-color: #e0e0e0; 
  position: relative;
  overflow: hidden;
  margin: 0 -15px 15px -15px;
}

@media (min-width: 740px) {
.slider-progress-bar-container {
  margin: 0 -40px 20px -40px;
}
}

/* Progress Bar */
.slider-progress-bar {
  width: 0%; 
  height: 100%; /* Full height of the container */
  background-color: #bb18b8; /* Color of the progress bar, you can adjust it to match your theme */
  position: absolute; /* Absolute position within the container */
  top: 0;
  left: 0;
  transition: width 0.4s ease-in-out; /* Smooth transition for the progress bar */
}

/* Optional: Add some styling for hover or focus states (if you want to make it more interactive) */
.slider-progress-bar-container:hover .progress-bar,
.slider-progress-bar-container:focus .progress-bar {
  background-color: #0056b3; /* Slightly darker shade on hover/focus */
}  

button.product__media-prev-next svg {
  height: 25px;
  width: 25px;
  padding: 2px;
}
button.product__media-prev-next {
  background: #ffffffb3;
  border-radius: 50%;
}
.play-icon-triangle {
  display: block;
  float: right;
  margin-top: 0.2em;
  border-color: transparent;
  border-style: solid;
  position: relative;
  border-radius: 0 !important;
  line-height: 0;
  border-width: 0.61em 0 0.61em 1em;
  border-top-color: transparent;
  border-left-color: #4a4a4a;
}

@media (max-width: 768px) {
  .product__thumbnail {
    width: 66px;
    min-width: 66px;
  }
}

.product__media-list .flickity-button {
  display: none;
}
.dots-nav__item {
  width: 7px;
  height: 7px;
  border-radius: 100%;
}
.dots-nav__item[aria-current="true"] {
  width: 7px;
  height: 7px;
  position: relative;
}
/* Global Mega Menu */
.mega-menu_texture-image {
  border-radius: 4px;
}
.mega-menu_texture-image .icon {
  width: 35px;
  height: 35px;
  padding-right: 10px;
  display: inline-block;
}

.mega-menu__images-wrapper {
  padding-bottom: 20px;
}

@media (min-width: 768px) and (max-width: 1420px) {
#desktop-menu-1 .mega-menu__images-wrapper {
  grid-auto-flow: row;
}

}
.mega-menu__image-push {
  width: 220px;
}
.mega-menu__cta {
  padding-top: 10px;
}

.mega-menu .linklist__item {
    font-size: 16px;
}

/* End Mega Menu Custom Sections */
/* Mobile Navigation */
.help button.mobile-nav__link.heading.h5 {
  padding-bottom: 20px;
}
.mobile-nav__link.heading.h5 {
  font-weight: 500 !important;
  padding: 12px 20px 12px 15px;
}
.mobile-nav__link.mobile-nav__link--sub {
  position: relative;
  display: inline-block;
}

#mobile-menu-drawer .drawer__content,
#mobile-menu-drawer-variant .drawer__content {
  padding: 0px;
}
li.linklist__item.mega-menu_collection-image img.mega-menu__image {
  display: none;
}
.mobile-nav .animated-plus {
  color: #000000;
}
ul.mobile-nav.list--unstyled.icon-list {
  padding: 0;
  margin: 0;
}
ul.mobile-nav.list--unstyled.icon-list li {
  margin-bottom: 10px;
}

mobile-navigation .mobile-menu-account {
  background: #f3f1ec;
  margin: 10px 20px 0px 20px;
  border-radius: 10px;
  padding: 15px;
}
mobile-navigation .button-row {
  display: inline-flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}
mobile-navigation .hero-badges {
  padding: 10px;
}
mobile-navigation .hero-badges .badge-inner p.detail {
  font-size: 13px;
}

li.mobile-nav__item.help {
  border-bottom: 1px solid #cccccc;
}
.button--outline-purple {
  border: 1px solid #bb18b8;
  color: #bb18b8;
}

/* End Mobile Navigation */
.linklist__item p {
  display: inline-block;
  word-break: break-word;
}
.mini-cart__recommendations .product-item-meta__color-count, 
.mini-cart__recommendations .promo-sale-message.pro {
  display: none !important;
}
.shipping-bar__progress {
  border: 2px solid #bb18b8;
}
.shipping-bar__progress:after {
  background: #bb18b8;
}
.header__wrapper {
  padding: 10px 0;
}
@media (min-width: 768px) {
  .header__wrapper {
    padding: 15px 0;
  }
}
.header__linklist-link {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: brandon-grotesque, sans-serif !important;
  font-weight: 700;
}
.product__info .product-item-meta__title {
  line-height: 1.2;
  font-weight: 700;
  font-size: 16px;
  font-family: brandon-grotesque, sans-serif !important;
  margin-bottom: 0px !important;
}
.promotion-block__product-list hide-scrollbar .product-item__info {
  text-align: center;
}
.product-list .product-item__info {
  text-align: left;
}

.product-form__inventory-wrapper {
  display: contents;
}
.product-form__inventory-wrapper .inventory--low {
  color: black !important;
  background: #f9dfe3;
  text-transform: uppercase;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 14px;
  width: max-content;
  letter-spacing: 0px;
}

/* Color Swatches */

@media (max-width: 999px) {
  span.product-item-meta__title.text-normal {
    font-size: 16px;
  }
}

.product-list__inner .color-swatch__item:not(
    quick-buy-drawer .color-swatch__item,
    quick-buy-popover .color-swatch__item
  ) {
  width: 30px !important;
  height: 30px !important;
}

.mobile-nav .color-swatch__item, .mega-menu .color-swatch__item {
    width: 35px !important;
    height: 35px !important;
  padding-right: 10px;
  margin-right: 10px;
  margin-left: -5px;
}

.more-variants {
  border: 2px solid black;
  border-radius: 100%;
  width: 25px !important;
  height: 25px !important;
}
@media (min-width: 1000px) {
  .more-variants {
    width: 28px !important;
    height: 28px !important;
    margin: 4px;
  }
}
.more-variants svg {
  height: 12px;
  width: 12px;
  top: 5px;
  margin: auto;
  position: relative;
}
@media (min-width: 1000px) {
  .more-variants svg {
    top: 6px;
  }
}
.header__cart-count {
    color: #ffffff;
    background: #bb18b8 !important;
    position: absolute;
    margin: 8px 0 0px -4px !important;
    top: 4px;
    height: 18px;
    width: 18px;
    min-width: 18px;
}

.mobile-collection__header {
  margin: 15px;
}
.mobile-collection__header #mobile-facet-toolbar {
  border-left: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
}
@media (max-width: 769px) {
  .mobile-collection__header .breadcrumb__list {
    padding: 0 0 10px;
  }
}
.mobile-collection__header h2 {
  margin: 0 0 10px;
}
@media (max-width: 1199px) {
  .hide-tablet-down {
    display: none;
  }
}
@media (min-width: 1200px) {
  .hide-desktop {
    display: none;
  }
}
.text-bold {
  font-weight: 700;
}
.text-italic {
  font-style: italic;
}
.text-normal {
  font-weight: 500;
}
.header__icon-list {
  gap: 15px;
}  
  
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .breadcrumb__list, .header, label, .button, .product-list, .price, .money, .price-country, legend, h2 a, h3 a {
  font-family: brandon-grotesque, sans-serif !important;
}
.variant-color-label.h5 {
    font-size: 0.83em;
}
p, ul, ol, li, body, a {
  font-family: proxima-nova, sans-serif;
}

.link--animated::after {
  background: #bb18b8;
  height: 2px;
  bottom: 1px;
}
.bullet-point__wrapper {
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.bullet-point__wrapper .icon-checkmark {
  margin-right: 5px;
  vertical-align: middle;
  display: flex;
}
.multi-column svg.icon.icon--checkmark {
    height: 20px;
    width: 20px;
}
.bullet-point__info {
  vertical-align: top;
  line-height: 1.2;
}
.no-bullets {
  list-style: none;
  padding: 0px;
}
.icon-list .icon {
  margin-right: 10px;
}
.icon-list li {
  padding: 5px 0;
}

/* Custom Blog Styling */

.author-image-wrapper {
  width: 150px;
  margin: 0 auto 15px;
  text-align: center;
}
.author-image {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.author-image:hover {
  transform: scale(1.03);
}
.author-box {
  border: 1px solid #eaeaea;
  padding: 20px;
  margin: 30px auto;
  max-width: 700px;
  background: #fafafa;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.6;
  text-align: center; /* Center headings and image */
}

.author-box p {
  text-align: left; /* Restore left alignment for paragraph text */
  margin: 0 auto 1em;
  max-width: 600px;
}
.author-box a {
  color: #bb18b8;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .scrollable-content.multi-column__inner.multi-column__inner--center.multi-column__inner--scroller {
    grid-auto-columns: 65%;
  }
}

  .article__date {
    font-style: italic;
    font-family: 'brandon-grotesque';
    display: inline;   
  }
  
  @media screen and (max-width: 768px) {
    .article__date {
    display: block;
  }
  }   

.article-wrapper {
  display: flex;
  gap: 40px;
  padding-bottom: 40px;
  overflow: visible !important;
}

.article-main {
  flex: 1;
  min-width: 0;
}

.article-sidebar {
  width: 370px;
  flex-shrink: 0;
  z-index: 0;
}

.article-sidebar-inner {
  position: sticky;
  top: 100px;
  z-index: 2;
}

@media (max-width: 769px) {
  .article-wrapper {
    display: inline-block;
  }
  .article-sidebar {
   margin-top: 50px;
    width: auto;
  }
}

.blog-newsletter-box {
  background: #ccbfa1;
  border-radius: 10px;
  padding: 20px 20px 0px 20px;
}

.blog-newsletter-box,
.article-column,
.blog-newsletter-box,
.blog-promo-image {
  margin-bottom: 30px;
}

.article-sidebar .multi-column__link {
  margin-top: 0px;
}
.article-sidebar .article-item {
  margin-bottom: 30px;
}

.article-sidebar .article-item__title {
  margin-bottom: 15px;
}

li.link-bar__link-item a {
  text-transform: capitalize;
}

/* Cognito Forms */
.cog-label {
  text-align: left;
}
.cog-cognito {
  --input__padding: 10px;
}
/* Include the font on the page as you normally would.*/
.cog-cognito {
  --font-family: "proxima-nova" !important;
  /* applies to everything */
  --header__font-family: brandon-grotesque, sans-serif !important;
  /* applies to headers */
  --label__font-family: brandon-grotesque, sans-serif !important;
  /* applies to labels */
  --button-primary__font-family: brandon-grotesque, sans-serif !important;
  /* applies to primary buttons */
  --button-secondary__font-family: brandon-grotesque, sans-serif !important;
  /* applies to secondary buttons */
}
.cog-input {
  font-family: "proxima-nova" !important;
  /* applies to everything */
}
.cog-loader {
  display: none;
  background: none !important;
  animation: none;
}
.cog-form__content,
.cog-form__content label,
html .cog-label,
:root:root:root:root:root .cog-label {
  font-family: "proxima-nova" !important;
  --header__font-family: brandon-grotesque, sans-serif !important;
  --label__font-family: brandon-grotesque, sans-serif !important;
  --button-primary__font-family: brandon-grotesque, sans-serif !important;
  --button-secondary__font-family: brandon-grotesque, sans-serif !important;
}
html .cog-button,
:root:root:root:root:root .cog-button--primary {
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 35px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}
html .cog-button,
:root:root:root:root:root .cog-button {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 15px;
}
.input__field {
  background: white;
}
/* End Cognito Forms */
.social-media__item {
  box-shadow: none;
}
@media screen and (min-width: 741px) {
  .social-media__link {
    height: 40px;
    width: 40px;
  }
}
.padding-top {
  padding-top: 30px;
}
.padding-top--one-half {
  padding-top: 45px;
}
.padding-top--double {
  padding-top: 60px;
}
/* Cart Page */
.cart__content {
  background: #ffffff;
  border-radius: 8px;
}
/** HC - Image with text block **/
.hc-image-width-text-block_responsive .image-with-text__image-wrapper img {
  border-radius: 10px !important;
}
.hc-image-width-text-block_responsive .image-with-text__image-wrapper {
  display: inline-flex;
}
@media screen and (max-width: 768px) {
  .hc-desktop-only {
    display: none;
  }
  .hc-image-width-text-block_responsive .image-with-text-block__text-container {
    margin-top: unset;
  }
  .hc-image-width-text-block_responsive .image-with-text-block__content {
    padding-top: 24px;
  }
  .hc-image-width-text-block_responsive
    .image-with-text__header-content-wrapper {
    order: -1;
  }
  .hc-image-width-text-block_responsive .image-with-text__wrapper {
    display: flex;
    flex-direction: column;
  }
  .image-with-text__header-content-wrapper {
    margin-bottom: 24px;
  }
}

/* NOTE: this code is to fix a temporary issue introduced by Safari 15.4 that prevents any overflow: hidden to be scrollable programmatically. Those temporary fixes will be removed from the theme once a new version of Safari is released */
@media screen and (min-width: 1000px) {
  .product-list__inner--scroller {
    overflow-x: auto;
    overflow-y: hidden;
    overflow: auto hidden;
    scroll-snap-type: x mandatory;
  }
  .product-list__inner--scroller .product-item {
    scroll-snap-align: end;
  }
  .timeline__list-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    overflow: auto hidden;
    scroll-snap-type: x mandatory;
  }
  .timeline__item {
    scroll-snap-align: center;
  }
}

/* Sticky Product Form Enhancements */
.hc-btn-price .price.price--highlight {
  color: inherit;
  margin-right: 4px;
}
.product-form__add-button {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1399px) {
  [dir="ltr"] .product-sticky-form {
    left: 0;
    box-shadow: 6px 6px 5px 0 rgba(var(--border-color), 0.4),
      0 1px rgb(var(--border-color)) inset;
    border-top: 1px solid rgb(var(--border-color));
    background: #ffffff;
  }
  .product-sticky-form__bottom-info {
    font-family: brandon-grotesque, sans-serif !important;
    text-align: center;
    margin: 0 auto;
    padding: 10px 0 5px;
  }
  product-variants.product-sticky-form__variants.hidden-pocket {
    display: none !important;
    text-align: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
  }
}
.product-sticky-form .hc-btn-price-hyphen,
.product-sticky-form .hc-btn-price {
  display: none;
}

@media screen and (max-width: 1000px) {
  product-variants.product-sticky-form__variants {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  .product-sticky-form .select {
    padding: 5px 18px;
    height: auto;
  }
}

/** HC - Product page grid gallery in desktop **/
@media screen and (min-width: 769px) {
  .hc-product-gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 66%;
    margin-right: 50px;
  }
  .hc-product-gallery__grid .product__media-item.is-filtered {
    display: none;
  }
}

/* HC Color Swatch Label */

.hc-color-swatch-label {
  color: var(--color, white);
  background: var(--label-color, black);
  position: absolute;
  bottom: 0;
  transform: translate(-50%, 50%);
  left: 50%;
  line-height: 1.1;
  padding-inline: 4px;
  border-radius: 3px;
  z-index: 9;
  font-size: 14px;
  display: none;
}

.product-form .color-swatch__item {
  margin: 0 auto;
}

.color-swatch__suffix {
  margin-top: 100%;
  text-align: center;
  width: 100%;
  font-size: 11px;
  color: #969696;
}

.container.container-max {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.container.container-none {
  max-width: 100%;
}

.text-with-icons-next {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.text-with-icons-next .heading {
  margin: 0px;
  padding-left: 15px;
  align-items: center;
}

/* === Slideshow Layout & Typography === */

.font-light * { font-weight: 300; }
.font-light strong { font-weight: 700; }

.slideshow .heading--large { margin: 0; }

.slideshow__slide-inner--custom {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: var(--section-blocks-alignment);
  align-items: var(--section-blocks-justify);
}

.slideshow__text-wrapper .text-container {
  color: rgb(var(--text-color)) !important;
  text-align: var(--section-blocks-text-align);
}

@media screen and (min-width: 1000px) {
  .slideshow__text-wrapper .text-container {
    padding: 0 5vw;
  }

  .slideshow__text-wrapper--middle .text-container[data-align="center"] {
    padding: 0 3vw;
  }
}

@media screen and (max-width: 1000px) {
  .slideshow__slide-inner--custom {
    justify-content: var(--section-blocks-alignment-mobile);
    align-items: var(--section-blocks-justify-mobile);
  }

  .slideshow__text-wrapper .text-container {
    text-align: var(--section-blocks-text-align-mobile);
  }

  .slideshow p { padding: 14px 0; }
  .hero-slideshow h2.heading.heading--large {
    margin-top: 20px;
    margin-bottom: 30px !important;
  }
  .slideshow__text-wrapper--top { padding-top: 20px; }
}

@media screen and (min-width: 1000px) {
  .slideshow .heading--large {
    font-size: 2.4rem;
    line-height: 1.2;
  }
  .slideshow .heading--small {
    font-size: 1rem;
    line-height: 1.4;
  }
  .slideshow p {
    font-size: 1.4rem;
    line-height: 1.6;
    max-width: 30rem;
    padding: 20px 0 30px;
  }
  .slideshow .button {
    font-size: 1.3rem;
    padding: 1.1rem 2.4rem;
  }
  .hero-slideshow .content-box { width: 100%; }
}

/* === Special Layouts === */
.slideshow--fit { height: 100vh; }
.slideshow--auto .slideshow__slide-inner--custom { height: auto; }
.slideshow--auto .slideshow__image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* === Swatch & Shadow Styles === */
.swatch-image-wrapper {
  margin-top: var(--swatch-margin-top, 1.75rem);
}
.swatch-image {
  width: var(--swatch-width, 160px);
  height: auto;
  border-radius: 8px;
  display: block;
}

.slideshow__slide:not(:only-child) .slideshow__text-wrapper--bottom {
  padding-bottom: calc(var(--vertical-breather));
}

.hero-slideshow h3.heading.heading--small {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.light-shadow p,
.light-shadow .heading,
.light-shadow .button-wrapper {
  text-shadow: 6px 6px 10px rgba(255, 255, 255, 0.3);
}

.dark-shadow p,
.dark-shadow .heading,
.dark-shadow .button-wrapper {
  text-shadow: 6px 6px 10px rgba(0, 0, 0, 0.3);
}

/* Cancel shadow on button--primary specifically */
.light-shadow .button--primary,
.dark-shadow .button--primary {
  text-shadow: none !important;
}

/* === Slide Visibility Fix === */
.slide-show-item.is-hidden-slide {
  display: none !important;
}

.slideshow__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
}

.slideshow__slide:first-child {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.variant-option2-list__chips {
	display:flex;
	gap:10px;
	flex-wrap:wrap;
	margin-top:10px;
}

.length-option-chip {
	background:rgba(var(--text-color), 0.1);
	line-height:1;
	padding:5px 10px;
	border-radius:50px;
	font-weight:bold;
	font-size: 14px;
}

.judgeme-badge-collection {
	margin-top:10px;
}