/** Shopify CDN: Minification failed

Line 32:31 Expected ":"
Line 89:29 Expected ":"
Line 209:31 Expected ":"
Line 266:29 Expected ":"

**/

/* ///////////////////////// Banner Shop Now Button code ////////////////////////////////////////// */



/* Image Banner CTA: remove border, show underline that thickens on hover */
#Banner-template--17996904857702__image_banner .banner__buttons a.button.button--primary {
  background: transparent !important;
  border: none !important;       /* kill outline/any border */
  
  box-shadow: none !important;
  color: inherit;                 /* use the section’s text color */
  padding: 0 !important;          /* make it look like a text link */
  min-height: auto;
  line-height: 1.2;


  text-decoration-line: underline;
  text-decoration-thickness: 2px; /* normal underline */
  text-underline-offset: 0.2em;
  transition: text-decoration-thickness .15s ease;

    justify-content: flex-start !important; /* stop centering the row */
    text-align: left; important      
}

#Banner-template--17996904857702__image_banner .banner__buttons a.button.button--primary:hover,
#Banner-template--17996904857702__image_banner .banner__buttons a.button.button--primary:focus-visible {
  text-decoration-thickness: 4px; /* thicker on hover/focus */
}

/* Keep keyboard accessibility strong */
#Banner-template--17996904857702__image_banner .banner__buttons a.button.button--primary:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* Fallback for older browsers without text-decoration-thickness */
@supports not (text-decoration-thickness: 2px) {
  #Banner-template--17996904857702__image_banner .banner__buttons a.button.button--primary {
    text-decoration: none;
    box-shadow: inset 0 -2px currentColor;
    transition: box-shadow .15s ease;
  }
  #Banner-template--17996904857702__image_banner .banner__buttons a.button.button--primary:hover,
  #Banner-template--17996904857702__image_banner .banner__buttons a.button.button--primary:focus-visible {
    box-shadow: inset 0 -4px currentColor;
  }
}

/* Target YOUR banner only */
#Banner-template--17996904857702__image_banner .banner__buttons .button {
  /* Dawn uses this var for borders */
  --buttons-border-width: 0px !important;
}

/* Remove any remaining visual border on the primary button */
#Banner-template--17996904857702__image_banner .banner__buttons a.button.button--primary {
  border: 0 !important;
  box-shadow: none !important;   /* kills the outline-look */
  outline: 0 !important;
}

/* Nuke borders/shadows added via pseudo-elements */
#Banner-template--17996904857702__image_banner .banner__buttons a.button.button--primary::before,
#Banner-template--17996904857702__image_banner .banner__buttons a.button.button--primary::after {
  border: 0 !important;
  box-shadow: none !important;
  background: none !important;
}

/* Left-align the whole text block + button row for THIS banner */
#Banner-template--17996904857702__image_banner .banner__box,
#Banner-template--17996904857702__image_banner .banner__heading,
#Banner-template--17996904857702__image_banner .banner__text {
  text-align: left !important;
}

#Banner-template--17996904857702__image_banner .banner__buttons {
  justify-content: flex-start !important;  /* stop centering the row */
  text-align: left; important                      /* fallback */
}

/* If Dawn centers button text by default, override it too */
#Banner-template--17996904857702__image_banner .banner__buttons .button {
  text-align: left !important;
}

/* Make sure it also stays left on mobile */
@media (max-width: 749px) {
  #Banner-template--17996904857702__image_banner .banner__buttons {
    justify-content: flex-start !important;
  }
}


/* ///////////////////////// Banner Shop Now Button code ////////////////////////////////////////// */

/* ///////////////////////// Banner Text and Button Container keep to bottom left code //////////// */

/* Keep the banner box bottom-left on mobile */
@media (max-width: 749px) {
  #Banner-template--17996904857702__image_banner .banner__content {
    display: flex !important;
    flex-direction: column;              /* vertical stack */
    align-items: flex-start !important;  /* left */
    justify-content: flex-end !important;/* bottom */
    padding-bottom: 16px;                /* optional breathing room */
    text-align: left !important;
  }
  #Banner-template--17996904857702__image_banner .banner__box {
    margin: 0 !important;                /* avoid auto-centering gaps */
    width: 100%;
  }
}

/* ///////////////////////// Banner Text and Button Container keep to bottom left code //////////// */




/* //////////////////////////////// Featured collection view all button change //////////////////////////////////////// */

/* Center the button row */
#collection-template--17996904857702__featured_collection .collection__view-all {
  display: flex !important;
  justify-content: center !important;
}

/* Button look (JS will set the exact width) */
#collection-template--17996904857702__featured_collection .collection__view-all .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 14px 24px;     /* ← adjust padding here */
  border-radius: 16px;    /* ← make corners rounder; use 9999px for pill */

  margin: 0 !important;
  width: auto;            /* JS will override to 2-card width */
  max-width: 100%;        /* never overflow container */
  box-sizing: border-box;
}

/* ===== Featured Collection: remove any extra border/outline around "View all" ===== */
#collection-template--17996904857702__featured_collection .collection__view-all .button,
#collection-template--17996904857702__featured_collection .collection__view-all .button:focus,
#collection-template--17996904857702__featured_collection .collection__view-all .button:focus-visible,
#collection-template--17996904857702__featured_collection .collection__view-all .button:active {
  --buttons-border-width: 0 !important;  /* Dawn border var */
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;           /* Dawn often fakes the border with box-shadow */
}

/* Nuke any pseudo-element ring some Dawn builds use */
#collection-template--17996904857702__featured_collection .collection__view-all .button::before,
#collection-template--17996904857702__featured_collection .collection__view-all .button::after {
  content: none !important;
  border: 0 !important;
  box-shadow: none !important;
  background: none !important;
}

/* If the anchor wrapper gets a focus ring, clear that too */
#collection-template--17996904857702__featured_collection .collection__view-all a:focus,
#collection-template--17996904857702__featured_collection .collection__view-all a:focus-visible {
  outline: 0 !important;
  box-shadow: none !important;
}



/* //////////////////////////////// Featured collection view all button change //////////////////////////////////////// */




/* ///////////////////////// Banner Shop Now Button code ////////////////////////////////////////// */



/* Image Banner CTA: remove border, show underline that thickens on hover */
#Banner-template--17996904857702__image_banner_NA9AFV .banner__buttons a.button.button--primary {
  background: transparent !important;
  border: none !important;       /* kill outline/any border */
  
  box-shadow: none !important;
  color: inherit;                 /* use the section’s text color */
  padding: 0 !important;          /* make it look like a text link */
  min-height: auto;
  line-height: 1.2;


  text-decoration-line: underline;
  text-decoration-thickness: 2px; /* normal underline */
  text-underline-offset: 0.2em;
  transition: text-decoration-thickness .15s ease;

    justify-content: flex-start !important; /* stop centering the row */
    text-align: left; important      
}

#Banner-template--17996904857702__image_banner_NA9AFV .banner__buttons a.button.button--primary:hover,
#Banner-template--17996904857702__image_banner_NA9AFV .banner__buttons a.button.button--primary:focus-visible {
  text-decoration-thickness: 4px; /* thicker on hover/focus */
}

/* Keep keyboard accessibility strong */
#Banner-template--17996904857702__image_banner_NA9AFV .banner__buttons a.button.button--primary:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* Fallback for older browsers without text-decoration-thickness */
@supports not (text-decoration-thickness: 2px) {
  #Banner-template--17996904857702__image_banner_NA9AFV .banner__buttons a.button.button--primary {
    text-decoration: none;
    box-shadow: inset 0 -2px currentColor;
    transition: box-shadow .15s ease;
  }
  #Banner-template--17996904857702__image_banner_NA9AFV .banner__buttons a.button.button--primary:hover,
  #Banner-template--17996904857702__image_banner_NA9AFV .banner__buttons a.button.button--primary:focus-visible {
    box-shadow: inset 0 -4px currentColor;
  }
}

/* Target YOUR banner only */
#Banner-template--17996904857702__image_banner_NA9AFV .banner__buttons .button {
  /* Dawn uses this var for borders */
  --buttons-border-width: 0px !important;
}

/* Remove any remaining visual border on the primary button */
#Banner-template--17996904857702__image_banner_NA9AFV .banner__buttons a.button.button--primary {
  border: 0 !important;
  box-shadow: none !important;   /* kills the outline-look */
  outline: 0 !important;
}

/* Nuke borders/shadows added via pseudo-elements */
#Banner-template--17996904857702__image_banner_NA9AFV .banner__buttons a.button.button--primary::before,
#Banner-template--17996904857702__image_banner_NA9AFV .banner__buttons a.button.button--primary::after {
  border: 0 !important;
  box-shadow: none !important;
  background: none !important;
}

/* Left-align the whole text block + button row for THIS banner */
#Banner-template--17996904857702__image_banner_NA9AFV .banner__box,
#Banner-template--17996904857702__image_banner_NA9AFV .banner__heading,
#Banner-template--17996904857702__image_banner_NA9AFV .banner__text {
  text-align: left !important;
}

#Banner-template--17996904857702__image_banner_NA9AFV .banner__buttons {
  justify-content: flex-start !important;  /* stop centering the row */
  text-align: left; important                      /* fallback */
}

/* If Dawn centers button text by default, override it too */
#Banner-template--17996904857702__image_banner_NA9AFV .banner__buttons .button {
  text-align: left !important;
}

/* Make sure it also stays left on mobile */
@media (max-width: 749px) {
  #Banner-template--17996904857702__image_banner_NA9AFV .banner__buttons {
    justify-content: flex-start !important;
  }
}


/* ///////////////////////// Banner Shop Now Button code ////////////////////////////////////////// */

/* ///////////////////////// Banner Text and Button Container keep to bottom left code //////////// */

/* Keep the banner box bottom-left on mobile */
@media (max-width: 749px) {
  #Banner-template--17996904857702__image_banner_NA9AFV .banner__content {
    display: flex !important;
    flex-direction: column;              /* vertical stack */
    align-items: flex-start !important;  /* left */
    justify-content: flex-end !important;/* bottom */
    padding-bottom: 16px;                /* optional breathing room */
    text-align: left !important;
  }
  #Banner-template--17996904857702__image_banner_NA9AFV .banner__box {
    margin: 0 !important;                /* avoid auto-centering gaps */
    width: 100%;
  }
}

/* ///////////////////////// Banner Text and Button Container keep to bottom left code //////////// */


/* ///////// */

/* === IMAGE WITH TEXT — Full-bleed image on mobile + zero top padding === */

/* Zero the section's top padding (overrides Dawn's inline style) */
.section-template--17996904857702__image_with_text_6ECFCd-padding {
  padding-top: 0 !important;
}

/* Mobile only: remove the page gutters so the image touches screen edges */
@media (max-width: 749px) {
  #shopify-section-template--17996904857702__image_with_text_6ECFCd .page-width {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  /* Make sure the media has no rounded corners or extra spacing */
  #shopify-section-template--17996904857702__image_with_text_6ECFCd .image-with-text__media,
  #shopify-section-template--17996904857702__image_with_text_6ECFCd .image-with-text__media .media,
  #shopify-section-template--17996904857702__image_with_text_6ECFCd .image-with-text__media img {
    border-radius: 0 !important;
  }
}

/* Match the text width to "two cards" width (value comes from custom.js) */
#ImageWithText-template--17996904857702__image_with_text_6ECFCd {
  width: 100%;
  max-width: min(100%, var(--two-cards-width, 640px));  /* fallback 640px */
  margin-left: auto;
  margin-right: auto;
}

#ImageWithText-template--17996904857702__image_with_text_6ECFCd { text-align: left; }


/* ///////// */

/* ////////////////////////// */

/* Image-with-text button: black, left-aligned, underline w/ thicker hover */
#shopify-section-template--17996904857702__image_with_text_6ECFCd .button.button--primary {
  background: #000 !important;
  color: #fff !important;

  border: 0 !important;
  box-shadow: none !important;
  outline: 0;

  display: inline-flex;          /* allows left alignment inside */
  justify-content: flex-start;   /* left-align the text */
  text-align: left;

  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
  transition: text-decoration-thickness .15s ease;
}

#shopify-section-template--17996904857702__image_with_text_6ECFCd .button.button--primary:hover,
#shopify-section-template--17996904857702__image_with_text_6ECFCd .button.button--primary:focus-visible {
  text-decoration-thickness: 4px;   /* thicker underline on hover/focus */
}

/* Fallback for old browsers without text-decoration-thickness support */
@supports not (text-decoration-thickness: 2px) {
  #shopify-section-template--17996904857702__image_with_text_6ECFCd .button.button--primary {
    text-decoration: none;
    box-shadow: inset 0 -2px currentColor !important;
    transition: box-shadow .15s ease;
  }
  #shopify-section-template--17996904857702__image_with_text_6ECFCd .button.button--primary:hover,
  #shopify-section-template--17996904857702__image_with_text_6ECFCd .button.button--primary:focus-visible {
    box-shadow: inset 0 -4px currentColor !important;
  }
}



/* Image-with-text button: invisible background, black text, left aligned, underline-on-hover */
#shopify-section-template--17996904857702__image_with_text_6ECFCd .button.button--primary,
#shopify-section-template--17996904857702__image_with_text_6ECFCd .button.button--primary[aria-disabled="true"] {
  /* kill Dawn variables & visuals */
  --buttons-border-width: 0 !important;
  --color-button: transparent !important;
  --color-button-text: #000 !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;

  color: #000 !important;               /* black label */
  display: inline-flex;
  justify-content: flex-start;          /* left-align label inside */
  text-align: left;

  padding: 0;                           /* optional: pure text look */
  min-height: auto;
  line-height: 1.2;

  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
  transition: text-decoration-thickness .15s ease;
}

/* thicker underline on hover/focus (keeps text black, bg transparent) */
#shopify-section-template--17996904857702__image_with_text_6ECFCd .button.button--primary:hover,
#shopify-section-template--17996904857702__image_with_text_6ECFCd .button.button--primary:focus-visible {
  background: transparent !important;
  color: #000 !important;
  text-decoration-thickness: 4px;
}

/* nuke any pseudo-element rings some Dawn builds add */
#shopify-section-template--17996904857702__image_with_text_6ECFCd .button.button--primary::before,
#shopify-section-template--17996904857702__image_with_text_6ECFCd .button.button--primary::after {
  content: none !important;
  border: 0 !important;
  box-shadow: none !important;
  background: none !important;
}

/* Fallback for browsers without text-decoration-thickness */
@supports not (text-decoration-thickness: 2px) {
  #shopify-section-template--17996904857702__image_with_text_6ECFCd .button.button--primary {
    text-decoration: none;
    box-shadow: inset 0 -2px currentColor !important;
    transition: box-shadow .15s ease;
  }
  #shopify-section-template--17996904857702__image_with_text_6ECFCd .button.button--primary:hover,
  #shopify-section-template--17996904857702__image_with_text_6ECFCd .button.button--primary:focus-visible {
    box-shadow: inset 0 -4px currentColor !important;
  }
}

/* ////////////////////////// */


/* //////////////////////////////////////// */

/* Slideshow: hide pagination dots for THIS slideshow only */
#Slider-template--17996904857702__slideshow_jYz9by .slider-counter {
  display: none !important;
}

/* (Optional) hide the entire controls container */
#Slider-template--17996904857702__slideshow_jYz9by ~ .slideshow__controls {
  display: none !important;
}


/* //////////////////////////////////////// */


/* ///////////////////////////////////////////////// */

/* Use the slideshow container as the positioning context */
#shopify-section-template--17996904857702__slideshow_jYz9by .slideshow {
  position: relative !important;
}

/* Bottom-center overlay link (mobile + desktop) */
#explore-brands-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;                 /* desktop + mobile default */
  z-index: 50;

  color: #fff;                /* use your section text color; change to #000/#fff if needed */
  background: transparent;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
  transition: text-decoration-thickness .15s ease;
  padding: 0;                    /* pure text look */
}

#explore-brands-link:hover,
#explore-brands-link:focus-visible {
  text-decoration-thickness: 4px; /* thicker underline on hover/focus */
  outline: none;
}

/* Slightly tighter on small phones */
@media (max-width: 749px) {
  #explore-brands-link { bottom: 16px; }
}


/* ///////////////////////////////////////////////// */


/* Footer collapsable links */

/* Footer dropdowns */
.footer-dropdown { border: 0; padding: 0; }
.footer-dropdown__summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 8px 0;
}
.footer-dropdown__summary::-webkit-details-marker { display: none; }
.footer-dropdown__title { font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.footer-dropdown__chevron {
  inline-size: 10px; block-size: 10px;
  border-inline-end: 2px solid currentColor; border-block-end: 2px solid currentColor;
  transform: rotate(-45deg); transition: transform .2s ease; opacity: .6;
}
.footer-dropdown[open] .footer-dropdown__chevron { transform: rotate(135deg); }
.footer-dropdown__list { margin: 6px 0 12px; padding: 0; }
.footer-dropdown__item { list-style: none; }
.footer-dropdown__link { display: inline-block; padding: 6px 0; text-decoration: none; opacity: .9; }
.footer-dropdown__link:hover, .footer-dropdown__link:focus-visible { text-decoration: underline; }

/* Desktop: appear as open columns */
@media (min-width: 990px) {
  .footer-dropdown__summary { cursor: default; padding: 0 0 8px; }
  .footer-dropdown__chevron { display: none; }
}

/* Footer collapsable links */


/* Put the collection title on the image (only in the Collection List grid) */
/* === Collection List overlay styling === */
.collection-list .card .card__inner {
  position: relative;
}

.collection-list .card .card__content,
.collection-list .card .card__information {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.85rem 1rem;
  margin: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
  text-align: center;              /* centered text */
  color: #fff;
}

/* Title link */
.collection-list .card .card__heading,
.collection-list .card .card__heading a {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  line-height: 1.2;         /* tighten line height so underline sits closer */
  padding-bottom: 4px;      /* space for the underline */
}

/* Keep overlay + centering as you already have */
.collection-list .card .card__inner { position: relative; }
.collection-list .card .card__content,
.collection-list .card .card__information {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.85rem 1rem; margin: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
  text-align: center; color: #fff;
}

/* Clean underline using native properties */
.collection-list .card .card__heading a {
  color: #fff !important;
  text-decoration-line: underline;
  text-decoration-color: rgba(255,255,255,0.95);
  text-decoration-thickness: 1px;          /* thin by default */
  text-underline-offset: 4px;              /* sits below the text */
  -webkit-text-decoration-skip-ink: auto;  /* nicer underline over glyphs */
  text-decoration-skip-ink: auto;
}

/* Thicker on hover */
.collection-list .card .card__heading a:hover {
  text-decoration-thickness: 3px;
}



/* Hide arrow icons on collection titles in the Collection List grid */
.collection-list .card__heading .icon-wrap,
.collection-list .card__heading svg,
.collection-list .card__heading .svg-wrapper {
  display: none !important;
}

@media screen and (max-width: 749px) {
  /* Hides the zoom icon/toggle button on mobile */
  .product__media-icon--hover,
  .product__media-toggle {
    display: none !important;
  }
  .product__media-icon--lightbox {
    display: none !important;
  }
}


/* FIX: Restore product page CTAs on desktop */
@media (min-width: 990px) {
  .product-form__buttons { 
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .product-form__submit,
  .shopify-payment-button {
    display: block !important;
  }

  /* In case someone tried to “hide desktop CTAs” */
  .product-form__buttons[hidden],
  .product-form__submit[hidden],
  .shopify-payment-button[hidden] {
    display: block !important;
  }
}

