/** Shopify CDN: Minification failed

Line 416:2 Expected ":"
Line 417:12 Expected ":"

**/
/* =========================================================
   CUSTOM THEME STYLES – DO NOT REMOVE
   ---------------------------------------------------------
   Purpose:
   This CSS contains custom UI and layout modifications for
   the storefront including:

   • Product variant swatches (color + size)
   • Product gallery thumbnail behavior (desktop vertical / mobile horizontal)
   • Custom quantity selector styling
   • Product badges and labels
   • Collection page layout and typography
   • Filter swatches styling
   • Mobile responsive fixes
   • Custom font enforcement (Magister / Brunson)
   • Various spacing and UI adjustments across the theme

   IMPORTANT:
   The Shopify theme update process may overwrite theme.css.
   After every theme update, this block must be re-applied to
   theme.css to restore custom storefront behavior.

   Maintenance Note:
   Keep this section documented and separate from theme core
   styles where possible to simplify future updates and
   troubleshooting.

   Author: Custom Storefront Modification
   ========================================================= */
.option-values.color-swatch-group {
  display: flex;
  gap: 8px;
  margin-bottom: 1px !important;
}

.color-swatch-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.color-swatch-image {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.2s ease;
  cursor: pointer;
}

.option-value-input {
  display: none;
}

.option-value-input:checked + label .color-swatch-image {
  border-color: #000;
}
.option-values.size-swatch-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

.size-swatch-wrapper label {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 50px;
  text-align: center;
  font-size: 11px;
  font-weight: 400 !important;
  border: 0.8px solid #ccc;
  background-color: #fff;
  color: #111;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-value-input:checked + label {
  border: 1px solid #000;
  font-weight: 700;
  color: #000;
  box-shadow: inset 0 0 0 1px #000;
}
.option-value-name{
    font-size:13px !important;
    min-width:45px !important;
    padding: 5px 5px !important;
    
}
.product-quantity-input{
  margin-bottom: 1px !important;
  font-size: 10px !important;
  height: 25px !important;
  width: 50px !important;
  padding: 2px !important; 
  
}
.product__price{
  font-weight:500 !important;
}
.option-value-input:disabled + label {
  opacity: 0.35;
  background-color: #f7f7f7;
  color: #aaa;
  cursor: not-allowed;
}
.option-values {
  margin-bottom: 1px !important;
}
/* === PRODUCT THUMBNAIL GALLERY: FULL RESPONSIVE FIX === */

/* ---------- Desktop: Vertical thumbnails (6–7 visible) ---------- */
/* ---------- Desktop: Vertical thumbnails (6–7 visible) ---------- */

/* === Shared Styles === */
.product-gallery--media-thumbnail {
  border: 1px solid #eaeaea;
  padding: 2px;
  cursor: pointer;
  transition: border 0.2s ease-in-out;
  scroll-snap-align: start;
}

.product-gallery--media-thumbnail:hover,
.product-gallery--media-thumbnail[data-product-gallery-selected="true"] {
  border: 2px solid #000;
}

/* === DESKTOP: Vertical scroll === */

.vertical-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
  scroll-snap-type: y mandatory;
  padding-right: 4px;
  width: 100px;
}

/* Scrollbar styles for WebKit browsers */
.vertical-thumbnails::-webkit-scrollbar {
  width: 6px;
}
.vertical-thumbnails::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

/* === MOBILE: Horizontal scroll === */
@media screen and (max-width: 768px) {
  .product-gallery--navigation {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 12px;
    margin-top: 12px;
    scroll-snap-type: x mandatory;
    padding: 8px 0;
  }

  .product-gallery--media-thumbnail {
    flex: 0 0 auto;
    width: 80px !important;
    height: auto;
    scroll-snap-align: start;
  }

  /* Optional: hide vertical scrollbar for mobile clean look */
  .product-gallery--navigation::-webkit-scrollbar {
    height: 4px;
  }

  .product-gallery--navigation::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }
}
@media screen and (max-width: 768px) {
  .vertical-thumbnails,
  .product-gallery--navigation--vertical {
    flex-direction: row !important;
  }
}
@media screen and (max-width: 768px) {
  /* Force horizontal scroll for product gallery thumbnails */
  .product-gallery--navigation {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    gap: 12px !important;
    padding: 10px 0 !important;
    width: 100% !important;
  }

  .product-gallery--media-thumbnail {
    flex: 0 0 auto !important;
    width: 80px !important;
    height: auto !important;
    scroll-snap-align: start !important;
  }

  /* Reset any vertical layout class used by Atlantic */
  .vertical-thumbnails,
  .product-gallery--navigation--vertical {
    flex-direction: row !important;
    height: auto !important;
    overflow-y: hidden !important;
    overflow-x: auto !important;
  }

  /* Hide any extra padding/margin Atlantic may apply */
  .product-gallery--navigation > * {
    margin-bottom: 0 !important;
  }

  /* Optional: hide scrollbar but keep scroll functionality */
  .product-gallery--navigation::-webkit-scrollbar {
    height: 4px;
  }

  .product-gallery--navigation::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
  }
}

/* For Color Swatches */
.product-item__swatches {
  margin: 5px 0;
}
.swatch {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin-right: 5px;
  vertical-align: middle;
}
.variant-swatch.active img {
  border: 2px solid #000;
}
.product-quantity-input {
 margin-bottom: 1px !important;
font-size: 13px !important;
height: 30px !important;
width: 30px !important;
}
.product-form .product-submit{
  margin: 10px auto 10px !important;
}
.product-area .options {
margin-top: 5px !important;
}
/* For ProductPage Breadcrumb */
.template-product .breadcrumb-navigation {
    padding: unset !important;
    text-align: right !important;
    position: absolute;
    z-index: 1;
    left: 58.5%;
    top: 25px;
    font-size: 12px !important;
}
.product-gallery {
    padding-top: 20px;
}
.product-area .product-details-wrapper {
    padding: 50px 0 0 50px !important;
}
@media (max-width: 718px){
    .template-product .breadcrumb-navigation {
    left: 15px !important;
    top: 20px;
    font-size:11px !important;
}
.product-gallery {
    padding-top: 40px;
}
.product-area .product-details-wrapper {
    padding: 30px 0 0 0px !important;
}
}

/* For Filter color swatches */
.faceted-filter-swatch__color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: inline-block;
  background-color: var(--faceted-filter-swatch-color);
}
/* For Collection CSS */
.collection-image {
    height: 450px !important; 
}
header.collection-title-header {
    position: absolute;
    z-index: 1;
    top: 270px;
    color: #ededed !important;
    width: 100% !important;
    max-width: 100%;
    min-width: unset;
}
header.collection-title-header .breadcrumb-navigation a, .page-title.collection-title .label{
     color: #dbd2c3 !important;
} 
.page-title {
    border-bottom: none;
}
header.collection-title-header .breadcrumb-navigation a:hover{
    text-decoration: underline;
}
@media (max-width:756px){
    .collection-image  {
        height:300px !important;
    }
    header.collection-title-header{
    top: 170px;
}
}
.faceted-color-swatch {
  transition: outline 0.2s ease;
}

.faceted-color-swatch:hover {
  outline: 2px solid #555;
  outline-offset: 2px;
}

.faceted-color-swatch--selected::after {
  content: "✓";
  display: block;
  color: white;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  font-weight: bold;
}
/* For Collection Page Font Style */
.collection-title.page-title h1, .collection-title.page-title .breadcrumb-navigation{
        font-family: 'Brunson' !important;
}
.collection-title.page-title .breadcrumb-navigation{
        letter-spacing: 3px;
        font-size: 13px;
}
/* h2.title{
  font-family:Montserrat, sans-serif !important;
} */
div#shopify-section-template--18318455111852__blocks_9mDeeA
 {
    background-color: #282424 !important;
}
div#shopify-section-template--18317019513004__dynamic_slideshow_3ctqFe {
    background-color: #DAD1C3;
  padding: 0 150px 50px;
}
div#shopify-section-template--18317719208108__175188046584ed6af0 {
    background-color: #dad1c3 !important;
}
.featured-in-auevwdvhqeunvvm5myaigenblock4dd6f54adkytc {
    background-color: transparent !important;
}
.ai-contact-info-awhj6mgzrwu4vouo4raigenblock4979dber4vgmq {
    background-color: transparent !important;
}

/* Home Featured section padding  */
@media screen and (max-width: 767px) {
    .guarantee-section-arxj3zevumgt5slkvraigenblock23948c6bhjytf {
        gap: 0px !important;
    }
      .guarantee-badge-arxj3zevumgt5slkvraigenblock23948c6bhjytf {
        margin-bottom: 0px !important;
    }
}
@media (max-width: 749px){
  #shopify-section-sections--18160326344876__customs_footer_nk4EDL .ai-footer-container-sections--18160326344876customsfooternk4edl {
    padding-left: 15px !important;
}
}
.ai-footer-newsletter-sections--18160326344876customsfooternk4edl {
    width: 95% !important;
}
.picture-block-body {
    font-size: 20px !important;
}
.picture-block-content {
    max-width: 70%;
}
@media(max-width:396px){
      .template-page img {
                  height: 100% !important;
      }
}
h2.picture-block-heading {
    font-size: 32px !important;
    font-weight: 400 !important;
}
/* ._9F1Rf .gdtca {
    max-width: 100% !important;
}
.i4DWM ._4QenE{
    max-width: 100% !important;
} */

/* Badge css  */
.product-card,
.product-grid-item,
.card-wrapper,
.card {
  position: relative;
  overflow: visible !important; /* Allow badge to show outside image if needed */
}

.badge-custom {
  position: absolute;
  /* top: 6px;
  left: 5px; */
  background-color: #231f20;
  color: white;
  font-size: 8px !important;
  font-weight: 400 !important;
  /* padding: 4px 10px; */
  padding: 5px 7px 4px;
  text-transform: uppercase;
  z-index: 10;
  /* border-radius: 2px; */
  line-height: 1.2;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  letter-spacing: 1px;
  max-width: none; /* allow it to expand naturally */
  
  
}
.badges-wrapper{
  top:0px !important;
  left: 0px !important;
}

.custom-qty-wrapper {
  display: flex;
  align-items: center;
  max-width: 100px;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  background: none;
  color: #231f20;
  font-size: 18px;
  padding: 6px 14px;
  cursor: pointer;
  border: none;
  width: 40px;
}

.custom-qty-input {
  width: 50px;
  text-align: center;
  font-size: 16px;
  border: none;
  padding: 10px;
}

/* Hide default number arrows */
.custom-qty-input::-webkit-inner-spin-button,
.custom-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.custom-qty-input[type="number"] {
  -moz-appearance: textfield;
}
.product-quantity-input:focus{
  border: none !important;
}
button.qty-btn.minus {
    border-right: 1px solid #ccc;
}
button.qty-btn.plus{
  border-left: 1px solid #ccc;
}
div#shop-hcaptcha-badge-container {
    display: none !important;
}
.ai-heritage-text-column-aejhhellrwhg4dlnxzaigenblock14ebf4f8yaghd {
    padding: 35px !important;
}
@media screen and (max-width: 767px) {
    .guarantee-section-acs9kakjvq1yxrhhszaigenblock23948c6zhaucr {
        padding: 30px 20px 60px !important;
    }
}
@media (max-width: 850px) {
    #shopify-section-template--18317019513004__dynamic_richtext_Y4czJG * {
        padding: 10px 10px !important;
    }
}
@media (max-width: 411px) {
    .template-product .breadcrumb-navigation {
        font-size: 9px !important;
    }
}
@media (max-width:768px){
  .hero-container img {
    object-fit: cover;
    object-position: right;
}
  .hero-container {
    height: 500px !important;
}
  .hero-overlay{
    background-color:#231f2033;
    justify-content: flex-end !important;
    padding: 1.2rem 1rem !important;
  }
  .hero-overlay h1{
    margin-bottom: 10px;
  }
  .hero-buttons {
     margin-top: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
    .guarantee-section-arxj3zevumgt5slkvraigenblock23948c6bhjytf {
        padding: 30px 20px 70px !important;
    }
}
.guarantee-description-arxj3zevumgt5slkvraigenblock23948c6bhjytf {;
    margin-bottom: 30px;
}
@media (max-width: 749px) and  (min-width: 695px){
    .ai-footer-main-sections--18160326344876customsfooternk4edl {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 694px){
  .ai-footer-main-sections--18160326344876customsfooternk4edl {
        grid-template-columns: 1fr;
    }
}
h1,h2,h3,a, a.cta-button-azhyrme1lz0o0mlrzvaigenblock27e6c4apxlxjz, .heritage-block__content-am1hxvxnwauhpatjbraigenblockfbe4afevi3xxh h2,.heritage-block__content-aewuzdum3qmjpd2w4qaigenblockfbe4aferhpybj h2, .featured-in-header-auevwdvhqeunvvm5myaigenblock4dd6f54adkytc h2, a.ai-shipping-returns-action-button-abxbbcyt4vmr0nefwdaigenblock1a61571j3ucay{
  font-family: 'Brunson' !important;
}
.product-card-details a,.product__title,.ai-footer-sections--18160326344876customsfooternk4edl a, .section-product .breadcrumb-navigation a, .hero-buttons a, .ai-categories-grid-arxhsbwvkcjnjnfy1caigenblockb69ef93grieth h3,.ai-contact-info-awhj6mgzrwu4vouo4raigenblock4979dber4vgmq > h2,a , .ai-shipping-returns-section-title-abxbbcyt4vmr0nefwdaigenblock1a61571j3ucay{
  font-family:"Magister", sans-serif !important;
}
.product-item__swatches {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.product-item__swatches .swatch-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
}

.variant-swatch img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid #ddd;
  transition: border 0.2s ease;
}

.variant-swatch img:hover {
  border: 1px solid #000;
  cursor: pointer;
}

.product-item__swatches .swatch-wrapper span[title="Out of stock"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.15);
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  border-radius: 4px;
}

header.collection-title-header .breadcrumb-navigation a{
    color: #e9e9e9 !important;
}
@media (max-width:786px){
	.collection-image {
		display:none !important;
	}
	.collection-content{
		margin-top:10px !important;
    
	}
	header.collection-title-header{
    top: 100px !important;
		background-color: #231f20;
	}
}
@media (max-width:420px){
	header.collection-title-header{
    top:80px  !important;
		background-color: #231f20;
	}
}
/* Apply semi-transparent overlay + diagonal slash for out-of-stock */
.option-value-input[data-soldout="true"] + label {
  position: relative;
  opacity: 1; /* Keep text readable */
  background: rgba(204, 204, 204, 0.3); /* semi-transparent overlay */
  overflow: hidden;
}

.option-value-input[data-soldout="true"] + label::after {
  content: "";
  position: absolute;
  top: 49%;
  left: -17%;
  width: 132%;
  height: 1px;
  background: red;
  transform: rotate(-45deg);
  transform-origin: center;
  z-index: 2;
  pointer-events: none; /* don’t block clicks */
}

/* Force higher-res background images on collection swatches */
.spf-product__swatch-image {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    height:40px !important;
    width:40px !important;
}
span.spf-product__swatch-color{
  width:19px !important;
  height:19px !important;
}
span.spf-product__swatch{
  border: 2px solid #fff !important;
}
.spf-product__swatch is-selected{
  height: 19px !important;
  width: 19px !important;
}
/* Force product grid to row layout */
.spf-has-filter #gf-products {
  display: flex !important;
  flex-direction: row !important;     /* override column */
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
}

/* Optional spacing between cards */
.spf-has-filter #gf-products > div[class*="spf-col-"] {
  margin-bottom: 30px;   /* adjust vertical gap */
}
/* =======================================
   CUSTOM BODY FONT — MAGISTER
   ======================================= */
body,
html,
p,
span,
a,
li,
div,
section,
button,
input,
select,
textarea {
    font-family: 'Magister' !important;
}

/* -------------------------
   APPLY HEADING FONT
-------------------------- */
h1, h2, h3, h4, h5, h6,
.heading,
.product-title,
.section-title,
.collection-hero__title,
.rte h1, .rte h2, .rte h3 {
    font-family: 'Brunson' !important;
    font-weight: 400 !important;
    letter-spacing: 2px !important; /* adjust value */

}

/* Force important typography elements */
strong, b {
    font-family: 'Magister' !important;
}
.spf-product-card {
  padding-bottom:1px !important;
  margin-bottom: 5px !important;
}
@media screen and (min-width: 1024px) {
  .ai-collection-hero-text-aatlnyuzsu0rvm2pxtaigenblock6e2756e7prb3t {
    padding-left:30px !important;
  }
}
.yotpo-display-s .yotpo-head[data-v-d83d47c0] {
  margin-top:5px !important;
}
.yotpo-display-s .yotpo-head .yotpo-headline[data-v-d83d47c0] {
    margin-top: 5px !important;
}
.yotpo-pp-header {
  display:none !important;
}
/* Mobile badge font size */
@media (max-width: 767px) {
  .badge-custom {
    font-size: 8px !important;
  }
}
.custom-features-fit {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin: 32px 0 0;
  padding-top: 35px;
  border-top: 1px solid #eaeaea;
  font-family: inherit;
}

.custom-features-fit h2 {
  font: 600 28px/1.3 'Helvetica Neue', sans-serif;
  margin: 0 0 16px;
  color: #111;
  letter-spacing: -0.2px;
}

.custom-features {
  flex: 1 1 280px;
}

.custom-features ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.custom-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.custom-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #231F20;
  font-size: 16px;
}

.custom-fit {
  flex: 1 1 280px;
}

.custom-fit-labels {
  display: flex;
  justify-content: space-between;
  font: 600 14px/1.2 'Helvetica Neue', sans-serif;
  margin: 12px 0 10px;
  color: #555;
}

.fit-bar {
  position: relative;
  width: 100%;
  height: 50px;
  border: 2px solid #000;
  border-radius: 30px;
  background: #f9f9f9;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.08);
  display: flex;
  align-items: center; /* centers fill vertically */
  padding: 4px 4px; /* top-bottom inner padding */
}

.fit-bar__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, #111, #333);
  border-radius: 30px;
  transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1); /* smooth slow */
}


.custom-fit-note {
  font-size: 15px;
  margin: 20px 0 0;
  color: #333;
}

.custom-fit-note a {
  text-decoration: underline;
  color: #000;
}
@media (max-width: 640px) {
  .custom-features-fit {
    flex-direction: column;
    gap: 0 !important;
    padding-top: 20px;
  }

  .custom-features {
    margin: 0 !important;
    padding: 0 !important;
    flex: none !important;
  }

  .custom-features ul {
    margin: 0 !important;
    padding: 0 !important;
  }

  .custom-fit {
    margin: 0 !important;
    padding: 0 !important;
    flex: none !important;
  }

  .custom-fit h2 {
    margin: 12px 0 10px !important; /* spacing between features and fit heading */
    padding: 0 !important;
  }
}
.product-card-figure{
  position: relative;
}

.product-card-rating-badge{
  position: absolute;
  top: 1px;
  right: 10px;
  background: white;
  border-radius: 20px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-card-rating-badge .rating-star{
  color: #f5a623;
}
.badge {
  font-size:8px;
}