/** Shopify CDN: Minification failed

Line 9:7 Expected identifier but found whitespace
Line 9:8 Unexpected "not("

**/
span.price{font-size:25px!important;display:none;}
strong.price_hide{display:none;}
iframe: not([seamless]) { border: 0px inset; border-image: none; }
select.single-option-selector option.test1{cursor: default;    color: #b6b6b6;    background-color: #f6f6f6;}
select.single-option-selector option.test2{cursor: default;    color: #b6b6b6;    background-color: #f6f6f6;}

/* ============================================================
   Kodiak Sports — Footer Layout Fix
   ------------------------------------------------------------
   Modernizes the footer column layout to flexbox so the
   PRODUCTS list (23+ items) doesn't blow out the column
   height and create a broken-looking footer.
   ------------------------------------------------------------
   Paste this at the BOTTOM of assets/style.css
   (or assets/theme.scss.liquid — either works).
   Added 27 Apr 2026.
   ============================================================ */

.site-footer .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 50px;
  align-items: flex-start;
}

.site-footer .footerContent,
.site-footer .footerProductLinks,
.site-footer .footerQuickLinks,
.site-footer .footerContact {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  flex: 1 1 200px;
  height: auto !important;
  min-width: 0;
}

/* "Why Kodiak" column gets a bit more breathing room */
.site-footer .footerContent {
  flex: 1 1 240px;
}

/* PRODUCTS column — flow long list into 2 columns so it's not a huge tower */
.site-footer .footerProductLinks {
  flex: 1.4 1 280px;
}
.site-footer .footerProductLinks ul {
  column-count: 2;
  column-gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .footerProductLinks ul li {
  break-inside: avoid;
  list-style: none;
  margin: 0 0 6px 0;
  line-height: 1.5;
}

.site-footer .footerQuickLinks ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .footerQuickLinks ul li {
  list-style: none;
  margin: 0 0 6px 0;
  line-height: 1.5;
}

/* Contact column */
.site-footer .footerContact {
  flex: 1 1 220px;
}

/* Bottom row (copyright + payment cards) — keep its float layout intact */
.site-footer .footerBottom {
  width: 100%;
  flex-basis: 100%;
}

/* Small screens — stack columns */
@media (max-width: 768px) {
  .site-footer .wrapper {
    gap: 30px;
  }
  .site-footer .footerContent,
  .site-footer .footerProductLinks,
  .site-footer .footerQuickLinks,
  .site-footer .footerContact {
    flex: 1 1 100%;
    text-align: center;
  }
  .site-footer .footerProductLinks ul {
    column-count: 2;
    text-align: left;
    display: inline-block;
  }
}

/* ============================================================
   Kodiak Sports — Footer Warranty Link
   Added May 2026
   ============================================================ */
.footerLegal {
  text-align: center;
  padding: 8px 0 4px;
  font-size: 12px;
  width: 100%;
}
.footerLegal a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  letter-spacing: .03em;
}
.footerLegal a:hover {
  color: #fff;
}
