/** Shopify CDN: Minification failed

Line 251:18 Unexpected "{"
Line 251:27 Expected ":"
Line 255:18 Unexpected "{"
Line 255:27 Expected ":"
Line 258:18 Unexpected "{"
Line 258:27 Expected ":"
Line 262:4 Unexpected "{"
Line 262:5 Expected identifier but found "%"
Line 262:29 Unexpected "{"
Line 262:30 Expected identifier but found "%"
... and 12 more hidden warnings

**/
/* ============================================================
   Head Turners Section — head-turners.css
   Place this file in your theme's /assets/ folder
   ============================================================ */

.head-turners {
  padding-top: var(--ht-pt, 48px);
  padding-bottom: var(--ht-pb, 48px);
  /* padding-left: 20px;
  padding-right: 20px; */
}

/* ---------- Header ---------- */
.head-turners__header {
  margin-bottom: 24px;
}

.head-turners__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.head-turners__subheading {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.head-turners__subheading:hover {
  opacity: 1;
}

/* ---------- Body Layout ---------- */
.head-turners__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid transparent; /* inherits via inline style on parent */
}

/* ---------- Hero Image ---------- */
.head-turners__hero {
  position: relative;
  overflow: hidden;
}

.head-turners__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.head-turners__hero .head-turners__placeholder {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- Product Grid ---------- */
.head-turners__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid;
  gap: 20px;
  padding-right:20px;
}

.head-turners__grid .product-item .variants__cards {
  padding: 10px;
}
.head-turners__grid label.card__variant__pills {
    font-size: 13px;
}
.head-turners__grid .options__values {
grid-template-columns: 1fr 1fr 1fr 1fr;
}
.head-turners__body--left .head-turners__grid  {
  padding-left:20px;
  padding-right:unset;
}
.head-turners__product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px 24px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

/* Remove right border on every 2nd column */
.head-turners__product:nth-child(2n) {
  border-right: none;
}

/* Remove bottom border on last row */
.head-turners__product:nth-last-child(-n+2) {
  border-bottom: none;
}

/* ---------- Product Image ---------- */
.head-turners__product-image-link {
  display: block;
  width: 100%;
  max-width: 180px;
  margin: 0 auto 16px;
}

.head-turners__product-image-link img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}

.head-turners__product-image-link:hover img {
  transform: scale(1.05);
}

.head-turners__placeholder {
  width: 100%;
  max-width: 180px;
  height: auto;
  opacity: 0.35;
}

/* ---------- Product Info ---------- */
.head-turners__product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.head-turners__product-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0;
}

.head-turners__product-price {
  font-size: 13px;
  letter-spacing: 0.04em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.head-turners__price--compare {
  opacity: 0.45;
  text-decoration: line-through;
}

.head-turners__price--sale {
  color: #e03a3a;
}

/* ---------- Quick View Button ---------- */
.head-turners__quick-view {
  display: inline-block;
  margin-top: 8px;
  padding: 7px 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* ---------- Responsive ---------- */

@media (max-width:1400px) {
  .head-turners__body  {
    grid-template-columns: 1.5fr 1fr;
  }
  .head-turners__body--left {
    grid-template-columns: 1fr 1.5fr;
  }
  .head-turners__grid {
        gap: 10px;
    padding-right: 20px;
    row-gap: 20px;
  }
}
@media (max-width:1200px) {
 .head-turners__body  {
    grid-template-columns: 1.7fr 1fr;
  }
  .head-turners__body--left {
    grid-template-columns: 1fr 1.7fr;
  }
}
@media (max-width:1100px) {
.head-turners__body {
  grid-template-columns: 1fr;
  gap:20px;
}
.head-turners__grid {
  padding-inline:0 !important;
}

}
@media screen and (max-width: 900px) {
  .head-turners__body {
    grid-template-columns: 1fr;
  }

  .head-turners__grid {
    border-left: none;
    border-top: 1px solid;
  }

  .head-turners__hero {
    max-height: 420px;
  }
}
@media (max-width:749px){
#shopify-section-{{ section.id }} .grid {
--COLUMNS: 2;
    --COLUMNS-SMALL: 2;
}
#shopify-section-{{ section.id }} .grid-item.soldout__product {
order:2;
}
#shopify-section-{{ section.id }} .variants__cards {
position:fixed !important;
}
.popout--group {
    {% comment %} gap: 10px; {% endcomment %}
}
span.total_products__results {
    font-size: 14px;
}
.popout--group .popout__toggle, .popout--sort .popout__toggle {
  font-size:16px;
}
#shopify-section-{{ section.id }} .variants__overlay {
      position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 99;
    opacity:0;
    transition:.8s all ease;
    visibility:hidden;
            {% comment %} background: #00000006; {% endcomment %}
}
.show_variants #shopify-section-{{ section.id }} .show__variant__item .variants__overlay {
    opacity:1;
    visibility:visible;

}
 #shopify-section-{{ section.id }} .content__info__product  {
display:flex;
}
.show_variants {
overflow:hidden;
}
#shopify-section-{{ section.id }} .variants__cards {
z-index:100;
}
}
@media screen and (max-width: 480px) {
  .head-turners__product {
    padding: 20px 10px 18px;
  }

  .head-turners__product-image-link {
    max-width: 130px;
  }

  .head-turners__product-title {
    font-size: 10px;
  }
}
