/** Shopify CDN: Minification failed

Line 1017:1 Expected "}" to go with "{"

**/
.link-button {
    border-bottom: var(--color-primary-button-text) 1px solid;
}

/* Multi Column New 
===============================*/    
    .multi-column-header {
      text-align: center;
    }
  
    .multi-column-header__title {
      font-size: 2rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      color: rgb(var(--color-foreground));
    }
  
    .multi-column-header__subtitle {
      font-size: 1.125rem;
      color: rgba(var(--color-foreground), 0.7);
      line-height: 1.5;
    }
  
    .multi-column-item {
      display: flex;
      flex-direction: column;
      height: 100%;
      background-color: rgb(var(--color-background));
      border-radius: var(--style-border-radius);
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
  
    .multi-column-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(var(--color-foreground), 0.1);
    }
  
    .multi-column-item--linked {
      text-decoration: none;
      color: inherit;
    }
  
    .multi-column-item--linked:hover {
      text-decoration: none;
      color: inherit;
    }
  
    .multi-column-item__image {
      position: relative;
      width: 100%;
      aspect-ratio: 4/3;
      overflow: hidden;
    }
  
    .multi-column-item__image-element {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
  
    .multi-column-item:hover .multi-column-item__image-element {
      transform: scale(1.05);
    }
  
    .multi-column-item__content {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      gap: 1rem;
    }
  
    .multi-column-item__heading {
      font-size: 1.25rem;
      font-weight: 600;
      margin: 0;
      line-height: 1.3;
      color: rgb(var(--color-foreground));
    }
  
    .multi-column-item__text {
      color: rgba(var(--color-foreground), 0.8);
      line-height: 1.6;
      flex-grow: 1;
    }
  
    .multi-column-item__text p {
      margin: 0 0 1rem 0;
    }
  
    .multi-column-item__text p:last-child {
      margin-bottom: 0;
    }
  
    .multi-column-item__button {
      margin-top: auto;
    }
  
    .multi-column-item__button .button {
      width: 100%;
      text-align: center;
    }
  
    /* Full-width margin controls */
    .section--full-width {
      margin-left: var(--section-margin-left, 0);
      margin-right: var(--section-margin-right, 0);
    }
  
    /* Responsive adjustments */
    @media screen and (max-width: 749px) {
      .multi-column-item__content {
        padding: 1rem;
      }
  
      .multi-column-item__heading {
        font-size: 1.125rem;
      }
  
      .multi-column-header__title {
        font-size: 1.5rem;
      }
  
      .multi-column-header__subtitle {
        font-size: 1rem;
      }
    }

    /* View All Button Styles */
    .multi-column-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    
    .multi-column-header__content {
      flex: 1;
    }
    
    .multi-column-header__view-all {
      flex-shrink: 0;
    }
    
    .multi-column-view-all-wrapper {
      margin-bottom: 1rem;
    }
    
    .multi-column-view-all {
      display: inline-block;
      text-decoration: none;
    }
    
    .multi-column-view-all.link {
      text-decoration: underline;
      text-decoration-color: currentColor;
    }
    
    .multi-column-view-all.link:hover {
      text-decoration-color: transparent;
    }

    /* Mobile Drawer Stepped Navigation
    ================================*/
    .menu-drawer__submenu--stepped {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: var(--color-background);
      transform: translateX(100%);
      transition: transform var(--drawer-animation-speed) ease;
      z-index: calc(var(--layer-menu-drawer) + 1);
    }

    .menu-drawer__submenu--stepped.menu-open {
      transform: translateX(0);
    }

    .menu-drawer__submenu--stepped .menu-drawer__inner-submenu {
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .menu-drawer__submenu--stepped .menu-drawer__nav-buttons {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: var(--padding-lg);
      border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
      flex-shrink: 0;
    }

    .menu-drawer__submenu--stepped .menu-drawer__back-button {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: none;
      border: none;
      color: var(--color-foreground);
      font-size: 1rem;
      cursor: pointer;
    }

    .menu-drawer__submenu--stepped .menu-drawer__close-button {
      background: none;
      border: none;
      color: var(--color-foreground);
      cursor: pointer;
    }

    .menu-drawer__submenu--stepped .menu-drawer__menu {
      flex: 1;
      overflow-y: auto;
      padding: var(--padding-lg);
    }

    /* Desktop Navigation - Narrow Dropdown
    ================================*/
    /* Make list item position relative for narrow dropdowns to enable proper alignment */
    .menu-list__list-item:has(.menu-list__submenu--narrow) {
      position: relative;
    }

    /* Override parent submenu width for narrow dropdowns */
    .menu-list__list-item:where(:not([slot='overflow'])) > .menu-list__submenu--narrow {
      width: auto !important;
      max-width: 300px !important;
      min-width: 0 !important;
      left: 0 !important;
      transform: none !important;
      position: absolute !important;
      background-color: transparent !important;
      padding-inline: 0 !important;
      padding-block: 0 !important;
      box-shadow: none !important;
      clip-path: none !important;
      margin: 0 !important;
    }
    
    /* Also target without the parent selector for maximum specificity */
    .menu-list__submenu--narrow {
      width: auto !important;
      max-width: 300px !important;
      min-width: 0 !important;
      left: 0 !important;
      transform: none !important;
      position: absolute !important;
      background-color: transparent !important;
      padding-inline: 0 !important;
      padding-block: 0 !important;
      box-shadow: none !important;
      clip-path: none !important;
      margin: 0 !important;
    }
    

    .menu-list__submenu-inner--narrow {
      width: auto !important;
      min-width: 200px;
      max-width: 300px;
      padding: 8px 0;
      position: absolute;
      left: 0;
      transform: none;
      top: 100%;
      background: var(--color-background);
      border: 1px solid rgba(var(--color-foreground), 0.1);
      border-radius: 4px;
      box-shadow: 0 4px 12px rgba(var(--color-foreground), 0.1);
      z-index: 1000;
    }

    .narrow-dropdown {
      width: 100%;
    }

    .narrow-dropdown__list {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .narrow-dropdown__item {
      margin: 0;
    }

    .narrow-dropdown__link {
      display: block;
      padding: 8px 16px;
      color: var(--color-foreground);
      text-decoration: none;
      transition: background-color 0.2s ease, color 0.2s ease;
      font-size: 14px;
      line-height: 1.4;
    }

    .narrow-dropdown__link:hover {
      background-color: rgba(var(--color-foreground), 0.05);
      color: var(--color-foreground);
    }

    .narrow-dropdown__link--active {
      background-color: rgba(var(--color-foreground), 0.1);
      font-weight: 500;
    }

    /* Hide mega menu components for narrow dropdowns */
    .menu-list__submenu-inner--narrow .mega-menu {
      display: none;
    }

    /* Override any section-level width constraints for narrow dropdowns */
    .section--page-width .menu-list__submenu--narrow {
      width: auto !important;
      max-width: 300px !important;
    }

    /* Override the ::after pseudo-element for narrow dropdowns with higher specificity */
    .menu-list__submenu--narrow::after {
      width: 100% !important;
      max-width: 300px !important;
      left: 0 !important;
      transform: none !important;
    }

    /* Target overflow-menu specifically for narrow dropdowns with higher specificity */
    .overflow-menu.menu-list__submenu--narrow::after,
    .overflow-menu::after,
    .overflow-list.overflow-menu.menu-list__submenu--narrow::after {
      width: 100% !important;
      max-width: 300px !important;
      left: 0 !important;
      transform: none !important;
    }

    /* Even more specific targeting to override theme styles */
    .menu-list .overflow-list.overflow-menu.menu-list__submenu--narrow::after {
      width: 100% !important;
      max-width: 300px !important;
      left: 0 !important;
      transform: none !important;
    }

    /* Nuclear option - target all possible combinations */
    div.menu-list__submenu--narrow::after,
    div.overflow-list.menu-list__submenu--narrow::after,
    div.overflow-menu.menu-list__submenu--narrow::after {
      width: 100% !important;
      max-width: 300px !important;
      left: 0 !important;
      transform: none !important;
    }

    /* CRITICAL FIX: Hide overflow-menu::after background for narrow dropdowns */
    /* The overflow-menu::after creates a full-width background that shows as empty space */
    /* We need to hide it whenever a narrow dropdown is present or active */
    
    /* Hide when narrow dropdown parent is hovered */
    .menu-list__list-item:has(.menu-list__submenu--narrow):hover ~ * .overflow-menu::after,
    .header-menu:has(.menu-list__list-item:has(.menu-list__submenu--narrow):hover) .overflow-menu::after {
      display: none !important;
      opacity: 0 !important;
      height: 0 !important;
      width: 0 !important;
      --submenu-opacity: 0 !important;
      --submenu-height: 0 !important;
      visibility: hidden !important;
    }
    
    /* Hide when narrow dropdown is active (aria-expanded) */
    .header-menu:has(.menu-list__list-item:has(.menu-list__submenu--narrow) [aria-expanded='true']) .overflow-menu::after,
    .header-menu:has(.menu-list__submenu--narrow[aria-expanded='true']) .overflow-menu::after {
      display: none !important;
      opacity: 0 !important;
      height: 0 !important;
      width: 0 !important;
      --submenu-opacity: 0 !important;
      --submenu-height: 0 !important;
      visibility: hidden !important;
    }
    
    /* Nuclear option: Hide overflow-menu::after if ANY narrow dropdown exists in the menu */
    /* This ensures it's hidden even if :has() doesn't work in some browsers */
    .header-menu .menu-list__submenu--narrow ~ .overflow-menu::after,
    .header-menu:has(.menu-list__submenu--narrow) .overflow-menu::after {
      display: none !important;
      opacity: 0 !important;
      height: 0 !important;
      --submenu-opacity: 0 !important;
      --submenu-height: 0 !important;
    }
    
    /* Hide the submenu's own ::after pseudo-element for narrow dropdowns */
    .menu-list__submenu--narrow::after {
      display: none !important;
    }

    /* Mobile 
    ================================*/
    @media only screen and (max-width: 749px) {
      .shopify-section-group-footer-group .mobile-column .group-block:nth-child(2) {
      order: 2;
    }
  }

  /* Fonts
  =================================*/
  h1, h2, h3, h4, body, a, p, span{
    font-family: "forma-djr-text", sans-serif !important;
  }

  h1 {
    line-height: 100% !important;
    font-weight: 300 !important;
  }

  h2 {
    letter-spacing: 0.02em;
    line-height: 109% !important;
    font-weight: 300 !important; 
  }

  h3 {
    letter-spacing: 0.02em;
    line-height: 111% !important;
    font-weight: 300 !important;
  }

  h4 {
    line-height: 100% !important; 
    font-weight: 300 !important;
  }

  h5 {
    font-family: "forma-djr-micro", sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 109% !important;
    font-weight: 400 !important;
  }

  h6 {
    font-family: "forma-djr-micro", sans-serif !important;
    line-height: 129% !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400 !important;
  }

  /* Fabric carousel
  ===============================*/
  .fabric-carousel {
    --fabric-carousel-gap: 2rem;
  }
  
  .fabric-carousel__header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .fabric-carousel__title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
  }
  
  .fabric-carousel__item {
    width: 100%;
    max-width: 100%;
  }
  
  .fabric-carousel__content {
    display: flex;
    gap: var(--fabric-carousel-gap);
    align-items: center;
    min-height: 400px;
  }
  
  .fabric-carousel__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .fabric-carousel__item-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
  }
  
  .fabric-carousel__item-subheader {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    color: rgba(var(--color-foreground), 0.7);
  }
  
  .fabric-carousel__item-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(var(--color-foreground), 0.8);
  }

  @media only screen and (min-width: 750px) {
    .fabric-carousel__item-description {
      width: 80%;
    }
  }
  
  .fabric-carousel__colors {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  
  .fabric-carousel__color-item {
    width: 60px;
    height: 60px;
    border-radius: 10%;
    overflow: hidden;
    border: 2px solid rgba(var(--color-foreground), 0.1);
    transition: border-color 0.2s ease;
  }
  
  .fabric-carousel__color-item:hover {
    border-color: rgba(var(--color-foreground), 0.3);
  }
  
  .fabric-carousel__color-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .fabric-carousel__image {
    flex: 1;
    max-width: 50%;
  }
  
  .fabric-carousel__main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }
  
  /* Mobile responsive */
  @media screen and (max-width: 768px) {
    .fabric-carousel__content {
      flex-direction: column;
      text-align: center;
    }
    
    .fabric-carousel__image {
      max-width: 100%;
    }
    
    .fabric-carousel__text {
      align-items: center;
    }
    
    .fabric-carousel__colors {
      justify-content: center;
    }

    .fabric-carousel__carousel .fabric-carousel__slide {
      margin-left: .5em;
      margin-right: .5em;
    }
  }

  /* Fabric carousel menu */
  .fabric-carousel__menu {
    margin-bottom: 2rem;
    padding: 0;
  }

  .fabric-carousel__menu-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }

  .fabric-carousel__menu-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: rgba(var(--color-foreground), 0.8);
    border: 1px solid rgba(var(--color-foreground), 0.2);
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .fabric-carousel__menu-link:hover {
    color: rgb(var(--color-foreground));
    border-color: rgba(var(--color-foreground), 0.4);
    background-color: rgba(var(--color-foreground), 0.05);
  }

  .fabric-carousel__menu-link:focus {
    outline: 2px solid rgba(var(--color-foreground), 0.5);
    outline-offset: 2px;
  }

  @media screen and (max-width: 768px) {
    .fabric-carousel__menu-container {
      gap: 0.5rem;
    }
    
    .fabric-carousel__menu-link {
      padding: 0.4rem 0.8rem;
      font-size: 0.85rem;
    }
  }

  /* Mega menu 
  ===============================*/
  .mega-menu__link--parent .mega-menu__link-title {
    text-transform: uppercase;
    font-size: var(--font-size--lg);
    margin-bottom: 1em;
    color: #00000060
  }

  .mega-menu-footer_link {
    margin-top: 2em;
    text-decoration: underline;
  }

  /* Remove fixed height to allow content-based sizing */
  /* The JavaScript in header-menu.js dynamically sets --submenu-height based on content */
  #menu-list__submenu {
    height: auto;
    min-height: 0;
    align-content: center;
  }

@media only screen and (min-width: 750px) and (max-width: 1280px) {
  #menu-list__submenu {
    height: auto;
    min-height: 0;
  }
} 

#menu-list__submenu {
  padding-top: 2em;
}

/* Footer 
============================== */
@media only screen and (min-width: 750px) {
.shopify-section-group-footer-group .menu {
  display: flex;
  justify-content: center;
}
.shopify-section-group-footer-group .menu .menu__details .details-content .list-unstyled {
  text-align: left;
}
}

/* Breadcrumbs 
==================================*/
.breadcrumb {
  font-size: var(--font-size--body);
  color: var(--color-foreground);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap-xs);
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--color-foreground);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.breadcrumbs .current_product {
  text-decoration: none;
  opacity: .4;
}

.breadcrumbs a:hover {
  color: var(--color-primary);
}

.breadcrumbs .current_product {
  color: var(--color-foreground);
  font-weight: 500;
}

.breadcrumb__divider {
  color: var(--color-foreground);
  opacity: 0.6;
  margin: 0 var(--gap-2xs);
}

@media (max-width: 749px) {
  .breadcrumbs {
    font-size: 0.875rem;
  }
}

/* Collection metafields links
====================================*/
.collection-metafield-links__container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-md);
  align-items: center;
  justify-content: center;
}

.collection-metafield-links__link {
  display: inline-block;
  padding: var(--padding-sm) var(--padding-md);
  background-color: #F2EEE9;
  color: var(--color-foreground);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all 0.2s ease;
  font-weight: 500;
}

.collection-metafield-links__link:hover {
  background-color: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
}

@media (max-width: 749px) {
  .collection-metafield-links__container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .collection-metafield-links__link {
    text-align: center;
  }
}

/* Mobile menu
=================================*/
.menu-drawer__list-item .menu-drawer__inner-submenu .resource-card .resource-card__media img {
  object-fit: contain;
}

.menu-drawer__list-item {
  border-bottom: 1px solid #F2EEE9;
  padding-top: .5em;
  padding-bottom: .5em;
}

.menu-drawer__list-item .menu-drawer__menu-item-text {
  font-size: 20px;
}

/* Shopify Chat 
=================================*/
#ShopifyChat {
  z-index: 1;
}

/* Banner Cards in Product Grid
=================================*/
.banner-grid__item {
  list-style: none;
  margin: 0;
  display: block;
  height: 100%;
}

.banner-grid__item .banner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
  border-radius: 8px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.banner-grid__item .banner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Ensure banners integrate with product grid */
.product-grid .banner-grid__item {
  display: block;
}

/* Banner width classes - apply to the container element */
.product-grid .banner-grid__item.banner-card--width-1 {
  grid-column: span 1;
}

.product-grid .banner-grid__item.banner-card--width-2 {
  grid-column: span 2;
}

.product-grid .banner-grid__item.banner-card--width-3 {
  grid-column: span 3;
}

.product-grid .banner-grid__item.banner-card--width-4 {
  grid-column: span 4;
}

/* Responsive banner adjustments */
@media screen and (max-width: 749px) {
  .banner-grid__item .banner-card {
    min-height: 200px;
    padding: 16px;
  }
  
  /* On mobile, all banners should span full width and be properly contained */
  .product-grid .banner-grid__item {
    grid-column: span 1 !important;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  .product-grid .banner-grid__item.banner-card--width-2,
  .product-grid .banner-grid__item.banner-card--width-3,
  .product-grid .banner-grid__item.banner-card--width-4 {
    grid-column: span 1 !important;
  }
  
  /* Ensure banner content doesn't overflow */
  .banner-card__content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
  }
  
  /* Fix any text that might be causing horizontal overflow */
  .banner-card__header,
  .banner-card__body {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .product-grid__item .banner-card .banner-card__content .banner-card__header {
    font-size: 1.2rem !important;
  }
}

/* Product card on mobile 
=================================*/
  .product-card .product-card__content .price .money, .product-card .product-card__content .compare-at-price .money {
    font-size: 16px;
  }


/* Email signup 
=================================*/
.shopify-section-group-footer-group .email-signup__input {
  border-radius: 2px;

}

/* Various font fixes 
==================================*/
.menu__heading.custom {
  opacity: 60%;
}

.accordion .details .details__header {
  font-size: 18px;
}

/* Product card - Image background 
====================================*/
.card-gallery .contents .product-media-container .product-media {
  background: #F9F7F4;
}

.card-gallery .contents .product-media-container .product-media img {
  mix-blend-mode: darken;
}

@media only screen and (max-width: 749px) {
.product-card__content .color-variant-images-container {
  display: none;
}
}

/* Product card - Price from 
====================================*/
.product-card__content .price-from {
  font-size: 16px;
}

/* Mega menu - Footer links 
================================== */
.mega-menu-footer_links {
  display:flex;
  flex-direction: row;
  justify-content: space-around;
}

@media only screen and (max-width: 749px) {
  .mega-menu-footer_links {
    justify-content: space-evenly;
  }

  .mega-menu-footer_link {
    text-decoration: none;
}

/* Footer - Email signup 
===================================*/
#footer_email #images {
  order: 3;
}

#footer_email #content {
  order: 1;
}

#footer_email .email-signup-block {
  order: 2;
}

#footer_menus #open_times h5 {
  opacity: 60%;
}

@media only screen and (max-width: 749px) { 
#footer_menus #open_times {
  order: 1;
}

#footer_menus .menu:nth-of-type(1) {
  order: 2;  
}

#footer_menus .menu:nth-of-type(2) {
  order: 3;  
}

#footer_menus .menu:nth-of-type(3) {
  order: 4;  
}

#footer_menus .menu:nth-of-type(4) {
  order: 5;  
}
}

/* Mobile menu adjustments 
===================================*/
@media only screen and (max-width: 749px) {
.menu-drawer__menu > .menu-drawer__list-item {
  min-height: calc(1.6 * var(--padding-lg) + var(--icon-size-xs)) !important;
}

.menu-drawer__submenu--stepped .menu-drawer__nav-buttons {
  padding-top: 10px;
  padding-bottom: 0;
}

.menu-drawer__submenu--stepped .menu-drawer__menu {
  padding-top: 0;
}

.menu-drawer__list-item .menu-drawer__menu-item-text {
  font-size: 14px;
}

.menu-drawer__menu-item--mainlist {
  min-height: calc(1.6 * var(--padding-lg) + var(--icon-size-xs)) !important;
}

.menu-drawer__menu-item > .svg-wrapper {
  padding-block: 0 !important;
  padding-inline-start: 0 !important;
}

.menu-drawer__list-item {
  padding-top: 0.3em;
  padding-bottom: 0.3em;
}

.menu-drawer__menu-item > .svg-wrapper {
  width: 30px !important;
  height: 30px !important;
}
}