/************************/

section#cards,
section#banner, 
section#newIn,
section#basketStore,
section#mostWanted,
section#brands {
    width: 100% !important;
    max-width: 1700px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    box-sizing: border-box;
    margin: var(--spacing-80x) auto;
}

section#mostWanted {
    margin-bottom: 4rem !important;
}

/* Home page  */
/************************/
/* header */
#header {
    position: absolute;
    width: 100%;
    z-index: 3;
}

/************************/
/* buttons */
button,
.button {
    font-weight: 700;
    /* font-size: 1vw;
    line-height: 1.2vw; */
    /* text-transform: uppercase; */
    padding: 0.65vw 1.3vw;
}

/************************/
/* Slider */
/* section 1 */
/************************/
#slider {
    --swiper-pagination-bullet-inactive-opacity: 0.3;
    --swiper-pagination-bullet-inactive-color: var(--white);
    overflow: hidden;
}

#slider .image-box {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#slider h2 {
    text-transform: uppercase;
}

/* #slider .button.white {
    background-color: rgba(0, 0, 0, 0.2);
} */
/* 
#slider .button.black {
    background-color: rgba(255, 255, 255, 0.2);
} */

/* #slider .button.white:hover {
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--black);
} */

/* #slider .button.black:hover {
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
} */

#slider #home-slider .swiper-slide > h2,
#slider #home-slider .swiper-slide > .button-box {
    z-index: 2;
}

#slider #home-slider .swiper-slide .overlay {
    z-index: 1;
}

#slider #home-slider .swiper-slide > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 0;
}

#slider .button-box {
    margin-top: var(--spacing-12);
    display: inline-block;
    line-height: 3rem;
    position: relative;
    z-index: 1;
}

#slider .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgba(54, 54, 54, 1) 0%, rgba(0, 0, 0, 0) 17%, rgba(0, 0, 0, 0) 83%, rgba(54, 54, 54, 1) 100%);
    mix-blend-mode: multiply;
}

#slider .swiper-wrapper {
    --swiper-wrapper-transition-timing-function: cubic-bezier(0.12, 0.3, 0.11, 0.82);
}

/************************/
/* Letter slider  */
/************************/
#letterSlider {
    color: var(--colors-other-colors-white);
    background-color: var(--colors-gray-gray-60);

    font-weight: 400;
    font-size: 2rem;
    line-height: 2.5rem;
    border-bottom: 3px solid var(--white2);
    /* text-transform: uppercase; */
}

.marquee .list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    margin-left: 0;
}

.marquee .list__item {
    flex-grow: 0;
    flex-shrink: 0;
    padding: 0 15px;
    text-align: center;
    display: inline-block;
    white-space: nowrap;

    font-size: var(--font-size-heading-small, 20px);
    font-weight: var(--font-weight-bold, 700);
    line-height: 130%; /* 26px */
    letter-spacing: -0.3px;
}

/************************/
/* Cards */
/* section 2 */
/************************/
#cards {
    position: relative;
}

#cards svg {
    position: absolute;
    z-index: 0;
}

#cards h2 {
    text-align: center;
}

.cards-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: calc(100% - 12rem);
    max-width: 1700px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: unset !important;
    gap: auto;
}

@media (max-width: 767px) {
    .cards-box {
        width: calc(100% - 1rem);
    }
}


.category-card {
    display: flex;

    flex-direction: column;
    overflow: hidden;
    width: 31%;
    min-width: 300px;
}

.category-card img {
    transition: all ease .5s;
    aspect-ratio: 1.8 / 1;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: var(--white);
}

.category-card span {
    color: var(--black);
    background: var(--white);
    font-weight: 700;
    width: 100%;
    text-align: center;
    position: relative;
    display: block;
}

/************************/
/* Banner */
/* section 3 */
/************************/
#banner {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

#banner h2 {
    margin-top: var(--spacing-12x);
    margin-bottom: var(--spacing-12x);
    text-transform: uppercase;

    font-size: 120px;
    line-height: 100%;
}

#banner .text-box {
    align-self: center;
}

#banner .text-box p {
    font-family: "SF Pro Display";
    text-transform: uppercase;
    font-weight: 600;
}

/************************/
/* Product carousel */
/************************/
.product-slider .swiper-slide {
    box-shadow: 0px 4px 64px -16px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.product .colours {

    font-weight: 400;
}

.product-slider .material-icons {
    display: none;
}

.more {
    display: inline-block;
    margin: 0 auto;
}

.product-slider [class^="swiper-button"] {
    background: var(--white);
    padding: 0 6px;
    box-shadow: 0px 0px 44.4818px -6.90234px rgba(0, 0, 0, 0.16);
}

.more {
    display: none;
}

/************************/
/* new in & mostWanted*/
/************************/
/* #mostWanted {
    background-color: var(--white1);
} */

/************************/
/* Banner And Slider */
/************************/

.product-slider {
    width: calc(100% - 2rem);
    max-width: 2000px;
}
#bannerTemporada {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-position: center center;
}

#bannerTemporada h2 {
    text-transform: uppercase;
}

#bannerTemporada p {
    text-transform: uppercase;
}

#bannerTemporada .text-box {
    background: var(--black1);
}

.banner .links {
    display: flex;
    gap: 1rem;
}

#featuredProducts {
    background: var(--white2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

#featuredProducts .product-title {
    text-align: center;
}

#featuredProducts .product-title a {
    color: var(--black1);
    text-decoration: none;
    text-transform: uppercase;
}

#featuredProducts .wishlist-button-add {
    display: none;
}

#featuredProducts .thumbnail-container {
    text-align: center;
}

#featured-slider {
    width: 100%;
    overflow: hidden;
    background: var(--white);
}

#featured-slider [class^="swiper-button"] svg {
    color: var(--black1);
}

/************************/
/* basketball Store */
/************************/

#basketStore .col:first-of-type {
    display: flex;
    align-items: center;
}

#basketStore .imageBox {
    background-size: cover;
    background-position: center;
}

#basketStore h3 {
    color: var(--black1);
}

/* #basketStore p,
#basketStore a {

    color: var(--black1);
} */

/* #basketStore a {
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: none;
} */

/************************/
/* Encuentra Tu Zapa */
/************************/
#encuentraTuZapa .textBox {
    background: var(--black1);
    color: var(--white);
}

#encuentraTuZapa .col:first-of-type {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#encuentraTuZapa .col:last-of-type {
    background-color: var(--red);
}

#encuentraTuZapa .imageBox {
    background-size: 65%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

#encuentraTuZapa .imageBox img {
    position: relative;
    width: 100%;
    z-index: 1;
}

#encuentraTuZapa h2 {
    margin-bottom: 14px;
    text-transform: uppercase;
}

#encuentraTuZapa a {
    pointer-events: none;
    text-decoration: none;
    text-transform: uppercase;
}

/*****************/
/* only for you */
/*****************/
#selectedForYou {
    background-color: var(--white2);
    --swiper-navigation-color: var(--black2);
    position: relative;
    z-index: 1;
}

#crosSellingSlider .product {
    background: var(--white);
    border: 2px solid var(--black1);
}

#crosSellingSlider .overLay {
    border: 2px solid var(--black1);
    left: -2px;
    top: -2px;
    bottom: -2px;
}

#selectedForYou .arrows,
#community .arrows {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
}

#selectedForYou h2 {
    font-family: "Round8";
}

/*********************************
    Community
**********************************/
#community {
    background-color: var(--grey3);
    --swiper-navigation-color: var(--black2);
    --swiper-navigation-sides-offset: 0px;
}

#community h2 {
    font-family: "Round8";
    text-transform: uppercase;
}

#selectedForYou .sliderBox,
#community .sliderBox {
    position: relative;
}

#community .item-rrss p {

    color: var(--black1);
}

#community .item-rrss img {
    width: 100%;
}

#community>p {
    text-align: center;

    font-weight: 400;
}

#selectedForYou .arrows svg,
#community .arrows svg {
    width: 2rem;
    height: 2rem;
}

body {
    overflow-x: hidden;
}

#link-cms-page-1-2 {
    max-width: 5rem;
}

/* svg animation */


@keyframes dash {
    0% {
        stroke-dashoffset: 3258.751708984375px;
        stroke-dasharray: 3258.751708984375px;
    }

    100% {
        stroke-dashoffset: 6517.50341796875px;
        stroke-dasharray: 3258.751708984375px;
    }
}

#cards.visible .draw {
    stroke-dashoffset: 1000;
    animation-delay: 1.2s;
    animation: dash 2s ease-in-out;
}