/* Front page sections. Keep this file focused on homepage-only UI. */
.hero-slider {
    width: 100%;
    /*height: 100vh;*/
    position: relative;
}

.hero-slide {
    position: relative;
    width: 100%;
    /*height: 100vh;*/
    overflow: hidden;
}

.hero-video,
.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    z-index: 2;
}

.hero-btn {
    padding: 14px 36px;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 60px;

    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.hero-btn:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}
.hero-btn {
    transform: translateY(0);
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
}
.swiper-pagination-bullet {
    background: var(--color-white);
    opacity: .4;
}
.swiper-pagination-bullet {
    height: 4px;              /* control thickness here */
    aspect-ratio: 16 / 1;     /* width = 16 × height */
    border-radius: 2px;
}
.swiper-pagination-bullet {
    background: rgba(255,255,255,.4);
}

.swiper-pagination-bullet-active {
    background: var(--color-white);
}
.swiper-pagination-bullet-active {
    opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet {
    width: 64px;
    height: 4px;
    border-radius: 2px;
}
.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-white);
}

.hero-slider,
.hero-slide {
    height: calc(100vh - var(--header-height));
}

@media (min-width: 1200px) {
    .hero-btn {
        font-size: 14px;
        padding: 14px 36px;
    }
}

@media (max-width: 991px) {
    .hero-btn {
        padding: 12px 28px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .hero-slider,
    .hero-slide {
        height: calc(100vh - var(--header-height));
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 12px;
    }
}
/* SECTION */
.promo-grid-section {
    padding: 80px 0;
}

.promo-section-title {
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}

/* GRID */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* CARD */
.promo-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transform: scale(1);
    transition: transform .35s ease;
}

.promo-card-image,
.editorial-card-image,
.shop-sport-current-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-card-image,
.editorial-card-image {
    position: absolute;
    inset: 0;
}

.promo-card:hover {
    transform: scale(1.05);
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.35) 25%,
      rgba(0, 0, 0, 0.15) 50%,
      rgba(0, 0, 0, 0.02) 75%,
      rgba(0, 0, 0, 0) 100%
    );
}

.promo-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: var(--color-white);
    z-index: 1;
}

.promo-content h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.promo-content span {
    font-size: 13px;
    opacity: .85;
    text-transform: uppercase;
}
/* Tablet */
@media (max-width: 991px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-section-title {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .promo-grid-section {
        padding: 48px 0;
    }

    .promo-card {
        aspect-ratio: 4 / 3;
    }
}
.editorial-grid-section {
    padding: 96px 0;
}

.editorial-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.editorial-header h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.editorial-header p {
    font-size: 14px;
    color: var(--color-text-soft);
}

/* GRID */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* CARD */
.editorial-card {
    position: relative;
    height: clamp(320px, 50vh, 520px);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
}

.editorial-card:hover {
    /*transform: scale(1.05);*/
}

.editorial-overlay {
    position: absolute;
    inset: 0;
    height: 50%;
    top: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .12) 35%, rgba(0, 0, 0, .05) 60%, rgba(0, 0, 0, 0) 100%);
}

.editorial-content {
    position: absolute;
    bottom: 28px;
    left: 24px;
    right: 24px;
    color: var(--color-white);
    z-index: 1;
}

.editorial-tag {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    opacity: .85;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.editorial-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.editorial-btn {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid var(--color-white);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
/* Laptop */
@media (max-width: 1199px) {
    .editorial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 991px) {
    .editorial-header h2 {
        font-size: 26px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .editorial-grid-section {
        padding: 56px 0;
    }

    .editorial-card {
        /*aspect-ratio: 4 / 3;*/
    }
}
.shop-sport-section {
    padding: 96px 0;
}

.shop-sport-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    align-items: stretch;
}

/* LEFT */
.shop-sport-left h2 {
    margin-bottom: 32px;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}

.shop-sport-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-sport-list li {
    margin-bottom: 10px;
}

.shop-sport-link {
    display: block;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-black);
    text-decoration: none;
    border-radius: 6px;
    transition: background .2s ease;
}

.shop-sport-link.active,
.shop-sport-link:hover {
    background: var(--color-white);
}

/* RIGHT */
.shop-sport-right {
    position: relative;
}

.shop-sport-image {
    width: 100%;
    height: 100%;
    min-height: 640px; /* desktop requirement */
    border-radius: 12px;
    overflow: hidden;
}
.shop-sport-section {
    background: var(--color-surface);
    padding: 96px 0;
}
/* Tablet */
@media (max-width: 991px) {
    .shop-sport-wrap {
        grid-template-columns: 1fr;
    }

    .shop-sport-image {
        min-height: 360px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .shop-sport-section {
        padding: 56px 0;
    }

    .shop-sport-left h2 {
        font-size: 22px;
    }

    .shop-sport-link {
        font-size: 13px;
        padding: 12px 14px;
    }

    .shop-sport-image {
        min-height: 280px;
    }
}

.front-products-section {
    padding: 88px 0;
    background: var(--color-white);
}

.front-section-header {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.front-section-header span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--color-brand-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.front-section-header h2 {
    margin: 0 0 12px;
    color: var(--color-text);
    font-size: clamp(28px, 4vw, 46px);
    line-height: .95;
    letter-spacing: -.03em;
}

.front-section-header p {
    margin: 0 auto;
    max-width: 620px;
    color: var(--color-text-soft);
    font-size: 15px;
    line-height: 1.55;
}

.front-products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 1100px) {
    .front-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .front-products-section {
        padding: 56px 0;
    }

    .front-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}
.text-section {
    padding: 60px 0;
}

.text-section-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.text-section-content {
    max-width: 800px;
    line-height: 1.7;
    font-size: 16px;
    color: var(--color-text-muted);
}

@media (max-width: 767px) {
    .text-section {
        padding: 40px 0;
    }
}

