/** Shopify CDN: Minification failed

Line 632:8 Unexpected "{"
Line 632:17 Expected ":"
Line 632:24 Unexpected "{"

**/
/* ============================================
   CUSTOM.CSS - 70 Series Store Customizations
   ============================================ */

/* ============================================
   PRODUCT TITLES - Uppercase Globally
   ============================================ */

.card__heading,
.card__heading a,
.full-unstyled-link,
.product__title,
.product__title h1,
.product__title h2 {
  text-transform: uppercase !important;
  letter-spacing: 0.03em; /* optional for better spacing */
}

/* ============================================
   PRODUCT IMAGE SLIDER - The Good Guys Style
   ============================================ */

.product__media-container {
  position: relative;
}

/* Move slider controls over the image */
.product .slider-buttons {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2; /* Changed from 10 to 2 - high enough for image overlay, low enough for menus */
  
  /* Smaller pill-shaped background */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Smaller arrows */
.product .slider-buttons .slider-button {
  background: transparent;
  border: none;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product .slider-buttons .slider-button svg {
  width: 16px;
  height: 16px;
  color: #333;
}

/* Smaller counter text */
.product .slider-counter {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  min-width: 35px;
  text-align: center;
  user-select: none;
  line-height: 1;
}

/* Mobile adjustments */
@media screen and (max-width: 749px) {
  .product .slider-buttons {
    bottom: 12px;
    padding: 5px 12px;
  }
  
  .product .slider-counter {
    font-size: 12px;
    min-width: 30px;
  }
  
  .product .slider-buttons .slider-button {
    width: 18px;
    height: 18px;
  }
  
  .product .slider-buttons .slider-button svg {
    width: 14px;
    height: 14px;
  }
}

/* ============================================
   MOBILE DRAWER MENU - Card Style
   ============================================ */

@media screen and (max-width: 989px) {
  /* Drawer background */
  #menu-drawer.menu-drawer {
    background: #f4f6f8;
  }

  /* Padding around menu */
  #menu-drawer .menu-drawer__navigation {
    padding: 14px 14px 18px;
  }

  /* Reset list spacing */
  #menu-drawer .menu-drawer__menu {
    padding: 0;
    margin: 0;
  }

  /* Space between cards */
  #menu-drawer .menu-drawer__menu > li {
    margin: 10px 0;
  }

  /* Card-style menu rows */
  #menu-drawer .menu-drawer__menu-item {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(16, 24, 40, 0.08);
    padding: 14px 14px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.1;
    color: #111;
    text-decoration: none;
  }

  /* Hover / tap feedback */
  #menu-drawer .menu-drawer__menu-item:hover {
    background: #fafafa;
  }

  /* Remove underline behaviour from Dawn */
  #menu-drawer .menu-drawer__menu-item.link--text {
    text-decoration: none;
  }
}

/* ============================================
   GORGIAS CHAT - Z-Index Override
   ============================================ */

[class^="gorgias-chat-key-"] {
  z-index: 18 !important;
}

/* ============================================
   MEGA MENU - 6 Column Grid Layout
   ============================================ */

/* Grid layout - fixed 6 columns */
.mega-menu__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

/* Column styling with borders */
.mega-menu__list > li {
  padding: 0 32px;
  border-right: 1px solid rgba(var(--color-foreground), 0.15);
}

/* Remove border from last column */
.mega-menu__list > li:last-child {
  border-right: none;
}

/* Style the parent category headers (level 2 links) */
.mega-menu__link--level-2 {
  background-color: rgba(var(--color-foreground), 0.06);
  padding: 12px 16px;
  margin: 0 -32px 16px -32px; /* Extend to column edges */
  font-weight: 600;
  display: block;
  border-radius: 4px;
}

/* Adjust subcategory links spacing */
.mega-menu__link:not(.mega-menu__link--level-2) {
  padding: 6px 0;
  display: block;
}
.product-form__submit {
  background: #017AFF !important;
  color: #ffffff !important;
  outline: none;
  font-weight: 600; /* Extra bold */
  font-size: 1.9rem;
  line-height: 2.9 !important; /* Increase line-height for higher button */
  letter-spacing: 2.2px; /* Increase spacing between characters */
}

/*
 * Custom code pulled from original theme files
 */

/* base.css */
h1,
h2,
h3,
h4,
h5,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.05;
}
.shopify-payment-button [role='button'],
.cart__dynamic-checkout-buttons [role='button'],
.cart__dynamic-checkout-buttons iframe {
  --shadow-horizontal-offset: var(--buttons-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--buttons-shadow-vertical-offset);
  --shadow-blur-radius: var(--buttons-shadow-blur-radius);
  --shadow-opacity: var(--buttons-shadow-opacity);
  --shadow-visible: var(--buttons-shadow-visible);
  --border-offset: var(--buttons-border-offset); /* reduce radius edge artifacts */
  --border-opacity: calc(1 - var(--buttons-border-opacity));
  border-radius: var(--buttons-radius-outset);
  position: relative;
}
.shopify-payment-button__button--branded {
  z-index: auto;
}
.cart__dynamic-checkout-buttons iframe {
  box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius)
  rgba(var(--color-shadow), var(--shadow-opacity));
}
.shopify-payment-button [role='button']:before,
.cart__dynamic-checkout-buttons [role='button']:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: var(--buttons-radius-outset);
  box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius)
  rgba(var(--color-shadow), var(--shadow-opacity));
}
.shopify-payment-button [role='button']:focus-visible
.shopify-payment-button [role='button']:focus {
  outline: 0;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.5rem rgba(var(--color-foreground), 0.5),
  0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

.shopify-payment-button [role='button']:focus:not(:focus-visible):not(.focused) {
  box-shadow: inherit;
}

.select .svg-wrapper,
.customer select + .svg-wrapper {
  right: calc(var(--inputs-border-width) + 1.5rem);
}
.field__button {
  width: 3.4rem;
}
.cart-count-bubble {
  top: 0 !important;
}
.shopify-section-sticky-hidden {
  top: calc(-1 * var(--sticky-height));
}
.header-group.animate {
  transition: top 0.15s ease-out;
}
@media screen and (max-width: 989px) {
  .header {
    grid-template-areas:
      'left-icons heading icons'
      'full-width full-width full-width';
    grid-template-columns: 1fr 3fr 1fr;
  }
}
@media screen and (min-width: 990px) {
  .header:not(.drawer-menu).page-width {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .header__heading-link {
    display: inline-block;
    padding: 0;
    text-decoration: none;
    word-break: break-word;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 769px) {
  .header__heading-link {
    display: inline-block;
    padding: 0.75rem;
    text-decoration: none;
    word-break: break-word;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 750px) {
  .header.page-width, .utility-bar__grid.page-width {
    padding-left: 3.2rem;
    padding-right: 3.2rem;
  }
}
.header__icons {
  display: flex;
  grid-area: icons;
  padding-right: unset;
  gap: 1rem;
  justify-self: stretch;
  justify-content: end;
  align-items: center;
}
.header__icon:hover .icon {
  transform: none;
}
.header__icon--account .icon {
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 989px) {
  .header__icon {
    text-decoration: none;
  }
}
@media screen and (min-width: 990px) {
  .header__icon {
    margin-top: -4px;
  }
}
.header__icon span {
  height: unset;
}
.header__icon span:first-child {
  height: 30px;
}
@media screen and (max-width: 768px) {
  .header__icon span:first-child {
    height: 32px;
    margin-top: 2px;
  }
}
.search-modal__form .search__input,
.search-modal__form .reset__button,
.search-modal__form .search__button {
  height: 3rem;
}
.search-modal__form .search__input {
  padding: .8rem 1.3rem !important;
  min-width: 230px;
}
.search-modal__form .search__button {
  border-top-right-radius: var(--inputs-radius);
  border-bottom-right-radius: var(--inputs-radius);
}
.search-modal__form .search__input.field__input + label {
  top: calc(.3rem + var(--inputs-border-width));
  left: 1.3rem;
  transition: top var(--duration-short) ease, font-size var(--duration-short) ease, opacity var(--duration-short) ease;
}
.search-modal__form .search__input.field__input:focus + label,
.search-modal__form .search__input.field__input:not(:placeholder-shown) + label {
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .product-form__submit {
    font-size: 1.9rem;
    font-weight: 600;

  }
}
.product__title h1 {
  font-size: 2rem;
}
h2.h4.accordion__title {
  font-size: 13px!important;
}
h3.card__heading.h5 {
  font-size: 16px!important;
}
.product__media-item modal-opener:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #000000;
  opacity: 0.05 !important;
  border-radius: 6px !important;
}
@media (min-width: 768px) {
  #predictive-search-results {
    background: #fff !important;
    color: #000 !important;
  }
  #predictive-search-results * {
    color: #000 !important;
  }
}
@media (max-width: 767px) {
  #predictive-search-results {
    background: #fff !important;
    color: #000 !important;
  }
  #predictive-search-results * {
    color: #000 !important;
  }
}
@media screen and (max-width: 767px) {
  .title-wrapper--no-top-margin > .title {
    text-align: center;
  }
}
div#menu-drawer {
  width: 85vw;
}
@media screen and (max-width: 768px) {
  .product__inventory {
    display: flex;
    justify-content: center; /* Center horizontally */
  }
}
.site-wrapper {
  overflow: hidden !important;
}
.desktop-search {
  width: 100%;
  max-width: 550px;
}
.mobile-search {
  margin: 6px 0 4px;
}
.header__icon:not(.header__icon--summary),
.header__icon span {
  flex-direction: column;
}
.header__icon--cart .svg-wrapper {
  height: 26px !important;
  margin-top: 2px;
  margin-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .header__icon--cart .svg-wrapper {
    height: 28px !important;
    margin-top: 0 !important;
    margin-bottom: 4px;
  }
}
.header__icon--menu .svg-wrapper {
  height: 34px !important;
}

/* component-card.css */
.card__information {
  padding: 0 0 1.7rem !important;
  display: flex;
  flex-direction: column;
}
.card--card .quick-add {
  margin: 0 !important;
}
.card-information {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-information > .price {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.quick-add + .card__information .card-information > .price {
  margin-top: auto !important
}
.card--media .card__inner .card__content {
  padding: 0 4px !important;
}

@media screen and (max-width: 767px) {
  .card--media .card__inner .card__content {
    padding: 1px 4px !important;
  }
}

/* component-collection-hero.css */
.collection-hero__title {
  font-size: 3.0rem;
}

@media screen and (max-width: 767px) {
  .collection-hero__title {
    font-size: 2.4rem;
    margin-top: 1.2rem;
    margin-bottom: -0.2rem;
    text-align: center;
  }
}
@media screen and (min-width: 750px) {
  .collection-hero__description {
    max-width: 90%;
  }
}

/* component-list-social.css */
.list-social__link .svg-wrapper {
  height: 5rem !important;
  width: 5rem !important;
  margin-top: -2rem;
  margin-bottom: -4rem;
}
.list-social__item .icon {
  height: 5rem !important;
  width: 5rem !important;
}

/* component-menu-drawer.css */
.menu-drawer__navigation {
  padding: 1.5rem 0;
}
.menu-drawer__menu-item {
  font-weight: 500;
}

/* component-pagination.css */
.pagination__list{
  display: none !important;
}

/* component-predictive-search.css */
.predictive-search {
  z-index: 15;
}

/* component-price.css */
.price {
  padding-top: 1.5rem !important;
  font-size: 1.8rem !important;
  letter-spacing: 0.04rem !important;
  font-weight: 600;
}
.price__regular .price-item--regular {
  padding-top: 1rem;
}
.price--large {
  padding-top: 1.5rem;
  font-size: 2.2rem !important;
  letter-spacing: 0.04rem !important;
  font-weight: 600 !important;
  text-align: left;
}
.volume-pricing--sale-badge .price__badge-sale {
  margin-left: 5rem;
  display: inline-block;
}
.price--on-sale .price__sale {
  color: #e43a36;
}
.price--on-sale .price-item--regular {
  color: rgba(var(--color-foreground), 0.45);
  font-size: 1.2rem;
  font-weight: normal;
}
.unit-price {
  margin-top: 0.3rem;
}

/* component-search.css */
.reset__button {
  right: calc(var(--inputs-border-width) + 3.4rem);
}

/* section-main-product.css */
.product .price .badge {
  margin-bottom: 1rem;
}
.product .price__container {
  margin-bottom: 2rem !important;
}

/* sections/main-product.liquid */
 .product__title h1 {
   font-size: 2.5rem;
 }
.product__info-container > * {
  margin-bottom: 0.5rem !important;
  margin-top: 0.5rem !important;
}
.product__title {
  margin-bottom: 0.4rem !important;
  margin-top: 0 !important;
}
.product__text,
.product__description,
.product-form__input,
.product__accordion {
  margin-top: 0.4rem !important;
  margin-bottom: 0.4rem !important;
}
#price-{{ section.id }} {
  margin-top: 0.4rem !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
product-info .price {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
product-info .price--large {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.no-js-hidden[role="status"] {
  margin-bottom: 0.4rem !important;
}
product-info .product__tax {
  display: none !important;
}
product-info .volume-pricing-note {
  margin-top: 0.2rem !important;
  margin-bottom: 0.4rem !important;
  padding-bottom: 0 !important;
}
product-info .installment {
  margin-top: 0.2rem !important;
  margin-bottom: 0.4rem !important;
  padding-top: 0 !important;
}
@media (max-width: 767px){
  .product__title h1 {
    font-size: 22px !important;
  }
}
.product__text {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}
.product__title {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.product__title h1 {
  margin-top: 0 !important;
  padding-top: 0 !important;
  line-height: 1.1 !important;
}
.product__text + .product__title {
  margin-top: -0.2rem !important;
}
.product__description {
  font-size: 13px !important;
  line-height: 1.4 !important;
  color: black;
}

/* layout/index.liquid */
.quick-add__submit {
  background: #000000;
  color: white;
  outline: none;
}
.product__image-wrapper {
  position: relative;
}
.product__badge {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.sticky-atc-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -1px 6px rgba(0,0,0,0.08);
  padding: 12px 15px calc(12px + env(safe-area-inset-bottom));
  z-index: 20;
  transition: transform 0.3s ease;
  pointer-events: none;
  margin: 0;
  /* Prevent iOS scroll bounce interference */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.sticky-atc-bar.visible {
  transform: translateY(0);
  display: block !important;
  pointer-events: auto;
}
body.overflow-hidden .sticky-atc-bar,
html.menu-open .sticky-atc-bar,
body.menu-open .sticky-atc-bar {
  display: none !important;
}
.sticky-atc-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.sticky-product-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.sticky-product-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.sticky-product-details {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sticky-product-title {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  max-width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.sticky-variant-picker {
  margin-top: 0;
}
.sticky-variant-select {
  width: 100%;
  max-width: 250px;
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  background: white;
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
}
.sticky-variant-select option {
  text-transform: none;
  font-weight: normal;
  padding: 4px 0;
}
.sticky-variant-select optgroup {
  font-weight: 600;
  font-style: normal;
  color: #333;
  text-transform: uppercase;
  font-size: 12px;
}
.sticky-variant-select:focus {
  outline: none;
  border-color: #017AFF;
}
.sticky-add-to-cart-btn {
  background: #017AFF;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-add-to-cart-btn .btn-price {
  font-weight: 700;
}
.sticky-add-to-cart-btn .btn-price:before {
  content: "- ";
  margin-right: 2px;
}
.sticky-add-to-cart-btn:hover {
  background: #0162CC;
}
.sticky-add-to-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}
@media (min-width: 769px) {
  .sticky-product-title {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
  .sticky-product-image {
    width: 55px;
    height: 55px;
  }
  .sticky-variant-select {
    max-width: 280px;
  }
}
@media (max-width: 768px) {
  .sticky-atc-bar {
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  }
  .sticky-atc-content {
    gap: 12px;
  }
  .sticky-product-info {
    gap: 10px;
  }
  .sticky-product-image {
    width: 50px;
    height: 50px;
  }
  .sticky-product-title {
    font-size: 11.5px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
  }
  .sticky-variant-select {
    font-size: 16px;
    padding: 5px 8px;
    max-width: 200px;
  }
  .sticky-add-to-cart-btn {
    padding: 12px 22px;
    font-size: 14px;
    gap: 6px;
  }
}
@media (max-width: 480px) {
  .sticky-atc-bar {
    padding: 8px 10px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
  }
  .sticky-product-image {
    width: 45px;
    height: 45px;
  }
  .sticky-product-title {
    font-size: 10.5px;
    line-height: 1.3;
    -webkit-line-clamp: 2;
  }
  .sticky-variant-select {
    font-size: 11px;
    max-width: 140px;
  }
  .sticky-add-to-cart-btn {
    padding: 10px 18px;
    font-size: 13px;
    gap: 5px;
  }
}
span.jdgm-all-reviews-text__text {
  font-size: 16px !important;
}
@media only screen and (max-width: 767px) {
  span.jdgm-all-reviews-text__text {
    font-size: 16px !important;
    display: block;
  }
}

/* sections/footer.liquid */
.footer-block__heading {
  text-align: center;
}
.footer-block__details-content,
.footer-block__brand-info {
  text-align: center;
}

/* sections/image-banner.liquid */
.banner__content:not(.page-width) {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* sections/card-product.liquid */
.vendor-above-title {
  margin-bottom: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}
.vendor-above-title + .card__heading {
  margin-top: 0 !important;
  padding-top: 0 !important;
}