/** Shopify CDN: Minification failed

Line 974:4 Unexpected "{"
Line 974:5 Expected identifier but found "%"
Line 974:38 Unexpected "{"
Line 974:39 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
a {
    text-decoration: none;
  }
  .all-star-slider-wrapper {
    padding: 2rem 1rem;
    overflow-x: auto;
    background-color: var(--bg-color);
  }
  .all-star-slider-title {
    color: var(--title-color);
    font-size: 24px;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  .all-star-player-list {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }
  .slider-container {
    position: relative;
  }
  .all-star-player {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: start;
  }

  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 20px;
    z-index: 2;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }

  .slider-arrow.left {
    left: 0;
    /* width: 10px; */
  }

  .slider-arrow.right {
    right: 0;
  }
  @media (max-width: 768px) {
    .all-star-player {
      width: 60%;
    }

    .all-star-player-list {
      gap: 16px;
    }

    .all-star-slider-title {
      color: var(--title-color);
      font-size: 22px;
      margin-bottom: 1rem;
      font-weight: 600;
    }
  }
  @media (min-width: 1024px) {
    .all-star-player {
      width: 300px;
    }

    .all-star-player-list {
      gap: 80px;
    }
  }
  .all-star-player img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: opacity 0.5s ease-in-out;
  }
  .all-star-player .info {
    color: var(--title-color);
    margin-top: 0.5rem;
  }
.collection-page {
    display: flex;
    gap: 30px;
    padding: 20px;
  }

  .filters {
    width: 250px;
    border-right: 1px solid #ddd;
  }

  .filter-group {
    margin-bottom: 20px;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    flex-grow: 1;
  }

  .product-card {
    border: 1px solid #eee;
    padding: 10px;
    text-align: center;
  }

  .color-swatches {
    margin-top: 10px;
  }

  .color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #ccc;
    margin: 0 3px;
    cursor: pointer;
  }
.custom-footer {
    background: #f9f9f9;
    padding: 2rem 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    font-size: 16px;
  }

  .footer-column {
    flex: 1 1 180px;
  }

  .footer-column h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
  }

  .footer-column ul li {
    margin-bottom: 0.3rem;
  }

  .footer-column ul li a {
    text-decoration: none;
    font-size: 12px;
    color: #000;
  }

  .footer-signup {
    flex: 1 1 200px;
  }

  .footer-signup p {
    margin-bottom: 0.8rem;
    font-size: 12px;
    color: #242424;
  }

  .footer-signup button {
    background: #bc0022;
    color: white;
    padding: 0.6rem 2.2rem;
    border: none;
    font-size: 16px;
    line-height: 26px;
    cursor: pointer;
  }

  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 0.6rem;
  }

  .footer-social a {
    background: black;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .link_list__heading {
    font-size: 14px;
    font-weight: 600;
    color: #242424;
  }

  .footer-bottom {
    background: #fff;
    padding: 1rem 2rem;
    font-size: 12px;
    color: #242424;
    border-top: 1px solid #ddd;
    text-align: center;
  }

  .footer-bottom-links {
    margin-bottom: 0.5rem;
  }

  .footer-bottom-links a {
    color: #000;
    text-decoration: none;
    margin: 0 0.3rem;
    font-size: 12px;
  }

  .footer-bottom-copy {
    font-size: 12px;
    color: #555;
  }

  @media (max-width: 768px) {
    .custom-footer {
      flex-direction: column;
      padding: 2rem 2rem;
    }
  }
/* .top-bar {
    background: #ffffff;
    text-align: center;
    padding: 5px 0;
    font-size: 16px;
    font-weight: bold;
  } */

  .top-bar {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 0;
    display: flex;
    align-items: center;
  }

  .top-bar-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scroll-left 15s linear infinite;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  .main-header {
    background: #041e42;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    color: white;
    flex-wrap: wrap;
  }

  .main-header img.logo {
    height: 80px;
  }

  .search-bar {
    flex-grow: 1;
    max-width: 600px;
    margin: 0 20px;
  }

  .search-bar input {
    width: 100%;
    padding: 8px 12px;
    border-radius: 4px;
    border: none;
  }

  .nav-icons {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .nav-icons img {
    height: 40px;
    width: auto;
  }

  .menu-bar {
    background: #bc0022;
    display: flex;
    justify-content: center;
    /* gap: 65px; */
    /* padding: 10px 0; */
    font-weight: bold;
  }

  .menu-bar-mobile {
    background: #bc0022;
    display: none;
    gap: 25px;
    padding: 10px 10px;
  }

  .menu-bar a {
    color: white;
    text-decoration: none;
    font-size: 13px;
  }

  .hamburger-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    flex: 1;
  }

  .hamburger-icon span {
    width: 25px;
    height: 3px;
    background-color: #000000;
    display: block;
    border-radius: 2px;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: white;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px;
    transition: left 0.3s ease;
  }

  .mobile-menu a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }

  .mobile-menu.show {
    left: 0;
  }

  .menu-item {
    position: relative;
    padding: 5px 25px;
  }

  .menu-item > a {
    text-transform: uppercase;
  }

  .team-dropdown {
    display: none;
    position: absolute;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    top: 100%;
    /* top: 40px; */
    left: 0;
    background: white;
    color: black;
    padding: 15px;
    z-index: 1000;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    /* min-width: 220px; */
    width: 45vw;
  }

  .right {
    right: 0;
    left: auto;
  }

  .menu-item:hover .team-dropdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .menu-item:hover {
    background-color: #a3001d;
  }

  .team-link {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    text-decoration: none;
    color: #000 !important;
    font-size: 14px;
    font-weight: 400;
  }

  .team-link img {
    margin-right: 8px;
    width: 24px;
    height: 24px;
  }

  .team-link:hover {
    background: #f3f3f3;
  }

  .template-search__search {
    margin: 0 auto !important;
    width: 100% !important;
  }

  .field__button > .svg-wrapper {
    height: 2.5rem;
    width: 2.5rem;
    color: #000000 !important;
  }

  @media (max-width: 768px) {
    .nav-icons {
      display: none;
    }

    .top-bar {
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      background: #ffffff;
      font-size: 14px;
      font-weight: bold;
      padding: 5px 0;
      display: flex;
      align-items: center;
    }

    .main-header img.logo {
      height: 60px;
    }

    .menu-bar {
      display: none;
    }

    .menu-bar-mobile {
      background: #bc0022;
      display: flex;
      gap: 25px;
      justify-content: end;
      padding: 5px 10px;
    }

    .hamburger-icon {
      display: flex;
    }

    .main-header {
      justify-content: space-between;
      align-items: center;
      padding: 20px 10px;
    }

    .search-bar {
      width: 80%;
      margin: 0 0 0 0;
    }
  }

  .topbar-right {
    display: flex;
    justify-content: end;
    padding: 0 12px;
    background-color: #f7f7f7;
    align-items: center;
    gap: 20px;
    font-size: 12px;
  }

  .topbar-right a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
  }

  .cart-icon {
    font-size: 18px;
  }

  .dropdown {
    position: relative;
  }

  .dropdown-toggle {
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 8px 0;
    min-width: 120px;
    z-index: 10;
  }

  .dropdown-menu a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
  }

  .dropdown-menu a:hover {
    background-color: #f0f0f0;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .close-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    font-size: 32px;
    /* font-weight: bold; */
    color: black;
    cursor: pointer;
  }
.custom-text-section {
    padding: 3rem 1.5rem;
  }
  .custom-text-section h1 {
    /* font-size: 2rem; */
    font-weight: 700;
    margin-bottom: 1rem;
  }
  .custom-text-section p {
    font-size: 1.6rem;
    line-height: 1.7;
  }

  .container {
    max-height: 25rem;
    overflow-y: scroll;
  }
.help-desk {
    padding: 40px;
    background-color: #f5f6f8;
    /* max-width: 1200px; */
  }
  .help-desk-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .help-desk-item {
    display: flex;
    text-align: center;
    gap: 10px;
    border: 1px solid #ddd;
    border-radius: 2px;
    background: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 0.125rem 0.1875rem 0 rgba(0, 0, 0, 0.3);
    height: 11.25rem;
    overflow-wrap: anywhere;
    justify-content: center;
    align-items: center;
  }
  .help-desk-item:hover {
    /* background: #f9f9f9; */
    /* border-color: #aaa; */
  }
  .help-desk-icon {
  }
  .help-desk-item h3 {
    font-size: 15px;
    font-weight: 600;
    /* margin-bottom: 8px; */
  }
  .help-desk-item p {
    font-size: 14px;
    color: #666;
  }

  @media (min-width: 768px) and (max-width: 1199px) {
    .help-desk-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .help-desk {
      padding: 20px;
    }
  }

  /* Mobile: 1 cột */
  @media (max-width: 767px) {
    .help-desk-grid {
      grid-template-columns: 1fr;
    }
    .help-desk {
      padding: 10px;
    }
  }
.close-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    font-size: 32px;
    /* font-weight: bold; */
    color: black;
    cursor: pointer;
    display: none;
  }
  #filter-form {
    padding-right: 10px;
  }

  #sort-by {
    padding: 7px 5px;
    border-radius: 7px;
    border-color: #ccc;
    color: #242424;
    max-height: 35px;
  }

  .sort-and-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .sort-and-pagination .pagination-top .pagination-wrapper {
    margin-top: 0 !important;
  }

  .collection-page {
    display: flex;
    gap: 30px;
    padding: 20px;
  }
  .filters {
    width: 275px !important;
    border-right: 1px solid #ddd;
  }
  .filter-group {
    margin-bottom: 10px;
  }
  .collapsible {
    background: none;
    border: none;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 10px 0;
    position: relative;
  }
  .collapsible::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 10px;
    transition: transform 0.3s;
    width: 10px;
    height: 10px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
  }
  .collapsible.active::after {
    transform: rotate(-225deg);
  }
  .collapsible-content {
    overflow-y: scroll;
    max-height: 0px;
    transition: max-height 0.3s ease-out;
    padding-left: 10px;
  }
  .collapsible-content a {
    display: block;
    margin: 5px 0;
    color: #242424;
    font-size: 14px;
  }
  .products-area {
    flex: 1;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15vw, 1fr));
    /* grid-column: 4; */
    gap: 20px;
  }
  .product-card {
    border: 0px solid #eee;
    padding: 10px;
    text-align: left;
  }

  .product-card:hover img {
    transform: scale(1.03);
    transition: transform 0.3s;
  }

  .product-card img {
    object-fit: cover;
    transition: transform 0.3s;
    width: 100%;
  }

  .product-card__title {
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin: 0 auto;
    height: 50px;
    align-content: center;
    font-size: 14px;
    color: #000000;
  }

  .product-card .product-card__money {
    font-weight: 600;
    font-size: 16px;
    color: #d52a1a;
  }

  .color-swatches {
    margin-top: 10px;
  }
  .color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #ccc;
    margin: 0 3px;
    cursor: pointer;
  }

  .applied-filters {
    /* display: flex; */
    gap: 20px;
    align-items: center;
  }

  .list-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
  }

  .list-filter a {
    display: block;
    /* gap: 10px; */
  }

  .list-filter .list-filter__item {
    display: flex;
    gap: 5px;
    color: #7a7e81;
    align-items: center;
    cursor: pointer;
    box-shadow: rgba(18, 18, 18, 0.298) 0px 0px 0px 1.48399px;
    padding: 0.25rem 2px 0.25rem 1.25rem;
    border-radius: 2.6rem;
    font-size: 12px;
  }

  .list-filter .list-filter__item:hover {
    background-color: #ccc;
  }

  .list-select-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .list-select-box__item {
    padding: 2px;
    border: 1px solid black;
    background-color: white;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
    color: #242424;
  }

  .list-select-box__item:hover {
    background-color: #f0f0f0;
  }

  /* .mobile-list-filter {
      display: none;
    } */

  .mobile-filters {
    display: none;
  }

  #filter-form-mobile {
    display: none;
  }

  @media (max-width: 768px) {
    .sort-and-pagination {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      margin-bottom: 20px;
    }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      /* grid-column: 4; */
      gap: 20px;
    }
    #filter-form-mobile {
      display: block;
      overflow-y: auto;
      padding: 10px;
    }
    .filters {
      display: none;
    }

    .mobile-list-filter {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      height: 100%;
      background: white;
      box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
      z-index: 9999;
      padding: 20px;
      transition: left 0.3s ease;
      overflow-y: scroll;
      padding-bottom: 12.5rem;
    }
    .mobile-list-filter.show {
      left: 0;
    }

    .close-btn {
      display: block;
    }

    .applied-filters {
      display: block;
    }
    .applied-filters h5 {
      font-size: 14px;
    }
    .collection-page {
      padding-top: 0 !important;
    }

    .mobile-filters {
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      gap: 15px;
      /* background-color: #f8f8f8; */
      /* border-bottom: 1px solid #ddd; */
    }

    .mobile-filters__item {
      /* background-color: transparent; */
      border: 1px solid #b5b5b5;
      border-radius: 3px;
      color: #242424;
      padding: 6px;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 10px;
      align-items: center;
      cursor: pointer;
    }
  }
.popular-answers-section {
    padding: 2rem 0;
    background: #ffffff;
  }

  .page-width {
    padding: 40px;
  }

  .section-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    color: #272421;
    font-weight: 500;
  }

  .popular-answers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    {% comment %} align-items: start; {% endcomment %}
  }

  .answer-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    height: 115px;
  }

  .answer-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }

  .answer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    color: #3863a3;
    line-height: 1.125;
  }

  .answer-link {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .answer-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
  }

  .answer-description {
    color: #6b7280;
    line-height: 1.5;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 500;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .page-width {
    padding: 20px;
    }
    .popular-answers-section {
      padding: 2rem 0;
    }

    .popular-answers-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .answer-item {
      padding: 1.25rem;
      height: 100px;
    }

    .section-title {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .answer-title {
      font-size: 12px;
      margin-bottom: 0.625rem;
      color: #3863a3;
      line-height: 1.125;
    }
    .answer-description {
      font-size: 12px;
    }
  }

  @media (max-width: 480px) {
    .page-width {
    padding: 10px;
    }
    .section-title {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .answer-item {
      padding: 1.25rem;
      height: 100px;
    }

    .answer-title {
      font-size: 12px;
      margin-bottom: 0.625rem;
      color: #3863a3;
      line-height: 1.125;
    }

    .answer-description {
      font-size: 12px;
    }
  }

  /* Grid layout for larger screens to match the 3-column design */
  @media (min-width: 769px) {
    .popular-answers-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* Specific styling for 2-row layout */
  @media (min-width: 1024px) {
    .popular-answers-grid {
      grid-template-rows: repeat(2, auto);
      grid-auto-flow: column;
    }
  }