/** Shopify CDN: Minification failed

Line 58:14 Expected identifier but found whitespace
Line 58:16 Unexpected "{"
Line 58:40 Expected ":"
Line 59:13 Expected identifier but found whitespace
Line 59:15 Unexpected "{"
Line 59:38 Expected ":"
Line 60:14 Expected identifier but found whitespace
Line 60:16 Unexpected "{"
Line 60:40 Expected ":"
Line 62:17 Expected identifier but found whitespace
... and 39 more hidden warnings

**/
.announcement-bar {
    font-family: Muli, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: var(--font-size-menu);
    letter-spacing: .07em;
    display: block;
    padding: 15px 0;
    line-height: 1.3;
    letter-spacing: 0em;
    text-align: center;
    text-decoration: none;
    transform: translateZ(0) scale(1);
}

.site-navigation .navmenu-depth-2 .navmenu-link:hover, .site-navigation .navmenu-depth-2 .navmenu-link.navmenu-active {
    color: #000000;
    text-decoration: underline;
}
.navmenu-meganav.navmenu-meganav--desktop .navmenu-item-text {
    font-family: Lora, serif;
   font-style: normal;
    font-weight: 500;
    letter-spacing: 0em;
 }

.site-navigation .navmenu-depth-2 .navmenu-link {
    font-family: Muli, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: var(--font-size-menu);
    z-index: 2;
    display: block;
    padding: .4375rem 2rem .4375rem 1.5625rem;
    letter-spacing: 0em;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .1s ease;
}

.utility {
  font-family: {{ fonts_type_body_family }};
  font-style: {{ fonts_type_body_style }};
  font-weight: {{ fonts_type_body_weight }};
  font-size: var(--font-size-menu);
  letter-spacing: {{ settings.type_body_spacing | divided_by: 100.0 | append: 'em' }};
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 10px;
}

.label-style-heading .dynamic-collection-list--item-title, .label-style-heading .dynamic-collection-list--item-title-mobile {
    font-family: Lora, serif;
    font-style: normal;
    font-weight: 400;
    font-size: var(--font-size-heading-4);
    letter-spacing: 0em;
    color: #212121;
    margin: 10px 0;
}

.button-underline {
    font-family: Muli, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: var(--font-size-button-signpost);
    display: inline-block;
    padding: 0;
    margin-top: 0;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    position: relative;
}

/* .button-underline:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background-color: #000;
} */

.article--excerpt-text {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5em; /* Ensure consistent line height */
}

.article--excerpt-tag {
  display: none;
}

.alt-img-with-text--content .alt-img-with-text--text .alt-img-with-text--button:not(.button-signpost):not(.button-underline)   {
  font-size: var(--font-size-button-small);
  padding: 0.6875rem 1.375rem;
  letter-spacing: {{ settings.type_button_spacing | divided_by: 100.0 | append: 'em' }};
  margin-top: {{ settings.type_size_base | times: 1.25 | divided_by: 16.0 | append: 'rem' }};
}


/* Product Accordian Styles */
  .accordion {
    margin-bottom: 10px; /* Optional: space between accordions */
  }

  .accordion-toggle {
    background-color: transparent;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    outline: none;
    font-size: 16px;
    display: flex;
    justify-content: space-between; /* This will align the heading and icon on the same line */
    align-items: center; /* Vertically center the icon with the text */
    border-bottom: #000;
    border-right: #000;
    border-left: #000;
    border-width: 1px;
  }

  .accordion-toggle:after {
    content: '\002B'; /* Unicode for the plus symbol */
    font-size: 20px;
  }

  .accordion-toggle.active:after {
    content: '\2212'; /* Unicode for the minus symbol */
  }

  .accordion-content {
    padding: 0 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

/* Section Video With Text Overlay Styles */


  #shopify-section-{{section.id}} {
    background-color: {{ section.settings.background_color }};
  }

  #shopify-section-{{section.id}} .video-with-text {
    padding-top: {{ section.settings.section_spacing_mobile }}px;
    padding-bottom: {{ section.settings.section_spacing_mobile }}px;
    position: relative;
  }

  #shopify-section-{{section.id}} .video-with-text-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    text-align: center;
  }

  @media screen and (min-width: 720px) {
    #shopify-section-{{section.id}} .video-with-text {
      padding-top: {{ section.settings.section_spacing_desktop }}px;
      padding-bottom: {{ section.settings.section_spacing_desktop }}px;
    }
  }

  #shopify-section-{{section.id}} .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
.video-with-text-button {
  background-color: var(--button-bg-color, #007bff); /* Use CSS variable with fallback */
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s, transform 0.3s;
}

.video-with-text-button:hover {
  background-color: var(--button-hover-bg-color, #0056b3); /* Use CSS variable with fallback for hover */
  transform: scale(1.05);
}

.video-with-text-button:active {
  background-color: var(--button-active-bg-color, #004085); /* Use CSS variable with fallback for active state */
}

/* Section Collection List Styles */

@media screen and (max-width: 719px) {
    .mobile-collections-per-row-1 .dynamic-collection-list--item {
        margin-bottom: 10%;
    }

  /* Sale Nav Link Styles */
.a.navmenu-link navmenu-link-parent {
  font-weight: bold;
}



