/** Shopify CDN: Minification failed

Line 12:0 Unexpected "{"
Line 13:4 Expected identifier but found "%"
Line 17:4 Expected identifier but found "%"
Line 168:8 Expected identifier but found whitespace
Line 169:8 Unexpected "{"
Line 170:15 Expected ":"
Line 174:6 Expected ":"

**/
{
    % comment %
  }

  All custom CSS in this file will be kept when updating the theme Write your custom CSS below {
    % endcomment %
  }


  :root {
    --Typography-Components-M-font-size: 16px;
    --Typography-Title-M-font-size: 28px;
    --Typography-Title-S-font-size: 24px;
    --Typography-Components-S-font-size: 14px;
    --Typography-Title-S-line-height: 34px;
    --Typography-Components-font-weight-medium: 500;

    --Typography-Title-M-letter-spacing: -0.2px;
    --Typography-Title-S-letter-spacing: 0px;

    --Content-text-primary: #151B1B;
    --Content-text-primary-inverse: #ffffff;
    --Content-Components-Button-secondary-neutral: #DCE0DF;
    --Stroke-Components-Button-secondary-neutral: #DCE0DF;
  }

  @media screen and (max-width: 767px) {
    :root {
      --Typography-Title-M-font-size: 24px;
    }
  }


  /* scp-players-carousel */
  .scp-players-carousel .m-collection-list__controls.m-collection-list__controls--top {
    position: relative;
  }

  .m-section__heading {
    font-size: var(--Typography-Title-M-font-size);
    font-weight: var(--Typography-Components-font-weight-medium);
    letter-spacing: var(--Typography-Title-M-letter-spacing);
  }

  .scp-players-carousel .d-flex-footer .m-section__button {
    margin-top: 0px;
  }

  .scp-players-carousel .d-flex-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    max-width: inherit;
  }

  .scp-players-carousel .m-slider-controls__button {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    color: #1B2525;
  }

  .scp-players-carousel .m-slider-controls__button:hover {
    border: none;
    background-color: #D9D9D9;
    box-shadow: none;
  }

  .scp-players-carousel .m-button--link {
    font-size: var(--Typography-Components-M-font-size);
    color: var(--Content-text-primary);
  }

  .scp-player-card.m-collection-card--inside .m-collection-card__info {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    color: var(--Content-text-primary-inverse);
    margin: 16px;
    padding: 10px;
    border-radius: 12px;
    position: absolute;
  }

  .scp-player-card.m-collection-card--inside .m-collection-card__link {
    color: var(--Content-text-primary-inverse);
    font-size: var(--Typography-Title-S-font-size);
  }

  .scp-player-card.m-collection-card--inside .m-collection-card__info p {
    color: var(--Content-text-primary-inverse);
    font-size: var(--Typography-Components-S-font-size);
    display: block;
  }

  .scp-player-card.m-product-card--show-second-img .m-product-card__media:hover .m-product-card__hover-image {
    transform: translateZ(0);
  }

  .scp-player-card.m-collection-card--inside .m-button {
    width: 20px;
    height: 20px;
    background: none;
    border: 1px solid #fff;
    border-radius: 8px;
    color: #fff;
    padding: 4px;
    align-self: end !important;
    opacity: 0;
  }

  .scp-player-card.m-collection-card--inside:hover .m-button {
    background: transparent;
    opacity: 1;
    box-shadow: none;
  }

  .scp-player-card.m-collection-card--inside .m-collection-card__link span {
    font-weight: var(--Typography-Components-font-weight-medium);
  }

  .scp-player-card.m-collection-card--inside .m-collection-card__link {
    color: var(--Content-text-primary-inverse);
    font-size: 20px;
  }

  .scp-players-carousel.m-collection-list .m-slider-controls {
    margin-top: 0px;
  }

  /* END scp-players-carousel */

  /* Collection card "inside": em mobile o tema usa position:static no .m-collection-card__info (texto por baixo da imagem) e esconde o .m-button. Igualar ao desktop: overlay na imagem. */
  @media screen and (max-width: 767px) {
    .m-collection-card--inside .m-collection-card__info {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      margin-top: 0;
      padding: 16px 16px 18px;
      z-index: 1;
    }

    .m-collection-card--inside .m-button {
      display: inline-flex;
    }
  }


  /* SCP - Featured Grid */
  .featured-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;

    gap: {
        {
        section.settings.grid_gap
      }
    }

    px;
  }

  .featured-grid__item {
    position: relative;
    height: 500px;
    overflow: hidden;
    flex-shrink: 0;
  }

  /* Overlay gradient */
  .featured-grid__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.00) 0%,
        rgba(0, 0, 0, 0.00) 50%,
        rgba(0, 0, 0, 0.30) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .featured-grid__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .wrap-featured-grid__content {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    bottom: 0;
    padding: 30px;
    gap: 15px;
    width: 100%;
  }

  .featured-grid__content {
    color: white;
    z-index: 2;
    transition: transform 0.4s ease;
    max-width: 370px;
  }

  .featured-grid__item:hover .featured-grid__content {
    transform: translateY(-8px);
  }

  .featured-grid__item:hover .featured-grid__cta {
    transform: none;
  }

  .featured-grid__title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 0px;

  }

  .featured-grid__title {
    font-size: var(--Typography-Title-M-font-size);
    font-weight: var(--Typography-Components-font-weight-medium);
    letter-spacing: var(--Typography-Title-M-letter-spacing);
    color: white;
    margin: 0;
  }

  .featured-grid__cta {
    color: white;
    padding: 8px 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--Typography-Components-M-font-size);
    font-weight: var(--Typography-Components-font-weight-medium);
    white-space: nowrap;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .featured-grid__cta:hover {
    background: rgba(128, 128, 128, 0.5);
    border-radius: 8px;
  }

  .featured-grid__cta::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url('/cdn/shop/files/icon-btn-right.svg?v=1762961142');
    background-size: contain;
    background-repeat: no-repeat;
  }


  .featured-grid__description {
    font-size: var(--Typography-Components-M-font-size);
    line-height: 1.5;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease;
    margin: 0;
    margin-top: 3px;
  }

  .featured-grid__item:hover .featured-grid__description {
    opacity: 1;
    max-height: 200px;
  }

  /* Mobile: Remove hover e alinha CTA à esquerda */
  @media screen and (max-width: 992px) {
    .featured-grid__item:hover .featured-grid__content {
      transform: none;
      /* Remove animação */
    }

    .featured-grid__description {
      display: none !important;
      /* Esconde descrição em mobile */
    }

    .featured-grid__cta {
      justify-content: flex-start;
      /* Alinha CTA à esquerda */
      text-align: left;
      margin-left: -10px;
    }

    .featured-grid__item {
      width: 100% !important;
      min-width: 100% !important;
    }

    .featured-grid__title-row {
      flex-direction: column;
      align-items: flex-start;
    }

    .wrap-featured-grid__content {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      gap: 5px;
    }
  }

  /* SCP announcement-bar styles moved to assets/scp-announcement.css (loaded render-blocking from the section) */

  /* SCP - FOOTER */
  .scp-footersocial.m-custom-content__block-social,
  .scp-footernewsletter.m-custom-content__block-newsletter {
    padding: 0px 30px;
  }

  .scp-footersocial .social-profiles,
  .scp-footernewsletter .newsletter-form__title {
    text-align: left;
  }

  .scp-footernewsletter .newsletter-form__title {
    font-size: var(--Typography-Title-M-font-size);
  }

  .scp-footersocial .social-profiles__list {
    justify-content: flex-start;
  }

  .scp-footernewsletter .newsletter-form__title {
    font-size: var(--Typography-Components-S-font-size);
    color: var(--Content-text-primary);
  }

  .scp-footernewsletter .m-newsletter-form__wrapper {
    gap: 20px
  }

  .scp-footernewsletter.m-custom-content__block-newsletter {
    display: flex;
    justify-content: flex-end;
  }

  .scp-footernewsletter.m-custom-content__block-newsletter .m-custom-content__block-inner {
    max-width: 460px;
  }

  .scp-footernewsletter.m-custom-content__block-newsletter .newsletter-form__form {
    margin-top: 5px;
  }

  .scp-footernewsletter .m-newsletter-form__button-inline .m-newsletter-form__button--text {
    font-size: var(--Typography-Components-M-font-size);
    position: relative;
    border: 1px solid #000;
    border-radius: 8px;
  }

  .m-footer .m-footer--middle .m-footer--block-title {
    font-weight: 400;
    font-size: 18px;
    color: #5c6464;
  }

  .m-footer .m-footer--middle .m-footer--block ul li a {
    font-weight: 400;
    font-size: 14px;
    color: #5c6464;
  }

  .m-footer .m-footer--middle .m-link-lists--item {
    line-height: 20px;
    padding: 4px 0px;
  }

  .scp-footer-cta {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    height: 40px;
    gap: 8px;
    margin-top: 15px;
  }

  .scp-footer-cta:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 15px;
    background-image: url('/cdn/shop/files/icon-shop-2.svg?v=1763382762');
    background-size: contain;
    background-repeat: no-repeat;
  }

  .m-footer .m-select-custom--trigger {
    height: 40px;
    font-size: 16px;
    color: #5C6464;
    justify-content: flex-start;
  }

  .m-footer--bottom-right {
    display: none;
  }

  .m-footer__copyright {
    font-size: 14px;
    font-weight: 300;
    color: #5C6464;
  }

  .m-footer--bottom-inner {
    border-top: 1px solid #DCE0DF;
  }

  @media screen and (max-width: 992px) {

    .scp-footersocial.m-custom-content__block-social,
    .scp-footernewsletter.m-custom-content__block-newsletter {
      padding: 0px 10px;
    }

    .scp-footernewsletter.m-custom-content__block-newsletter .m-custom-content__block-inner {
      max-width: 100%;
    }

    .scp-footernewsletter .m-newsletter-form__wrapper {
      flex-direction: column;
    }
  }

  /* END SCP - FOOTER */

  .m-header__desktop.header-sporting .m-menu__link--main {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    transition: background-color .2s ease, color .2s ease;
  }

  .m-header__desktop.header-sporting .m-menu__item:hover>.m-menu__link--main {
    background-color: #f3f4f4;
    border-radius: 8px;
  }

  .m-menu__link--main:after {
    display: none;
  }

  .m-header__desktop.header-sporting .m-menu__item:hover .m-menu__arrow {
    transform: none !important;
  }

  .m-spinner-button {
    position: relative;
  }

  .m-spinner-button .m-spinner-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    pointer-events: none;
  }

  .m-spinner-button .m-svg-icon {
    width: 100%;
    height: 100%;
  }

  div#weglot-switcher-1 {
    display: none;
  }

  @media screen and (max-width: 767px) {
    .m-collection-toolbar--wrapper {
      margin: 0;
      padding: 7px 0;
      transition: transform var(--m-duration-default, .25s) ease;
      border-top: 1px solid rgba(0, 0, 0, 0);
      background: transparent !important;
    }

    .m-switcher-dropdown.m-country-switcher {
      padding-top: 10px;
      padding-bottom: 10px;
      display: none !important;
    }
  }

  @media screen and (max-width: 767px) {
    .m-main-product--info.m\:column.m\:w-full.md\:m\:w-5\/12.m-scroll-trigger.animate--fade-in {
      padding-right: 2% !important;
    }

    .m-main-product--media.m\:column.m\:w-full.md\:m\:w-7\/12 {
      margin-left: 0px !important;
    }
  }

  .tee-field--template .tee-radio-label {
    background: #0000000d;
  }

  .m-product-card--scp .m-product-card__title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    width: 100%;
  }
