/* Home page components */

.products-tabs[v-cloak] {
    display: none;
}
.home-page .home-page-section {
    margin: 30px 0;
}

/* slide product */

.main-slider.row {
    position: relative;
    height: calc(100vh - 195px);
    min-height: 550px;
    background-color: var(--bs-secondary-bg);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.main-slider.row .swiper-container {
    height: 100%;
}
.main-slider .swiper-slide.swiper-slide-active {
    z-index: 2;
}
.slider-background {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
}
.product-box-slide {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    padding: 0 5%;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.product-box-slide .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    position: relative;
}
.product-box-slide .attr-container tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.product-box-slide .attr-container tr td .attr-name {
    color: var(--modern-muted);
    font-size: 16px;
    font-weight: 300;
}
.product-box-slide .attr-container tr td:first-child {
    width: 100%;
    margin: 0 0 5px 0;
}
.product-box-slide .attr-container tr td .btn-light.btn {
    border: 1px solid var(--modern-border);
    color: var(--modern-text);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.product-box-slide .attr-container tr td .btn-light.btn:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.product-box-slide .sale-label, .product-box-slide .flag-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    writing-mode: vertical-lr;
    z-index: 3;
}
.product-box-slide .sale-label + .flag-label {
    left: 45px;
}
.product-box-slide .sale-label span, .product-box-slide .flag-label span {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--modern-accent);
    color: var(--modern-accent-ink);
    font-size: 22px;
    font-weight: 300;
}
.product-box-slide .sale-label span::after, .product-box-slide .flag-label span::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    border-top: 0;
    border-left: 17px solid var(--modern-accent);
    border-right: 17px solid var(--modern-accent);
    border-bottom: 8px solid transparent;
}
.product-box-slide .flag-label span.danger {
    background: #dc3545;
}
.product-box-slide .flag-label span.danger::after {
    border-left-color: #dc3545;
    border-right-color: #dc3545;
}
.product-box-slide .flag-label span.purple {
    background: #563d7c;
}
.product-box-slide .flag-label span.purple::after {
    border-left-color: #563d7c;
    border-right-color: #563d7c;
}
.product-box-slide .content .title {
    z-index: 3;
}
.product-box-slide .content .title a {
    color: var(--bs-body-color);
    font-size: 48px;
    line-height: 1;
    font-weight: 900;
}
.product-box-slide .content .desc {
    color: var(--modern-muted);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 15px 0 15px 0;
    max-height: 60px;
    overflow: hidden;
}
.product-box-slide .spec-container table {
    min-width: 220px;
}
.product-box-slide .spec-container table tr td {
    padding: 10px;
    border: 1px dashed var(--modern-border);
}
.product-box-slide .spec-container table tr td .spec-name {
    color: var(--modern-muted);
    font-size: 16px;
    font-weight: 300;
}
.product-box-slide .spec-container table tr td .spec-value {
    color: var(--modern-text);
    font-size: 16px;
    font-weight: 500;
}
.product-box-slide .color-container .color {
    width: 32px;
    height: 32px;
}
.product-box-slide .prices {
    display: inline-flex;
    align-items: flex-end;
    flex-wrap: wrap;
    margin: 30px 0;
    font-family: 'Poppins', sans-serif;
}
.product-box-slide .prices .actual-price {
    color: var(--modern-accent);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}
.product-box-slide .prices .old-price {
    color: var(--modern-muted);
    font-size: 20px;
    text-decoration: line-through;
} 
.product-box-slide .button .add-to-cart-button.btn.btn-outline-secondary {
    padding: 15px 35px;
    border-width: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--modern-accent-ink);
    background-color: var(--modern-accent);
    border-color: var(--modern-accent);
}
.product-box-slide .button .add-to-cart-button.btn.btn-outline-secondary:hover {
    color: var(--modern-accent-ink);
    background-color: var(--modern-accent-hover);
    border: 2px solid var(--modern-accent-hover);
}
.product-box-slide .picture-outer {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-box-slide .picture-outer img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: auto;
    height: auto;
    max-width: 100%;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.product-box-slide .picture-outer .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    visibility: hidden;
}
.product-box-slide .picture-outer:hover .hover-img {
    opacity: 1;
    visibility: visible;
}
.product-box-slide .picture-outer:hover .hover-img + .main-product-img {
    opacity: 0;
    visibility: hidden;
}
.product-box-slide .img-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /* opacity: .2; */
    z-index: -1;
}
.product-box-slide .more-circle-container {
    position: absolute;
    bottom: 5%;
    right: 30px;
    z-index: 3;
}
.product-box-slide .more-circle {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    background-color: var(--modern-accent);
    border-radius: 100%;
}
.product-box-slide .more-circle::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    box-shadow: 0 0 0 3px var(--modern-accent-ink);
    border-radius: 100%;
    z-index: -1;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.product-box-slide .more-circle:hover::before {
    box-shadow: 0 0 0 8px var(--modern-accent-ink);
}
.product-box-slide .more-circle a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    backface-visibility: hidden;
    line-height: 1;
}
.product-box-slide .more-circle a span:first-child {
    font-size: 22px;
    font-weight: 700;
}
.product-box-slide .more-circle a span:last-child {
    font-size: 16px;
    font-weight: 300;
}

/* products tabs */

.products-tabs .nav-tabs {
    position: relative;
    justify-content: flex-start;
    border: 0;
}
.products-tabs .nav-tabs li:first-child::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,.1);
    z-index: -1;
}
.products-tabs .nav-tabs li:first-child::after {
    /* content: ""; */
    position: absolute;
    bottom: 0;
    right: 0px;
    width: 50%;
    height: 1px;
    background: linear-gradient(to right, #555, transparent);
    z-index: -1;
}
.products-tabs .nav-tabs .nav-link {
	position: relative;
	margin: 0 -1px 1px 0;
	padding: 16px 26px;
	font-family: 'Poppins', sans-serif;
	color: var(--bs-body-color);
	background-color: transparent;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	border: 1px solid rgba(0,0,0,.1);
	border-radius: 0;
	border-bottom: 0;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.products-tabs .nav-tabs .nav-link.active {
	color: #fff;
	background-color: transparent;
	border-color: var(--modern-accent);
}
.products-tabs .nav-tabs .nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: -1px;
	width: calc(100% + 2px);
	height: 100%;
	-webkit-transition: transform .3s cubic-bezier(.8,0,.2,1);
	transition: transform .3s cubic-bezier(.8,0,.2,1);
	-webkit-transform: scale3d(0,1,1);
	transform: scale3d(0,1,1);
	transform-origin: 100% 50%;
	border-top: 0;
	background-color: var(--modern-accent);
	z-index: -1;
}
.products-tabs .nav-tabs .nav-link.active::after {
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
	transform-origin: 0% 50%;
}
.products-tabs-content {
	margin: 15px 0;
}
.products-tabs-content .section {
    padding: 0;
}

/* brands */

 .brands-container {
     padding: 0 10%;
     margin: 0 -15px;
     background-color: var(--bs-body-bg);
}
 .brands-container .swiper-wrapper {
     align-items: center;
     padding: 0 15%;
}
 .brands-container .swiper-slide {
     padding: 30px;
     text-align: center;
}
 .brands-container .swiper-slide a img {
     width: auto;
     height: auto;
     max-width: 100%;
     backface-visibility: hidden;
     filter: opacity(0.5);
     -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}
 .brands-container .swiper-slide a:hover img {
     filter: opacity(1);
}

/* parallax banner */

.parallax-banner {
    position: relative;
    width: calc(100% + 30px);
    margin: 30px -15px;
    height: 400px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 10%;
    background: var(--bs-secondary-bg);
    overflow: hidden;
}
.parallax-banner .content {
    justify-content: center;
    align-items: center;
}
.parallax-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    border: 15px solid var(--modern-accent-ink);
    background: var(--modern-panel);
    border-radius: 50%;
    z-index: -1;
}
.parallax-banner .content, .parallax-banner .content .title {
    display: flex;
    flex-direction: column;
}
.parallax-banner .content .title {
    margin: 0 0 15px 0;
}
.parallax-banner .content .title .up {
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
}
.parallax-banner .content .title .down {
    color: var(--modern-accent);
    font-size: 20px;
    font-weight: 700;
}
.parallax-banner .content .promo {
    display: inline-flex;
    align-items: center;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}
.parallax-banner .content .promo .number {
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
}
.parallax-banner .content .promo .off {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.parallax-banner .content .promo .off div:first-child {
    font-size: 31px;
    font-weight: 700;
    line-height: 1;
}
.parallax-banner .content .promo .off div:last-child {
    font-size: 36px;
    font-weight: 300;
}
.parallax-banner img {
    position: absolute;
    right: 0;
    left: unset !important;
    top: unset !important;
    bottom: unset;
    max-width: 600px;
}
.parallax-banner .img-container {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 400px;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.parallax-banner:hover .img-container {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
} 

/* banners */

.home-page-banner {
	position: relative;
	top: -118px;
	padding: 15px 7.5px;
	background: var(--bs-body-bg);
	z-index: 15;
}
.home-page-banner + * {
	margin-top: -118px;
}
.banner-col {
	padding: 0 7.5px;
}
.banner-content {
	display: flex;
	position: relative;
	cursor: pointer;
}
.banner-content .text {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 20px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.banner-content .text .title {
	font-size: 18px;
	font-weight: 500;
	line-height: 20px;
	margin: 0 0 5px 0;
}
.banner-content .text .content {
	color: var(--modern-muted);
	font-size: 14px;
	font-weight: 500;
}
.banner-content img {
	max-width: 100%;
    width: auto;
    height: auto;
}
.banner-content .text::before, .banner-content .text::after {
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	z-index: 3;
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	box-sizing: border-box;
	-webkit-transform: scale(0);
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.banner-content .text::before {
	border-bottom: 2px solid #ddd;
	border-left: 2px solid #ddd;
	-webkit-transform-origin: 0 100%;
}
.banner-content .text::after {
	border-top: 2px solid #ddd;
	border-right: 2px solid #ddd;
	-webkit-transform-origin: 100% 0%;
}
.banner-content .text:hover::after, .banner-content .text:hover::before {
	-webkit-transform: scale(1);
	transform: scale(1);
}

/* home page section */

.home-page-section:first-of-type {
    margin: 30px 0 30px 0;
}
.home-page-section .b-skeleton {
    border-radius: 4px;
}

/* home page categories */

.cat-gallery {
    display: grid;
    grid-template-columns: 40% 30% 30%;
    grid-gap: 10px;
    width: 100%;
    overflow: hidden;
}
.cat-gallery .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cat-gallery .gallery-item {
    position: relative;
}
.cat-gallery .gallery-item h3 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    margin: 0;
    z-index: 2;
}
.cat-gallery .gallery-item:nth-child(4n-3) {
    grid-column: 1;
    grid-row: 1/3;
}
.cat-gallery .gallery-item:nth-child(4n-2) {
    grid-column: 2;
    grid-row: 1;
}
.cat-gallery .gallery-item:nth-child(4n-1) {
    grid-column: 2;
    grid-row: 2;
}
.cat-gallery .gallery-item:nth-child(4n) {
    grid-column: 3;
    grid-row: 1/3;
}

/* category item */

.category-item .title {
    display: block;
    position: relative;
    height: 100%;
    margin: 10px 0 0 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.category-item::before {
    content: "";
    display: block;
    padding-top: 70%;
}
.category-item img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    margin: auto 0 40px 0;
}


/* category manufacturer featured products */

.featured-product-grid {
    position: relative;
}
@media (min-width: 992px) {
    .main-slider.row {
        margin-top: -15px;
        margin-left: 0;
        margin-right: 0;
    }
    .product-box-slide {
        padding-left: calc((100% - 950px) / 2 + 237.5px);
        padding-right: 0;
    }
    .home-page.toggled .product-box-slide {
        padding-left: calc((100% - 985px) / 2);
        padding-right: calc((100% - 985px) / 2);
    }
}
@media (min-width: 1200px) {
    .main-slider.row {
        margin-top: -15px;
        margin-left: 0;
        margin-right: 0;
    }
    .product-box-slide {
        padding-left: calc((100% - 1130px) / 2 + 282.5px);
        padding-right: 0;
    }
    .home-page.toggled .product-box-slide {
        padding-left: calc((100% - 1165px) / 2);
        padding-right: calc((100% - 1165px) / 2);
    }
}
@media (min-width: 1399px) {
    .main-slider.row {
        margin-top: -15px;
        margin-left: 0;
        margin-right: 0;
    }
    .product-box-slide {
        padding-left: calc((100% - 1330px) / 2 + 332.5px);
        padding-right: 0;
    }
    .home-page.toggled .product-box-slide {
        padding-left: calc((100% - 1365px) / 2);
        padding-right: calc((100% - 1365px) / 2);
    }
}
@media (min-width: 1680px) {
    .main-slider.row {
        margin-top: -15px;
        margin-left: 0;
        margin-right: 0;
    }
    .product-box-slide {
        padding-left: calc((100% - 1430px) / 2 + 357.5px);
        padding-right: 0;
    }
    .home-page.toggled .product-box-slide {
        padding-left: calc((100% - 1465px) / 2);
        padding-right: calc((100% - 1465px) / 2);
    }
}
@media (max-width: 1399px) {
    .product-box-slide .spec-container table tr td {
        padding: 5px;
    }
    .product-box-slide .content .title a {
        font-size: 36px;
    }
    .product-box-slide .content .desc {
        max-height: 50px;
    }
    .product-box-slide .prices {
        margin: 15px 0;
    }
    .product-box-slide .prices .actual-price {
        font-size: 34px;
    }
}
@media (max-width: 991px) {
    .home-page-section {
        overflow: hidden;
    }
    .category-container:nth-child(odd) .category-image {
        order: 1;
        margin: 0 0 15px 0;
    }
    .category-container:nth-child(odd) .category-product {
        order: 2
    }
    .home-page-banner + * {
        margin-top: 0;
    }
    #BusflyCarousel .carousel-indicators {
        bottom: 0;
    }
    .section {
        padding: 15px 0;
    }
    .gallery-item h3 {
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    .home-page .home-page-section {
        margin: 15px 0;
    }
    .main-slider .animate__animated {
        animation: none;
    }
    #BusflyCarousel .h1 {
        font-size: 24px;
    }
    #BusflyCarousel .h5 {
        font-size: 16px;
    }
    #BusflyCarousel .btn {
        padding: 5px 10px;
        font-size: 14px;
    }
    .cat-gallery {
        display: inline-flex;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .cat-gallery .gallery-item {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .featured-product-grid .category-container .category-product {
        order: 2;
    }
    .featured-product-grid .category-container .category-image {
        order: 1;
        margin: 0 0 15px 0;
    }
    .products-tabs .nav-tabs {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        white-space: nowrap;
    }
    .products-tabs .nav-tabs .nav-link {
        padding: 10px 14px;
        font-size: 16px;
    }
    .generalTitle span::before {
        top: 18px;
    }
    .product-box-slide {
        padding: 0;
    }
    .product-box-slide .picture-outer {
        height: 300px;
        text-align: center;
    }
    .product-box-slide .picture-outer img {
        max-height: unset;
        max-width: 300px;
    }
    .product-box-slide .content {
        padding: 0 0 15px 0;
        align-items: center;
    }
    .product-box-slide .sale-label, .product-box-slide .flag-label {
        position: fixed;
        top: 15px;
        left: 15px;
    }
    .product-box-slide .sale-label + .flag-label {
        left: 55px;
    }
    .product-box-slide .content .sale-label + .flag-label + .title {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .product-box-slide .content .title a {
        font-size: 26px;
    }
    .product-box-slide .content .desc {
        display: none;
    }
    .product-box-slide .prices {
        margin: 25px 0 15px 0;
    }
    .main-slider.row .swiper-container-horizontal > .swiper-pagination-bullets {
        bottom: 15px;
    }
    .product-box-slide .button .add-to-cart-button.btn.btn-outline-secondary {
        margin: 0 0 40px 0;
    } 
}


/* Gym storefront */
body.theme-modern.gym-home-page,
body.theme-modern.gym-home-page .main-container {
    background: var(--modern-black);
}
body.theme-modern.gym-home-page #content.right-container {
    max-width: 100%;
    padding: 0;
    background: var(--modern-black);
}
.gym-home {
    --gym-black: var(--modern-black);
    --gym-panel: var(--modern-panel);
    --gym-panel-soft: var(--modern-panel-soft);
    --gym-line: var(--modern-border);
    --gym-white: var(--modern-text);
    --gym-muted: var(--modern-muted);
    --gym-lime: var(--modern-accent);
    --gym-ink: var(--modern-accent-ink);
    width: 100%;
    color: var(--gym-white);
    background: var(--gym-black);
}
.gym-home #BusflyCarousel,
.gym-home .main-slider {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
}
.gym-frame,
.gym-hero__inner,
.gym-trust:not(:has(.gym-frame)),
.gym-programs:not(:has(.gym-frame)),
.gym-shop:not(:has(.gym-frame)),
#HomePageProducts:not(:has(.gym-frame)) {
    width: 100%;
    max-width: calc(var(--modern-content-width) + (var(--modern-page-gutter) * 2));
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--modern-page-gutter);
    padding-left: var(--modern-page-gutter);
    box-sizing: border-box;
}

.gym-hero {
    position: relative;
    width: 100%;
    min-height: 680px;
    overflow: hidden;
    color: #fff;
    background: #080a08 url('../../images/gym/hero-training.png') center / cover no-repeat;
    isolation: isolate;
}
.gym-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 3, 2, .98) 0%, rgba(2, 3, 2, .88) 32%, rgba(2, 3, 2, .22) 70%, rgba(2, 3, 2, .08) 100%);
}
.gym-hero::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--modern-page-gutter) - 8px);
    width: 5px;
    background: var(--gym-lime);
}
.gym-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 680px;
    padding-top: clamp(72px, 8vw, 120px);
    padding-bottom: clamp(72px, 8vw, 120px);
}
.gym-hero__content { max-width: 660px; }
.gym-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gym-lime);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.gym-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}
.gym-hero h1 {
    max-width: 650px;
    margin: 18px 0 22px;
    color: #fff;
    font-size: clamp(44px, 4.6vw, 72px);
    font-weight: 900;
    line-height: .94;
    letter-spacing: -.05em;
    text-transform: uppercase;
}
.gym-hero__content > p {
    max-width: 560px;
    margin: 0;
    color: #c3c8bf;
    font-size: 15px;
    line-height: 1.75;
}
.gym-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}
.gym-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-height: 46px;
    padding: 12px 21px;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.gym-btn:hover { transform: translateY(-2px); }
.gym-btn--primary,
.gym-btn--primary:visited {
    color: #070807 !important;
    border-color: var(--gym-lime);
    background: var(--gym-lime);
}
.gym-btn--primary:hover {
    color: #070807 !important;
    border-color: #fff;
    background: #fff;
}
.gym-btn--secondary,
.gym-btn--secondary:visited {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .35);
    background: rgba(0, 0, 0, .35);
}
.gym-btn--secondary:hover {
    color: #fff !important;
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

.gym-trust {
    border-bottom: 1px solid var(--gym-line);
}
.gym-trust__row,
.gym-trust:not(:has(.gym-frame)) {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gym-trust__item,
.gym-trust:not(:has(.gym-frame)) > div {
    display: flex;
    align-items: center;
    min-height: 76px;
    padding: 20px 0;
    border-right: 1px solid var(--gym-line);
}
.gym-trust__item:last-child,
.gym-trust:not(:has(.gym-frame)) > div:last-child { border-right: 0; }
.gym-trust__item:not(:first-child),
.gym-trust:not(:has(.gym-frame)) > div:not(:first-child) { padding-left: 26px; }
.gym-trust__item:not(:last-child),
.gym-trust:not(:has(.gym-frame)) > div:not(:last-child) { padding-right: 26px; }
.gym-trust__item span,
.gym-trust:not(:has(.gym-frame)) > div span {
    margin-right: 18px;
    color: var(--gym-lime);
    font-size: 12px;
    font-weight: 900;
}
.gym-trust__item p,
.gym-trust:not(:has(.gym-frame)) > div p {
    margin: 0;
    color: var(--gym-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
}

.gym-section-heading { margin: 0 0 22px; }
.gym-section-heading h2 {
    margin: 8px 0 0;
    color: var(--gym-white);
    font-size: clamp(22px, 2.1vw, 28px);
    font-weight: 900;
    letter-spacing: -.03em;
    text-transform: uppercase;
}
.gym-section-heading p {
    margin: 0;
    color: var(--gym-muted);
    font-size: 14px;
    line-height: 1.65;
}
.gym-section-heading--split {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 32px;
}
.gym-section-heading__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.gym-section-more {
    color: var(--gym-lime);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-decoration: none !important;
    text-transform: uppercase;
}
.gym-section-more:hover { color: var(--gym-white); }

.gym-highlights {
    padding-top: 64px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gym-line);
}
.gym-highlights__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.gym-highlight {
    min-height: 0;
    padding: 18px 20px;
    border: 1px solid var(--gym-line);
    background: var(--gym-panel);
}
.gym-highlight span {
    display: block;
    margin-bottom: 12px;
    color: var(--gym-lime);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
}
.gym-highlight h3 {
    margin: 0 0 8px;
    color: var(--gym-white);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.02em;
    text-transform: uppercase;
}
.gym-highlight p {
    margin: 0;
    color: var(--gym-muted);
    font-size: 14px;
    line-height: 1.65;
}

.gym-shop__memberships { margin-bottom: 48px; }

.gym-programs { padding-top: 72px; padding-bottom: 56px; }
.gym-programs__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: clamp(40px, 7vw, 110px);
    align-items: end;
    margin: 0 0 48px;
}
.gym-programs__heading h2 {
    max-width: 760px;
    margin: 16px 0 0;
    font-size: clamp(36px, 3.8vw, 54px);
    line-height: .96;
}
.gym-programs__heading p {
    max-width: 440px;
    margin: 0 0 5px;
    padding-left: 24px;
    border-left: 2px solid var(--gym-lime);
    font-size: 14px;
    line-height: 1.75;
}
.gym-program-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.62fr) minmax(330px, .78fr);
    grid-template-rows: repeat(2, minmax(240px, 1fr));
    gap: 12px;
}
.gym-program-card {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    color: #fff;
    background: #101210;
    text-decoration: none;
    padding: 0;
    border: 0;
}
.gym-program-card--1,
.gym-program-item--1 { grid-row: 1 / span 2; }
.gym-program-item {
    position: relative;
    min-width: 0;
    min-height: 0;
}
.gym-program-item .gym-program-card { height: 100%; }
.gym-program-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 3, 2, .04) 25%, rgba(2, 3, 2, .9) 100%);
}
.gym-program-card__image,
.gym-program-card .gallery-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    filter: saturate(.78) contrast(1.08);
    transition: transform .5s ease, opacity .5s ease;
}
.gym-program-card--1 .gym-program-card__image,
.gym-program-card--1 .gallery-img { object-position: center 32%; }
.gym-program-card--2 .gym-program-card__image,
.gym-program-card--2 .gallery-img { object-position: center 42%; }
.gym-program-card--3 .gym-program-card__image,
.gym-program-card--3 .gallery-img { object-position: center 38%; }
.gym-program-card:hover .gym-program-card__image,
.gym-program-card:hover .gallery-img { opacity: .92; transform: scale(1.045); }
.gym-program-card__content,
.gym-program-card .content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 28px;
    color: #fff;
    background: transparent;
}
.gym-program-card__label { display: flex; flex-direction: column; gap: 8px; }
.gym-program-card__title,
.gym-program-card .title {
    max-width: 360px;
    margin: 0;
    color: #fff;
    font-size: clamp(16px, 1.45vw, 22px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.gym-program-card--1 .gym-program-card__title,
.gym-program-card--1 .title { font-size: clamp(20px, 1.8vw, 28px); }
.gym-program-card__index {
    color: var(--gym-lime);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
}
.gym-program-card__arrow {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #050605;
    background: var(--gym-lime);
    font-size: 17px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}
.gym-program-card:hover .gym-program-card__arrow {
    color: var(--gym-lime);
    background: #050605;
    transform: translate(2px, -2px);
}

.gym-shop,
#HomePageProducts.section { padding-top: 24px; padding-bottom: 96px; }
.gym-shop .gym-section-heading,
#HomePageProducts .gym-section-heading { margin-bottom: 20px; text-align: left; }
.gym-shop-grid,
#HomePageProducts .item-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    margin: 0;
}
#HomePageProducts .col-12,
#HomePageProducts .product-container {
    width: auto;
    max-width: none;
    padding: 0;
    margin: 0;
    flex: none;
}
.gym-shop-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    background: var(--gym-panel);
    border: 1px solid var(--gym-line);
    transition: border-color .2s ease, transform .2s ease;
}
.gym-shop-card:hover {
    border-color: var(--gym-lime);
    transform: translateY(-3px);
}
.gym-shop-card__visual {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--gym-panel-soft);
}
.gym-shop-card__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.gym-shop-card:hover .gym-shop-card__visual img { transform: scale(1.035); }
.gym-shop-card__body {
    display: flex;
    min-height: 0;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 14px;
}
.gym-shop-card__body h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}
.gym-shop-card__body h3 a {
    display: -webkit-box;
    overflow: hidden;
    color: var(--gym-white);
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.gym-shop-card__prices {
    display: flex;
    gap: 8px;
    align-items: baseline;
    margin-top: 10px;
}
.gym-shop-card__prices strong { color: var(--gym-lime); font-size: 18px; font-weight: 800; }
.gym-shop-card__prices del { color: var(--gym-muted); font-size: 12px; }
.gym-shop-card__placeholder { display: none; }
.gym-shop-card__actions {
    display: flex;
    width: 100%;
    margin-top: auto;
}
.gym-shop-card__actions:has(.gym-shop-card__cart) .gym-shop-card__details {
    display: none;
}
.gym-shop-card__cart,
.gym-shop-card__details {
    display: flex;
    width: 100%;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding: 0 12px;
    color: var(--gym-ink) !important;
    background: var(--gym-lime);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .065em;
    text-transform: uppercase;
    text-decoration: none !important;
    cursor: pointer;
}
.gym-shop-card__cart .icons,
.gym-shop-card__details .icons { font-size: 14px; }
.gym-shop-card__cart:hover,
.gym-shop-card__details:hover { background: var(--modern-accent-hover); }

@media (max-width: 991px) {
    .gym-hero,
    .gym-hero__inner { min-height: 560px; }
    .gym-hero { background-position: 62% center; }
    .gym-hero::before {
        background: linear-gradient(90deg, rgba(2, 3, 2, .98), rgba(2, 3, 2, .82) 50%, rgba(2, 3, 2, .25));
    }
    .gym-programs { padding-top: 56px; padding-bottom: 48px; }
    .gym-programs__heading {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 34px;
    }
    .gym-programs__heading p { max-width: 600px; padding-left: 16px; }
    .gym-program-grid {
        grid-template-columns: 1.25fr .75fr;
        grid-template-rows: repeat(2, 210px);
    }
    .gym-shop-grid,
    #HomePageProducts .item-row,
    .gym-shop .item-row,
    .gym-shop.gym-featured-products .row,
    .gym-shop.product-grid .row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .gym-highlights__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .gym-frame,
    .gym-hero__inner,
    .gym-trust:not(:has(.gym-frame)),
    .gym-programs:not(:has(.gym-frame)),
    .gym-shop:not(:has(.gym-frame)),
    #HomePageProducts:not(:has(.gym-frame)) {
        padding-right: 16px;
        padding-left: 16px;
    }
    .gym-hero {
        min-height: 520px;
        background-position: 71% center;
    }
    .gym-hero::before {
        background: linear-gradient(90deg, rgba(2, 3, 2, .96), rgba(2, 3, 2, .72) 70%, rgba(2, 3, 2, .35));
    }
    .gym-hero__inner {
        align-items: flex-end;
        min-height: 520px;
        padding-top: 48px;
        padding-bottom: 42px;
    }
    .gym-hero__content { max-width: 92%; }
    .gym-hero h1 {
        margin: 13px 0 16px;
        font-size: clamp(34px, 10vw, 46px);
        line-height: .96;
    }
    .gym-hero__content > p { font-size: 13px; line-height: 1.55; }
    .gym-hero__actions { gap: 8px; margin-top: 22px; }
    .gym-btn { min-height: 42px; padding: 10px 15px; font-size: 9px; }
    .gym-trust__row,
    .gym-trust:not(:has(.gym-frame)) {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .gym-trust__row::-webkit-scrollbar,
    .gym-program-grid::-webkit-scrollbar { display: none; }
    .gym-trust__item,
    .gym-trust:not(:has(.gym-frame)) > div {
        flex: 0 0 240px;
        min-height: 60px;
        padding: 13px 18px;
        border-right: 1px solid var(--gym-line);
    }
    .gym-trust__item p,
    .gym-trust:not(:has(.gym-frame)) > div p { font-size: 10px; }
    .gym-section-heading { margin-bottom: 18px; }
    .gym-section-heading h2 { font-size: 22px; }
    .gym-section-heading p { font-size: 12px; line-height: 1.5; }
    .gym-programs { padding-top: 58px; padding-bottom: 64px; }
    .gym-highlights { padding-top: 48px; }
    .gym-highlights__grid { grid-template-columns: 1fr; }
    .gym-section-heading--split { align-items: flex-start; }
    .gym-programs__heading { gap: 17px; margin-bottom: 28px; }
    .gym-programs__heading h2 {
        margin-top: 12px;
        font-size: clamp(30px, 8.5vw, 38px);
    }
    .gym-programs__heading p { padding-left: 16px; font-size: 12px; line-height: 1.6; }
    .gym-program-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .gym-program-card,
    .gym-program-card--1,
    .gym-program-item,
    .gym-program-item--1 {
        flex: 0 0 84%;
        min-height: 390px;
        grid-row: auto;
        scroll-snap-align: start;
    }
    .gym-program-card,
    .gym-program-card__image,
    .gym-program-card .gallery-img { height: 390px; min-height: 390px; }
    .gym-program-card__content,
    .gym-program-card .content { padding: 22px 20px; }
    .gym-program-card__title,
    .gym-program-card .title,
    .gym-program-card--1 .gym-program-card__title,
    .gym-program-card--1 .title { font-size: 18px; }
    .gym-program-card__arrow { flex-basis: 38px; width: 38px; height: 38px; }
    .gym-shop,
    #HomePageProducts.section { padding-bottom: 58px; }
    .gym-shop .gym-section-heading,
    #HomePageProducts .gym-section-heading { margin-bottom: 28px; }
    .gym-shop-card__body { padding: 12px; }
    .gym-shop-card__body h3 { font-size: 13px; }
    .gym-shop-card__prices strong { font-size: 16px; }
}

@media (max-width: 380px) {
    .gym-shop-grid,
    #HomePageProducts .item-row,
    .gym-shop .item-row,
    .gym-shop.gym-featured-products .row,
    .gym-shop.product-grid .row { grid-template-columns: 1fr; }
}

.gym-brands {
    padding-bottom: 64px;
}
.gym-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.gym-brand-grid .category-item {
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--gym-line);
}
.gym-brand-grid .category-item .title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.gym-featured .catalog-heading {
    margin-bottom: 18px;
}
.gym-featured .nav-tabs,
.gym-featured .nav-link {
    border-radius: 0;
}
.gym-featured .nav-link.active {
    color: var(--gym-ink, var(--modern-accent-ink));
    border-color: var(--gym-lime, var(--modern-accent));
    background: var(--gym-lime, var(--modern-accent));
}
@media (max-width: 767px) {
    .gym-brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.gym-categories,
.gym-featured-products {
    padding-bottom: 64px;
}
.gym-category-tile {
    display: block;
    overflow: hidden;
    border: 1px solid var(--gym-line, var(--modern-border));
    border-radius: 0;
    color: inherit;
    text-decoration: none;
    background: var(--modern-surface, transparent);
}
.gym-category-tile img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.gym-category-tile .title {
    margin: 0;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.gym-featured-products .gym-section-heading,
.gym-categories .gym-section-heading {
    margin-bottom: 20px;
}
.gym-shop.gym-featured-products,
.gym-shop.gym-featured,
.gym-shop.gym-editorial {
    padding-bottom: 64px;
}
.gym-shop .item-row,
.gym-shop.gym-featured-products .row,
.gym-shop.product-grid .row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    margin: 0;
}
.gym-shop .item-row > [class*="col-"],
.gym-shop.gym-featured-products .row > [class*="col-"],
.gym-shop.product-grid .row > [class*="col-"],
.gym-shop .product-container {
    min-width: 0;
    width: auto;
    max-width: none;
    flex: none;
    padding: 0;
    margin: 0;
}
.gym-shop .product-box,
.gym-shop .gym-product-box {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}
.gym-shop .product-box .picture-container,
.gym-shop .product-box .img-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.gym-shop .product-box .main-product-img,
.gym-shop .product-box .hover-img {
    position: absolute;
    inset: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    padding: 0 !important;
    object-fit: cover;
    object-position: center;
}
.gym-featured .nav-tabs {
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gym-line, var(--modern-border));
}
.gym-featured .nav-link {
    border: 1px solid var(--gym-line, var(--modern-border));
    color: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.gym-editorial-card,
.gym-shop .post-news,
.gym-shop .blog-post {
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--gym-line, var(--modern-border));
    background: var(--modern-surface, transparent);
}
.gym-shop .post-news .btn,
.gym-shop .view-all .btn,
.gym-shop .btn-outline-secondary {
    border-radius: 0;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.gym-shop .post-news .title a,
.gym-shop .blog-post .title {
    font-weight: 800;
    letter-spacing: -.02em;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
}
.gym-featured .nav-tabs .nav-link {
    border-radius: 0;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.gym-featured .nav-tabs .nav-link.active {
    color: var(--modern-accent-ink);
    background: var(--modern-accent);
    border-color: var(--modern-accent);
}
.gym-shop .btn-info {
    border-radius: 0;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
