/** Shopify CDN: Minification failed

Line 448:16 Expected identifier but found whitespace
Line 448:18 Unexpected "{"
Line 448:27 Expected ":"
Line 448:53 Expected ":"
Line 449:19 Expected identifier but found whitespace
Line 449:21 Unexpected "{"
Line 449:30 Expected ":"
Line 449:59 Expected ":"

**/


/* CSS from section stylesheet tags */
.footer__top {
    background-color: #c5c5c5;
    border-top: 1px solid #262626;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
  }

  .footer__top h2{
    margin: 16px 0;
    font-weight: 400;
    font-size:18px;
    max-width: 240px;
  }

  /* Mobile Accordion Styles */
  .footer-wrap-links-mobile {
    padding: 20px;
  }

  .footer__accordion-item {
    margin-bottom: 12px;
  }

  .footer__accordion-button {
    width: 100%;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
  }

  .footer__accordion-button h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #000000 !important;
  }

  .footer__accordion-button h2 a {
    text-decoration: none;
    color: #000000 !important;
  }

  .footer__accordion-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .footer__accordion-chevron path {
    stroke: #000000;
  }

  .footer__accordion-chevron.active {
    transform: rotate(180deg);
  }

  .footer__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
  }

  .footer__accordion-content.active {
    max-height: 800px;
    border-left: 1px solid #000000;
    text-decoration: underline;

    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
  }

  .footer__accordion-content ul {
    padding: 16px;
    margin: 0;
    list-style: none;
  }

  .footer__accordion-content ul li {
    padding: 8px 0;
  }

  .footer__accordion-content ul li a {
    text-decoration: underline;
    font-size: 14px;
    display: block;
    color: #000000 !important;
  }

  @media screen and (min-width: 768px) {
    .footer-wrap-links-mobile {
      display: none;
    }
  }

  @media screen and (max-width: 767px) {
    .footer-wrap-links-desktop {
      display: none;
    }
  }
.shop-by-jersey-section {
    padding: 3rem 1rem;
  }

  .shop-by-jersey-section:not(.shop-by-jersey-section--full-width) {
    max-width: 1200px;
    margin: 0 auto;
  }

  .shop-by-jersey-section__heading {
    font-family: var(--font-body-family);
    text-transform: uppercase;
    margin-bottom: 3rem;
  }

  .shop-by-jersey__slider-wrapper {
    position: relative;
  }

  .shop-by-jersey__carousel {
    position: relative;
    display: block;
  }

  .shop-by-jersey__slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 2rem) / 2);
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    list-style: none;
  }

  .shop-by-jersey__slider::-webkit-scrollbar {
    display: none;
  }

  .shop-by-jersey__slide {
    scroll-snap-align: start;
  }

  .shop-by-jersey__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
  }

  .shop-by-jersey__card-text {
    padding: 0 0 1rem 0;
    text-align: center;
    font-weight: normal;
    font-size: 16px;
    color: #222;
    font-family: var(--font-body-family);
    word-break: break-word;
    text-decoration: underline;
    &:hover {
      text-decoration: none;
      cursor: pointer;
    }
  }

  .shop-by-jersey__image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f7f7f7;
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .shop-by-jersey__card:hover .shop-by-jersey__image-wrapper {
    transform: scale(1.05);
  }

  .shop-by-jersey__image {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* Image fit options */
  .shop-by-jersey__image--cover {
    object-fit: cover;
  }

  .shop-by-jersey__image--contain {
    object-fit: contain;
  }

  .shop-by-jersey__image--fill {
    object-fit: fill;
  }

  .shop-by-jersey__image--scale-down {
    object-fit: scale-down;
  }

  /* Navigation Buttons */
  .shop-by-jersey__nav-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    margin-top: -2rem; /* Adjust to align with images */
  }

  .shop-by-jersey__nav-button {
    pointer-events: auto;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
  }

  .shop-by-jersey__nav-button:hover {
    opacity: 0.7;
  }

  .shop-by-jersey__nav-button:disabled {
    opacity: 0.3;
  }

  .shop-by-jersey__nav-button--prev {
    margin-left: -22px;
  }

  .shop-by-jersey__nav-button--next {
    margin-right: -22px;
  }

  .shop-by-jersey__nav-button svg {
    width: 20px;
    height: 20px;
  }

  /* Responsive columns */
  @media (min-width: 750px) {
    .shop-by-jersey__slider {
      grid-auto-columns: calc((100% - 4rem) / 3);
      gap: 2rem;
    }
  }

  @media (min-width: 990px) {
    .shop-by-jersey__slider {
      grid-auto-columns: calc((100% - 6rem) / 4);
      gap: 2rem;
    }
  }

  @media (max-width: 749px) {
    .shop-by-jersey__nav-buttons {
      display: none;
    }
  }
.shop-by-player-section {
    padding: 3rem 1rem;
  }

  .shop-by-player-section:not(.shop-by-player-section--full-width) {
    max-width: 1200px;
    margin: 0 auto;
  }

  .shop-by-player-section__heading {
    font-family: var(--font-body-family);
    text-transform: uppercase;
    margin-bottom: 3rem;
  }

  .shop-by-player__slider-wrapper {
    position: relative;
  }

  .shop-by-player__carousel {
    position: relative;
    display: block;
  }

  .shop-by-player__slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 2rem) / 2);
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    list-style: none;
  }

  .shop-by-player__slider::-webkit-scrollbar {
    display: none;
  }

  .shop-by-player__slide {
    scroll-snap-align: start;
  }

  .shop-by-player__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
  }

  .shop-by-player__card-text {
    padding: 0 0 1rem 0;
    text-align: center;
    font-weight: normal;
    font-size: 16px;
    color: #222;
    font-family: var(--font-body-family);
    word-break: break-word;
    text-decoration: underline;
    &:hover {
      text-decoration: none;
      cursor: pointer;
    }
  }

  .shop-by-player__image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f7f7f7;
    overflow: hidden;
  }

  .shop-by-player__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Navigation Buttons */
  .shop-by-player__nav-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    margin-top: -2rem; /* Adjust to align with images */
  }

  .shop-by-player__nav-button {
    pointer-events: auto;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
  }

  .shop-by-player__nav-button:hover {
    opacity: 0.7;
  }

  .shop-by-player__nav-button:disabled {
    opacity: 0.3;
  }

  .shop-by-player__nav-button--prev {
    margin-left: -22px;
  }

  .shop-by-player__nav-button--next {
    margin-right: -22px;
  }

  .shop-by-player__nav-button svg {
    width: 20px;
    height: 20px;
  }

  /* Responsive columns */
  @media (min-width: 750px) {
    .shop-by-player__slider {
      grid-auto-columns: calc((100% - 4rem) / 3);
      gap: 2rem;
    }
  }

  @media (min-width: 990px) {
    .shop-by-player__slider {
      grid-auto-columns: calc((100% - 6rem) / 4);
      gap: 2rem;
    }
  }

  @media (max-width: 749px) {
    .shop-by-player__nav-buttons {
      display: none;
    }
  }
.two-column-widget {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }