:root {
    --shop-border: #e6e6e6;
    --shop-muted: #7a7a7a;
}

.searchDropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
    padding: 10px 0;
    max-height: 420px;
    overflow-y: auto;
    z-index: 60;
    display: none;
}

.searchDropdown.is-open {
    display: block;
}

.searchDropdown__group {
    padding: 4px 0;
}

.searchDropdown__group + .searchDropdown__group {
    border-top: 1px solid var(--shop-border);
    margin-top: 4px;
    padding-top: 8px;
}

.searchDropdown__title {
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--shop-muted);
    padding: 4px 16px 8px;
}

.searchDropdown__cat,
.searchDropdown__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    color: #1a1a1a;
    font-size: 14px;
    transition: background .2s;
}

.searchDropdown__cat:hover,
.searchDropdown__item:hover {
    background: #f6f6f6;
    color: var(--main-theme-color, #000);
}

.searchDropdown__item img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.searchDropdown__name {
    flex: 1 1 auto;
}

.searchDropdown__price {
    font-weight: 600;
    white-space: nowrap;
}

.searchDropdown__all {
    display: block;
    text-align: center;
    padding: 12px 16px 4px;
    font-weight: 600;
    font-size: 14px;
    border-top: 1px solid var(--shop-border);
    margin-top: 6px;
}

.searchDropdown__empty {
    padding: 16px;
    text-align: center;
    color: var(--shop-muted);
    font-size: 14px;
}

.header-searchbox,
.search-form {
    position: relative;
}

.cookieBanner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--shop-border);
    border-radius: 12px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, .18);
    padding: 16px 20px;
    display: none;
    align-items: center;
    gap: 18px;
    z-index: 1090;
}

.cookieBanner.is-visible {
    display: flex;
}

.cookieBanner__text {
    font-size: 13px;
    line-height: 1.55;
    color: #333;
}

.cookieBanner__text a {
    text-decoration: underline;
}

.cookieBanner__btn {
    flex-shrink: 0;
    border: none;
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 14px;
    cursor: pointer;
    transition: opacity .2s;
}

.cookieBanner__btn:hover {
    opacity: .85;
}

.shopToast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%, 20px);
    background: #1a1a1a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .25s;
    z-index: 1100;
    max-width: 90vw;
    text-align: center;
}

.shopToast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.shopToast.is-error {
    background: #c0392b;
}

.checkoutField--auto {
    position: relative;
}

.checkoutDropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 10px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
    max-height: 260px;
    overflow-y: auto;
    z-index: 40;
    display: none;
}

.checkoutDropdown.is-open {
    display: block;
}

.checkoutDropdown__item {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    color: #1a1a1a;
}

.checkoutDropdown__item:hover {
    background: #f5f5f5;
}

.checkoutError {
    display: none;
    background: #fdecea;
    color: #c0392b;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 12px;
}

.checkoutError.is-visible {
    display: block;
}

.checkoutPage input.is-invalid,
.checkoutPage textarea.is-invalid {
    border-color: #c0392b !important;
}

.checkoutSummary__submit.is-loading {
    opacity: .6;
    pointer-events: none;
}

.sizeError {
    display: none;
    color: #c0392b;
    font-size: 13px;
    margin-top: 8px;
}

.sizeError.is-visible {
    display: block;
}

.productIWishQ.is-active svg path[fill="currentColor"] {
    fill: var(--main-theme-color, #eb3e32);
}

.productIWishQ.is-active {
    color: var(--main-theme-color, #eb3e32);
}

.btn-disabled {
    opacity: .5;
    pointer-events: none;
}

.cartItemSize {
    display: block;
    font-size: 13px;
    color: var(--shop-muted);
    margin-top: 2px;
}

.miniCartEmpty,
.cartEmptyPage,
.catalogEmpty {
    padding: 40px 20px;
    text-align: center;
}

.miniCartEmpty p,
.cartEmptyPage p,
.catalogEmpty p {
    margin-bottom: 18px;
    color: var(--shop-muted);
}

.catalogFilters__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
}

.catalogFilters__apply {
    border: none;
    cursor: pointer;
}

.catalogFilters__reset {
    font-size: 14px;
    text-decoration: underline;
    color: var(--shop-muted);
}

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

.catalogSubcats li + li {
    margin-top: 8px;
}

.catalogSubcats a {
    font-size: 14px;
    color: #333;
}

.catalogSubcats a:hover {
    color: var(--main-theme-color, #000);
}

.categorySeoText,
.homeSeoText,
.pageContent {
    line-height: 1.7;
}

.categorySeoText {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--shop-border);
    color: #444;
}

.categorySeoText h2,
.categorySeoText h3,
.pageContent h2,
.pageContent h3 {
    margin: 22px 0 12px;
}

.pageContent ul,
.categorySeoText ul {
    padding-left: 20px;
    list-style: disc;
}

.pageContent table {
    width: 100%;
    margin: 18px 0;
}

.pageContent table th,
.pageContent table td {
    border: 1px solid var(--shop-border);
    padding: 10px 14px;
}

.pagination li .paginationArrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.paginationDots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    color: var(--shop-muted);
}

.relatedCardCol {
    width: 100%;
}

.thankYouSection {
    padding: 60px 0 90px;
}

.thankYouBox {
    text-align: center;
    border: 1px solid var(--shop-border);
    border-radius: 14px;
    padding: 40px 24px;
    margin-bottom: 30px;
}

.thankYouBox__icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #eaf7ee;
    color: #2e9e52;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.thankYouBox h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.thankYouBox p {
    color: var(--shop-muted);
    margin: 0;
}

.thankYouPay,
.thankYouIban,
.thankYouOrder {
    border: 1px solid var(--shop-border);
    border-radius: 14px;
    padding: 26px 24px;
    margin-bottom: 26px;
}

.thankYouPay h3,
.thankYouIban h3,
.thankYouOrder h3 {
    font-size: 19px;
    margin-bottom: 16px;
}

.thankYouIban__table {
    width: 100%;
}

.thankYouIban__table th,
.thankYouIban__table td {
    padding: 9px 0;
    border-bottom: 1px solid var(--shop-border);
    font-size: 14px;
    vertical-align: top;
}

.thankYouIban__table th {
    text-align: left;
    width: 200px;
    font-weight: 500;
    color: var(--shop-muted);
}

.thankYouIban__code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: .04em;
    word-break: break-all;
}

.thankYouIban__note {
    margin: 14px 0 0;
    font-size: 13px;
    color: var(--shop-muted);
}

.thankYouOrder__table {
    width: 100%;
}

.thankYouOrder__table td {
    padding: 12px 8px;
    border-bottom: 1px solid var(--shop-border);
    vertical-align: middle;
    font-size: 14px;
}

.thankYouOrder__img img {
    border-radius: 8px;
    object-fit: cover;
}

.thankYouOrder__table strong {
    display: block;
}

.thankYouOrder__table span {
    font-size: 13px;
    color: var(--shop-muted);
}

.thankYouOrder__qty,
.thankYouOrder__sum {
    white-space: nowrap;
    text-align: right;
}

.thankYouOrder__total td {
    font-weight: 700;
    font-size: 16px;
    border-bottom: none;
}

.thankYouInfo {
    margin: 22px 0 26px;
    display: grid;
    gap: 8px;
    font-size: 14px;
}

.thankYouInfo span {
    color: var(--shop-muted);
    margin-right: 6px;
}

.contactInfoBox {
    border: 1px solid var(--shop-border);
    border-radius: 14px;
    padding: 26px 24px;
}

.contactInfoBox h3 {
    font-size: 19px;
    margin-bottom: 18px;
}

.contactInfoBox ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contactInfoBox li {
    padding: 10px 0;
    border-bottom: 1px solid var(--shop-border);
    font-size: 14px;
}

.contactInfoBox li:last-child {
    border-bottom: none;
}

.contactInfoBox li span {
    color: var(--shop-muted);
    margin-right: 6px;
}

.contactMap {
    margin-top: 24px;
    border-radius: 14px;
    overflow: hidden;
}

.contactMap iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
    display: block;
}

.formResult {
    margin-top: 14px;
    font-size: 14px;
    display: none;
}

.formResult.is-visible {
    display: block;
}

.formResult.is-error {
    color: #c0392b;
}

.formResult.is-success {
    color: #2e9e52;
}

@media (max-width: 767px) {
    .cookieBanner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 12px;
    }

    .thankYouIban__table th {
        width: 130px;
    }

    .thankYouOrder__table td {
        padding: 10px 4px;
    }

    .thankYouSection {
        padding: 36px 0 60px;
    }
}

.header-action-area .shopping-wishlist {
    position: relative;
}

.header-action-area .shopping-wishlist-btn {
    position: relative;
    display: inline-flex;
}

.wish-count {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 20px;
    background: var(--main-theme-color, #eb3e32);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    display: block;
}

.wish-count[hidden],
.shop-count[hidden] {
    display: none !important;
}

.productWishBtn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 52px;
    padding: 0 20px;
    border: 1px solid var(--shop-border);
    border-radius: 30px;
    background: #fff;
    color: #3a3a3a;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
}

.productWishBtn svg {
    color: #b9b9b9;
    transition: color .2s, transform .2s;
}

.productWishBtn:hover {
    border-color: var(--main-theme-color, #eb3e32);
    color: var(--main-theme-color, #eb3e32);
}

.productWishBtn:hover svg {
    color: var(--main-theme-color, #eb3e32);
}

.productWishBtn.is-active {
    border-color: var(--main-theme-color, #eb3e32);
    background: rgba(235, 62, 50, .07);
    color: var(--main-theme-color, #eb3e32);
}

.productWishBtn.is-active svg {
    color: var(--main-theme-color, #eb3e32);
    transform: scale(1.08);
}

.product-single-item .product-single-info .product-quick-action {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 575px) {
    .productWishBtn {
        width: 100%;
        justify-content: center;
    }
}

.homeCatCard {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    background: #f4f4f6;
}

.homeCatCard .inner-content {
    position: relative;
    height: 100%;
}

.homeCatCard .product-collection-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
}

.homeCatCard:hover .product-collection-thumb {
    transform: scale(1.05);
}

.homeCatCard .product-collection-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 24px;
    z-index: 2;
}

.homeCatCard .product-collection-content:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 190px;
    background: linear-gradient(0deg, rgba(20, 20, 22, .85) 0%, rgba(20, 20, 22, .45) 45%, rgba(20, 20, 22, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

.homeCatCard .product-collection-content .content {
    padding: 0;
}

.homeCatCard .product-collection-content .title {
    font-size: 22px;
    margin: 0 0 6px;
    line-height: 1.25;
}

.homeCatCard .product-collection-content .title a {
    color: #fff;
}

.homeCatCard__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    transition: gap .2s;
}

.homeCatCard:hover .homeCatCard__link {
    gap: 12px;
    color: #fff;
}

@media (max-width: 1199px) {
    .homeCatCard {
        height: auto;
    }

    .homeCatCard .product-collection-content {
        padding: 18px 18px;
    }

    .homeCatCard .product-collection-content .title {
        font-size: 19px;
    }
}

.shopMobTopsf {
    align-items: center;
}

.shop-top-bar {
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 18px !important;
}

.shop-top-bar .pagination-line {
    margin: 0;
    font-size: 14px;
    color: var(--shop-muted);
}

.shop-top-bar .pagination-line span {
    color: #1a1a1a;
    font-weight: 600;
}

.shop-top-bar .shop-sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-top-bar .shop-sort span {
    color: var(--shop-muted);
    white-space: nowrap;
}

.shop-top-bar .shop-sort .form-select {
    border: 0;
    background-color: transparent;
    padding: 4px 26px 4px 6px;
    color: #1a1a1a;
    font-weight: 500;
    cursor: pointer;
    min-width: 150px;
    box-shadow: none;
}

.shop-top-bar .shop-sort .form-select:focus {
    outline: none;
    box-shadow: none;
}

.catalogFiltersMobileBtn {
    position: relative;
    border-radius: 14px;
}

.catalogFiltersMobileBtn__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 19px;
    height: 19px;
    margin-left: 6px;
    padding: 0 5px;
    border-radius: 20px;
    background: var(--main-theme-color, #eb3e32);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

.catalogActiveFilters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.catalogChip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border: 1px solid var(--shop-border);
    border-radius: 30px;
    background: #fff;
    font-size: 13px;
    color: #333;
    transition: border-color .2s, color .2s;
}

.catalogChip span {
    font-size: 15px;
    line-height: 1;
    color: #b0b0b0;
}

.catalogChip:hover {
    border-color: var(--main-theme-color, #eb3e32);
    color: var(--main-theme-color, #eb3e32);
}

.catalogChip:hover span {
    color: var(--main-theme-color, #eb3e32);
}

.catalogChip--reset {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

.catalogChip--reset:hover {
    background: var(--main-theme-color, #eb3e32);
    border-color: var(--main-theme-color, #eb3e32);
    color: #fff;
}

.catalogFilters {
    border: 1px solid var(--shop-border);
    border-radius: 18px;
    padding: 6px 20px 20px;
    background: #fff;
    transition: opacity .2s;
}

.catalogFilters.is-loading {
    opacity: .55;
    pointer-events: none;
}

.ssdfsdf.is-loading {
    opacity: .5;
    transition: opacity .2s;
}

.catalogFilters__head {
    padding: 16px 0 12px;
    border-bottom: 1px solid var(--shop-border);
    margin-bottom: 6px;
}

.catalogFilters__head h3 {
    font-size: 17px;
    margin: 0;
}

.catalogFilterBlock {
    border-bottom: 1px solid #f0f0f2;
    padding: 4px 0;
}

.catalogFilterBlock:last-of-type {
    border-bottom: none;
}

.catalogFilterBlock__title {
    font-size: 14.5px;
    font-weight: 600;
    padding: 14px 0;
}

.catalogFilterBlock__title svg {
    color: #9b9b9b;
    transition: transform .25s;
}

.catalogFilterBlock.is-open .catalogFilterBlock__title svg {
    transform: rotate(180deg);
}

.catalogFilterBlock__body {
    padding-bottom: 14px;
}

.catalogSizes label span {
    border-radius: 10px;
    border: 1px solid var(--shop-border);
    min-width: 44px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .18s;
    background: #fff;
    color: #333;
}

.catalogSizes label input:checked + span {
    background: var(--main-theme-color, #eb3e32);
    border-color: var(--main-theme-color, #eb3e32);
    color: #fff;
    font-weight: 600;
}

.catalogSizes label span:hover {
    border-color: #1a1a1a;
}

.catalogColors label {
    gap: 10px;
    padding: 5px 0;
    font-size: 14px;
}

.catalogColors__dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
    transition: box-shadow .18s;
}

.catalogColors label input:checked ~ .catalogColors__dot {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--main-theme-color, #eb3e32);
}

.catalogCheck {
    padding: 6px 0;
    font-size: 14px;
}

.catalogPrice__field input {
    border-radius: 10px;
    height: 40px;
}

.catalogFilters__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 18px;
    margin-top: 6px;
    border-top: 1px solid var(--shop-border);
}

.catalogFilters__reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 14px;
    border: 1px solid var(--shop-border);
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    color: #555;
    transition: all .18s;
}

.catalogFilters__reset:hover {
    border-color: var(--main-theme-color, #eb3e32);
    color: var(--main-theme-color, #eb3e32);
}

.catalogFilters__reset.is-disabled {
    opacity: .45;
    pointer-events: none;
}

.catalogFilters__done {
    display: none;
    border: none;
    cursor: pointer;
    justify-content: center;
}

@media (max-width: 1199px) {
    .catalogFilters {
        border-radius: 0;
        overflow-y: auto;
        padding-bottom: 110px;
    }

    .catalogFilters__actions {
        position: sticky;
        bottom: 0;
        background: #fff;
        padding: 14px 0;
        margin: 0 -20px -20px;
        padding-left: 20px;
        padding-right: 20px;
        box-shadow: 0 -8px 20px rgba(0, 0, 0, .06);
        flex-direction: row;
    }

    .catalogFilters__done {
        display: inline-flex;
        flex: 1 1 auto;
    }

    .catalogFilters__reset {
        flex: 0 0 auto;
    }
}

.relatedSliderWrap {
    position: relative;
    padding: 0 6px;
}

.relatedSlider {
    overflow: hidden;
}

.relatedSlider .swiper-slide {
    height: auto;
    display: flex;
}

.relatedSlider .relatedCardCol {
    width: 100%;
    display: flex;
}

.relatedSlider .product-item {
    width: 100%;
}

.relatedSlider__prev,
.relatedSlider__next {
    position: absolute;
    top: 38%;
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--shop-border);
    background: #fff;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    transition: all .2s;
}

.relatedSlider__prev {
    left: -14px;
}

.relatedSlider__next {
    right: -14px;
}

.relatedSlider__prev:hover,
.relatedSlider__next:hover {
    background: var(--main-theme-color, #eb3e32);
    border-color: var(--main-theme-color, #eb3e32);
    color: #fff;
}

.relatedSlider__prev.swiper-button-disabled,
.relatedSlider__next.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 991px) {
    .relatedSlider__prev,
    .relatedSlider__next {
        display: none;
    }
}

.stateBox {
    max-width: 560px;
    margin: 0 auto;
    padding: 50px 24px 60px;
    text-align: center;
}

.stateBox__icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #f5f5f7;
    color: #9a9a9e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stateBox h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.stateBox p {
    color: var(--shop-muted);
    margin-bottom: 22px;
}

.stateBox__form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.stateBox__form input {
    flex: 1 1 auto;
    height: 50px;
    padding: 0 18px;
    border: 1px solid var(--shop-border);
    border-radius: 30px;
    font-size: 15px;
    outline: none;
    transition: border-color .2s;
}

.stateBox__form input:focus {
    border-color: #1a1a1a;
}

.stateBox__form button {
    height: 50px;
    padding: 0 26px;
    border: none;
    border-radius: 30px;
    background: #1a1a1a;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s;
}

.stateBox__form button:hover {
    background: var(--main-theme-color, #eb3e32);
}

.stateBox__btn {
    display: inline-flex !important;
    margin: 0 auto;
}

.searchResultLine {
    margin-bottom: 24px;
    color: var(--shop-muted);
    font-size: 15px;
}

.searchResultLine span {
    color: #1a1a1a;
    font-weight: 600;
}

.js-search-input.is-empty {
    border-color: var(--main-theme-color, #eb3e32) !important;
    animation: shopShake .35s;
}

@keyframes shopShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.footerAbout {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .6);
    font-size: 13.5px;
    line-height: 1.65;
    max-width: 280px;
}

.header-action-area .shopping-cart-btn,
.header-action-area .shopping-wishlist-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.header-action-area .shopping-cart-btn .shop-count,
.header-action-area .shopping-wishlist-btn .wish-count {
    position: absolute;
    top: -7px;
    right: -9px;
    left: auto;
    bottom: auto;
    width: 19px;
    height: 19px;
    min-width: 19px;
    padding: 0;
    border-radius: 50%;
    background-color: var(--main-theme-color, #eb3e32);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 19px;
    text-align: center;
    display: block;
}

.header-action-area .shopping-wishlist,
.header-action-area .shopping-cart {
    display: flex;
    align-items: center;
}

.mainMenuHeadingArrow,
.mainMenuHeadingArrowTwo,
.mainMenuMainTopClose,
.headerShopButton,
.faqItem__head,
.catalogFilterBlock__title,
.widget-collapsed-title,
.catalogFilters__close,
.btn-aside-cart-close,
.btn-menu-close,
.promoPhotoSlider__prev,
.promoPhotoSlider__next,
.pro-qty .qtybtn,
.size-list li,
.color-list li {
    cursor: pointer;
}

.pageContent.otherPageDes .faqSection__list,
.pageContent .faqSection__list {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.pageContent.otherPageDes {
    max-width: 900px;
    margin: 0;
}

.pageContent ul,
.categorySeoText ul,
.homeSeoText ul,
.product-information ul {
    list-style: none;
    padding-left: 0;
    margin: 14px 0;
}

.pageContent ul li,
.categorySeoText ul li,
.homeSeoText ul li,
.product-information ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 9px;
    list-style: none;
}

.pageContent ul li::before,
.categorySeoText ul li::before,
.homeSeoText ul li::before,
.product-information ul li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--main-theme-color, #eb3e32);
}

.pageContent ol,
.categorySeoText ol,
.homeSeoText ol {
    padding-left: 22px;
    margin: 14px 0;
}

.pageContent ol li,
.categorySeoText ol li,
.homeSeoText ol li {
    list-style: decimal;
    margin-bottom: 9px;
    padding-left: 4px;
}

.pageContent ol li::marker {
    color: var(--main-theme-color, #eb3e32);
    font-weight: 600;
}

.pageContent p,
.categorySeoText p,
.product-information p {
    margin-bottom: 14px;
}

.pageContent h2,
.pageContent h3,
.pageContent h4,
.categorySeoText h2,
.categorySeoText h3,
.homeSeoText h2,
.homeSeoText h3 {
    margin: 30px 0 14px;
    line-height: 1.3;
}

.pageContent h2 {
    font-size: 23px;
}

.pageContent h3 {
    font-size: 19px;
}

.pageContent h4 {
    font-size: 17px;
}

.pageContent a,
.categorySeoText a {
    color: var(--main-theme-color, #eb3e32);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pageContent table,
.categorySeoText table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.pageContent table th,
.pageContent table td,
.categorySeoText table th,
.categorySeoText table td {
    border: 1px solid var(--shop-border);
    padding: 11px 14px;
    text-align: left;
}

.pageContent table th {
    background: #fafafa;
    font-weight: 600;
}

.pageContent blockquote {
    margin: 20px 0;
    padding: 14px 20px;
    border-left: 3px solid var(--main-theme-color, #eb3e32);
    background: #fafafa;
    border-radius: 0 10px 10px 0;
}

.pageContent img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 14px 0;
}

.product-item.is-out .product-thumb img {
    opacity: .45;
    filter: grayscale(.65);
}

.product-item.is-out .product-info .title a,
.product-item.is-out .prices .price {
    color: #8d8d92;
}

.product-flag li.outstock {
    background: #6b7280 !important;
    color: #fff !important;
}

.product-flag li.new {
    background: #1a1a1a !important;
    color: #fff !important;
}

.productItemLinkQ.is-disabled {
    background: #f1f1f3 !important;
    color: #9a9aa0 !important;
    cursor: not-allowed;
    pointer-events: none;
}

.stockYes {
    color: #17915a;
}

.stockNo {
    color: #c0392b;
}

.outStockNotice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 22px 0 6px;
    padding: 16px 18px;
    border: 1px solid #f2ddda;
    background: #fdf3f2;
    border-radius: 14px;
    color: #99342b;
}

.outStockNotice svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.outStockNotice strong {
    display: block;
    font-size: 15px;
    margin-bottom: 3px;
}

.outStockNotice span {
    font-size: 13.5px;
    line-height: 1.55;
    color: #8a5751;
}

.product-size.is-out .size-list li {
    opacity: .5;
    pointer-events: none;
}

.product-quick-action.is-out .btn-theme.btn-disabled {
    background: #f1f1f3;
    color: #9a9aa0;
    border-color: #f1f1f3;
    opacity: 1;
}

.catalogSizes {
    grid-template-columns: repeat(auto-fill, minmax(46px, 1fr));
    gap: 8px;
}

.catalogSizes label {
    display: block;
    min-width: 0;
}

.catalogSizes label span {
    width: 100%;
    min-width: 0;
    padding: 0 4px;
    box-sizing: border-box;
}

.catalogFilters__actions {
    border-top: none;
    padding-top: 6px;
    margin-top: 0;
}

.shop-top-bar {
    justify-content: flex-end;
}

.shop-top-bar .shop-top-right {
    margin-left: auto;
}

.shop-top-bar .shop-sort {
    position: relative;
    padding: 4px 6px 4px 14px;
    border-radius: 12px;
    transition: background .18s;
}

.shop-top-bar .shop-sort:hover {
    background: #fafafa;
}

.shop-top-bar .shop-sort span {
    font-size: 14px;
}

.shop-top-bar .shop-sort .form-select {
    min-width: 175px;
    background-position: right 4px center;
}

@media (max-width: 1199px) {
    .shopMobTopsf {
        align-items: stretch;
    }

    .shop-top-bar {
        padding: 8px 12px !important;
    }

    .shop-top-bar .shop-sort {
        width: 100%;
        justify-content: space-between;
        padding-left: 8px;
    }

    .shop-top-bar .shop-sort .form-select {
        min-width: 0;
        flex: 1 1 auto;
    }
}

@media (max-width: 575px) {
    .shop-top-bar .shop-sort span {
        display: none;
    }
}

.shopMobTopsf {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.shop-top-bar {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: flex;
    justify-content: flex-end;
    width: auto;
    margin-left: auto;
}

.sortBox {
    position: relative;
    display: inline-block;
}

.sortBox__btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid var(--shop-border);
    border-radius: 30px;
    background: #fff;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color .18s, box-shadow .18s;
    white-space: nowrap;
}

.sortBox__btn svg {
    color: #9a9aa0;
    flex-shrink: 0;
}

.sortBox__btn:hover {
    border-color: #1a1a1a;
}

.sortBox.is-open .sortBox__btn {
    border-color: #1a1a1a;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .07);
}

.sortBox.is-open .sortBox__arrow {
    transform: rotate(180deg);
}

.sortBox__arrow {
    transition: transform .2s;
}

.sortBox__label {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sortBox__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 232px;
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .12);
    padding: 6px;
    z-index: 60;
    display: none;
}

.sortBox.is-open .sortBox__menu {
    display: block;
}

.sortBox__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 10px;
    background: none;
    color: #333;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: background .15s, color .15s;
}

.sortBox__item svg {
    opacity: 0;
    color: var(--main-theme-color, #eb3e32);
    flex-shrink: 0;
}

.sortBox__item:hover {
    background: #f6f6f8;
}

.sortBox__item.is-active {
    color: var(--main-theme-color, #eb3e32);
    font-weight: 600;
}

.sortBox__item.is-active svg {
    opacity: 1;
}

.catalogFiltersMobileBtn {
    display: none;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 18px;
    border: 1px solid var(--shop-border);
    border-radius: 30px;
    background: #fff;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

@media (max-width: 1199px) {
    .catalogFiltersMobileBtn {
        display: inline-flex;
    }
}

@media (max-width: 575px) {
    .shopMobTopsf {
        gap: 8px;
    }

    .catalogFiltersMobileBtn,
    .sortBox__btn {
        height: 42px;
        padding: 0 14px;
        font-size: 13.5px;
    }

    .sortBox__label {
        max-width: 125px;
    }

    .sortBox__menu {
        min-width: 216px;
    }
}

@media (max-width: 400px) {
    .sortBox__btn > svg:first-child {
        display: none;
    }

    .sortBox__label {
        max-width: 104px;
    }
}

@media (max-width: 991px) {
    .product-single-item .product-single-info .product-quick-action {
        gap: 10px;
    }

    .productWishBtn {
        height: 48px;
    }

    .homeCatCard .product-collection-thumb {
        aspect-ratio: 16 / 10;
    }

    .thankYouIban__code {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .catalogActiveFilters {
        gap: 6px;
        margin-bottom: 16px;
    }

    .catalogChip {
        padding: 6px 12px;
        font-size: 12.5px;
    }

    .stateBox {
        padding: 36px 8px 44px;
    }

    .stateBox h2 {
        font-size: 19px;
    }

    .stateBox__form {
        flex-direction: column;
    }

    .stateBox__form input,
    .stateBox__form button {
        width: 100%;
        height: 48px;
    }

    .cartTableRes .product-name .title {
        font-size: 14px;
    }

    .checkoutSummary__product img {
        width: 56px;
        height: 56px;
        object-fit: cover;
    }

    .footerAbout {
        max-width: 100%;
    }

    .thankYouBox,
    .thankYouPay,
    .thankYouIban,
    .thankYouOrder {
        padding: 20px 16px;
    }

    .thankYouBox h2 {
        font-size: 19px;
    }

    .productWishBtn {
        width: 100%;
        justify-content: center;
        height: 46px;
    }

    .product-single-item .product-single-info .product-quick-action .btn-theme {
        flex: 1 1 auto;
        justify-content: center;
    }

    .outStockNotice {
        padding: 14px;
    }
}

@media (max-width: 575px) {
    .searchDropdown {
        max-height: 320px;
    }

    .searchDropdown__item img {
        width: 40px;
        height: 40px;
    }

    .homeCatCard .product-collection-content {
        padding: 16px;
    }

    .homeCatCard .product-collection-content .title {
        font-size: 18px;
    }

    .catalogFilters__actions {
        gap: 8px;
    }

    .relatedSliderWrap {
        padding: 0;
    }

    .shopToast {
        left: 12px;
        right: 12px;
        transform: translateY(20px);
        max-width: none;
    }

    .shopToast.is-visible {
        transform: translateY(0);
    }
}

.product-single-item .product-single-info .prices.productPrices {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.productPrices .price {
    color: #1a1a1a;
}

.productPrices .price-old {
    font-size: 20px;
    font-weight: 500;
    color: #9a9aa0;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
}

.productPrices__badge {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 11px;
    border-radius: 20px;
    background: var(--main-theme-color, #eb3e32);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .01em;
}

.productSaving {
    margin-bottom: 22px;
    font-size: 14px;
    color: #17915a;
}

.productSaving strong {
    font-weight: 700;
}

.qtyBox {
    display: inline-flex;
    align-items: center;
    height: 52px;
    border: 1px solid var(--shop-border);
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
}

.qtyBox__btn {
    width: 42px;
    height: 100%;
    border: none;
    background: none;
    color: #55555c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s, color .15s;
}

.qtyBox__btn:hover {
    background: #f5f5f7;
    color: var(--main-theme-color, #eb3e32);
}

.qtyBox__input {
    width: 42px;
    height: 100%;
    border: none;
    outline: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    background: transparent;
    padding: 0;
}

.sizeError {
    display: none;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    padding: 9px 14px;
    border-radius: 10px;
    background: #fdf1f0;
    color: #c0392b;
    font-size: 13.5px;
}

.sizeError.is-visible {
    display: inline-flex;
}

.product-size.has-error .size-list li {
    border-color: #eebfba;
}

.product-size .size-list {
    flex-wrap: wrap;
}

.cartTotals {
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 18px;
    padding: 24px;
}

.cartTotals__title {
    font-size: 18px;
    margin: 0 0 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--shop-border);
}

.cartTotals__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 0;
    font-size: 14.5px;
    color: var(--shop-muted);
}

.cartTotals__row strong {
    color: #1a1a1a;
    font-weight: 600;
    text-align: right;
}

.cartTotals__muted {
    color: var(--shop-muted) !important;
    font-weight: 400 !important;
    font-size: 13.5px;
}

.cartTotals__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--shop-border);
    font-size: 15px;
    color: #1a1a1a;
}

.cartTotals__total strong {
    font-size: 24px;
    font-weight: 800;
}

.cartTotals__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 54px;
    margin-top: 20px;
    border-radius: 30px;
    background: var(--main-theme-color, #eb3e32);
    color: #fff;
    font-size: 15.5px;
    font-weight: 600;
    transition: opacity .2s, transform .15s;
}

.cartTotals__btn:hover {
    color: #fff;
    opacity: .9;
    transform: translateY(-1px);
}

.cartTotals__back {
    display: block;
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    color: var(--shop-muted);
}

.cartTotals__back:hover {
    color: #1a1a1a;
}

.checkoutSummary__productImage {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--shop-border);
    display: block;
}

.checkoutSummary__productImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.checkoutSummary__product {
    align-items: center;
    gap: 14px;
    padding: 12px 0;
}

.checkoutSummary__product + .checkoutSummary__product {
    border-top: 1px solid #ececf0;
}

.checkoutField__error {
    display: block;
    margin-top: 6px;
    font-size: 12.5px;
    color: #c0392b;
}

.checkoutField.has-error input,
.checkoutField.has-error textarea {
    border-color: #e0a9a3 !important;
    background: #fffaf9;
}

.checkoutField.has-error label {
    color: #c0392b;
}

.checkoutSummary__agree.has-error {
    color: #c0392b;
}

.checkoutSummary__agree.has-error span a {
    color: #c0392b;
}

.checkoutError {
    border: 1px solid #f3d7d3;
}

@media (max-width: 767px) {
    .productPrices .price-old {
        font-size: 17px;
    }

    .cartTotals {
        padding: 18px 16px;
    }

    .cartTotals__total strong {
        font-size: 21px;
    }

    .qtyBox {
        height: 46px;
    }

    .qtyBox__btn,
    .qtyBox__input {
        width: 38px;
    }
}

.productMeta {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 22px;
}

.productMeta__item {
    font-size: 14.5px;
    color: #55555c;
}

.productMeta__sku span {
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: .02em;
}

.product-single-item .product-single-info .product-quick-action {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
}

.product-single-item .product-single-info .product-quick-action .btn-theme {
    white-space: nowrap;
}

.productWishBtn {
    width: 52px;
    height: 52px;
    padding: 0;
    flex-shrink: 0;
    justify-content: center;
    border-radius: 50%;
}

.productWishBtn__text {
    display: none;
}

.product-size.has-error .size-list li {
    border-color: #eebfba;
    animation: shopShake .35s;
}

.cartList {
    border: 1px solid var(--shop-border);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.cartList__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px 138px 120px 44px;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: #fafafa;
    border-bottom: 1px solid var(--shop-border);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--shop-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.cartList__head span:nth-child(2),
.cartList__head span:nth-child(3),
.cartList__head span:nth-child(4) {
    text-align: center;
}

.cartRow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px 138px 120px 44px;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f1f3;
    transition: opacity .2s, background .2s;
}

.cartRow:last-child {
    border-bottom: none;
}

.cartRow.is-updating {
    opacity: .5;
    pointer-events: none;
}

.cartRow__product {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.cartRow__image {
    width: 84px;
    height: 84px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--shop-border);
    background: #fff;
}

.cartRow__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cartRow__info {
    min-width: 0;
}

.cartRow__name {
    display: block;
    font-size: 15.5px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 5px;
}

.cartRow__name:hover {
    color: var(--main-theme-color, #eb3e32);
}

.cartRow__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
    font-size: 13px;
    color: var(--shop-muted);
}

.cartRow__meta b {
    color: #1a1a1a;
    font-weight: 600;
}

.cartRow__price,
.cartRow__sum {
    text-align: center;
    font-size: 15px;
    color: #1a1a1a;
}

.cartRow__sum {
    font-weight: 700;
}

.cartRow__qty {
    display: flex;
    justify-content: center;
}

.qtyBox--sm {
    height: 42px;
}

.qtyBox--sm .qtyBox__btn {
    width: 36px;
}

.qtyBox--sm .qtyBox__input {
    width: 38px;
    font-size: 15px;
}

.qtyBox__input[readonly] {
    cursor: default;
    user-select: none;
}

.cartRow__remove {
    width: 38px;
    height: 38px;
    border: none;
    background: none;
    border-radius: 50%;
    color: #b6b6bd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .18s, color .18s;
    justify-self: end;
}

.cartRow__remove:hover {
    background: #fdf1f0;
    color: var(--main-theme-color, #eb3e32);
}

@media (max-width: 1199px) {
    .cartList__head {
        display: none;
    }

    .cartRow {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "product remove"
            "meta meta";
        row-gap: 14px;
        padding: 16px;
    }

    .cartRow__product {
        grid-area: product;
    }

    .cartRow__remove {
        grid-area: remove;
        align-self: start;
    }

    .cartRow__price {
        display: none;
    }

    .cartRow__qty {
        grid-area: meta;
        justify-content: flex-start;
    }

    .cartRow__sum {
        grid-area: meta;
        justify-self: end;
        align-self: center;
        font-size: 17px;
    }
}

@media (max-width: 575px) {
    .cartRow__image {
        width: 68px;
        height: 68px;
    }

    .cartRow__name {
        font-size: 14.5px;
    }

    .product-single-item .product-single-info .product-quick-action {
        gap: 10px;
    }

    .product-single-item .product-single-info .product-quick-action .btn-theme {
        flex: 1 1 auto;
        padding: 13px 16px !important;
        font-size: 15px !important;
    }

    .productWishBtn {
        width: 46px;
        height: 46px;
    }

    .qtyBox {
        height: 46px;
    }

    .qtyBox__btn {
        width: 36px;
    }

    .qtyBox__input {
        width: 34px;
    }

    .productMeta {
        gap: 6px 16px;
    }

    .productMeta__item {
        font-size: 13.5px;
    }
}

.errorPage {
    padding: 40px 0 80px;
}

.errorPage__inner {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
}

.errorPage__art {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 18px;
}

.errorPage__digit {
    font-size: clamp(90px, 16vw, 150px);
    font-weight: 800;
    line-height: 1;
    color: #1a1a1a;
    letter-spacing: -.04em;
}

.errorPage__shoe {
    width: clamp(90px, 15vw, 140px);
    color: var(--main-theme-color, #eb3e32);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: errorShoe 2.6s ease-in-out infinite;
}

.errorPage__shoe svg {
    width: 100%;
    height: auto;
}

@keyframes errorShoe {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    45% { transform: translateY(-9px) rotate(-3deg); }
}

.errorPage__title {
    font-size: clamp(22px, 3.2vw, 30px);
    margin-bottom: 12px;
    line-height: 1.25;
}

.errorPage__text {
    color: var(--shop-muted);
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 26px;
}

.errorPage__search {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.errorPage__search input {
    flex: 1 1 auto;
    height: 54px;
    padding: 0 20px;
    border: 1px solid var(--shop-border);
    border-radius: 30px;
    font-size: 15px;
    outline: none;
    transition: border-color .2s;
    min-width: 0;
}

.errorPage__search input:focus {
    border-color: #1a1a1a;
}

.errorPage__search button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 54px;
    padding: 0 26px;
    border: none;
    border-radius: 30px;
    background: #1a1a1a;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}

.errorPage__search button:hover {
    background: var(--main-theme-color, #eb3e32);
}

.errorPage__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.errorPage__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 32px;
    border-radius: 30px;
    background: var(--main-theme-color, #eb3e32);
    color: #fff;
    font-size: 15.5px;
    font-weight: 600;
    transition: opacity .2s, transform .15s;
}

.errorPage__btn:hover {
    color: #fff;
    opacity: .9;
    transform: translateY(-1px);
}

.errorPage__link {
    color: #55555c;
    font-size: 15px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.errorPage__link:hover {
    color: var(--main-theme-color, #eb3e32);
}

.errorPage__cats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    padding-top: 26px;
    border-top: 1px solid var(--shop-border);
}

.errorPage__cats span {
    width: 100%;
    font-size: 13px;
    color: var(--shop-muted);
    margin-bottom: 4px;
}

.errorPage__cats a {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid var(--shop-border);
    border-radius: 30px;
    font-size: 13.5px;
    color: #333;
    transition: all .18s;
}

.errorPage__cats a:hover {
    border-color: var(--main-theme-color, #eb3e32);
    color: var(--main-theme-color, #eb3e32);
}

.errorPage__products {
    margin-top: 58px;
    padding-top: 40px;
    border-top: 1px solid var(--shop-border);
}

.errorPage__products h2 {
    font-size: 21px;
    text-align: center;
    margin-bottom: 28px;
}

@media (max-width: 575px) {
    .errorPage {
        padding: 20px 0 50px;
    }

    .errorPage__search {
        flex-direction: column;
    }

    .errorPage__search input,
    .errorPage__search button {
        width: 100%;
        height: 50px;
        justify-content: center;
    }

    .errorPage__btn {
        width: 100%;
    }

    .errorPage__products {
        margin-top: 40px;
        padding-top: 30px;
    }
}

.row.ssdfsdf > [class*="col-"] {
    display: flex;
    margin-bottom: 26px;
}

.productCard {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-radius: 18px;
    transition: transform .22s, box-shadow .22s;
}

.productCard:hover {
    transform: translateY(-3px);
}

.productCard__thumb {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #f4f4f6;
    margin-bottom: 14px;
}

.productCard__img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.productCard__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.productCard:hover .productCard__img img {
    transform: scale(1.05);
}

.productCard__flags {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    z-index: 2;
    pointer-events: none;
}

.productCard__flag {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 11px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #fff;
}

.productCard__flag--sale {
    background: var(--main-theme-color, #eb3e32);
}

.productCard__flag--new {
    background: #1a1a1a;
}

.productCard__flag--out {
    background: #767680;
}

.productCard__wish {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #9a9aa0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
    transition: color .18s, transform .18s, background .18s;
}

.productCard__wish:hover {
    color: var(--main-theme-color, #eb3e32);
    transform: scale(1.07);
    background: #fff;
}

.productCard__wish.is-active {
    color: var(--main-theme-color, #eb3e32);
}

.productCard__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 0 2px;
}

.productCard__cat {
    display: block;
    font-size: 12.5px;
    color: #9a9aa0;
    line-height: 1.3;
    margin-bottom: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .18s;
}

.productCard__cat:hover {
    color: var(--main-theme-color, #eb3e32);
}

.productCard__title {
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 10px;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.productCard__title a {
    color: #1a1a1a;
}

.productCard__title a:hover {
    color: var(--main-theme-color, #eb3e32);
}

.productCard__prices {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 14px;
}

.productCard__price {
    font-size: 19px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
}

.productCard__price.is-sale {
    color: var(--main-theme-color, #eb3e32);
}

.productCard__old {
    font-size: 14px;
    font-weight: 500;
    color: #a6a6ac;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
}

.productCard__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    margin-top: auto;
    padding: 0 20px;
    border-radius: 30px;
    background: var(--main-theme-color, #eb3e32);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: opacity .2s, background .2s;
}

.productCard__btn:hover {
    color: #fff;
    opacity: .9;
}

.productCard__btn.is-disabled {
    background: #f1f1f3;
    color: #9a9aa0;
    cursor: not-allowed;
    pointer-events: none;
}

.productCard.is-out .productCard__img img {
    opacity: .5;
    filter: grayscale(.6);
}

.productCard.is-out .productCard__title a,
.productCard.is-out .productCard__price {
    color: #8d8d92;
}

.relatedSlider .swiper-slide > div,
.relatedSlider .relatedCardCol {
    display: flex;
    width: 100%;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .row.ssdfsdf > [class*="col-"] {
        margin-bottom: 20px;
    }

    .productCard__title {
        font-size: 14.5px;
        min-height: 39px;
    }

    .productCard__price {
        font-size: 17.5px;
    }
}

@media (max-width: 575px) {
    .productCard__thumb {
        border-radius: 14px;
        margin-bottom: 11px;
    }

    .productCard__wish {
        width: 34px;
        height: 34px;
        top: 9px;
        right: 9px;
    }

    .productCard__flags {
        top: 9px;
        left: 9px;
    }

    .productCard__flag {
        height: 23px;
        padding: 0 9px;
        font-size: 11.5px;
    }

    .productCard__btn {
        height: 42px;
        font-size: 14px;
    }

    .productCard__cat {
        font-size: 11.5px;
    }
}

.productCard:hover {
    transform: none;
}

.productCard__btn svg {
    transition: transform .25s;
}

.productCard:hover .productCard__btn {
    background: #1a1a1a;
    opacity: 1;
}

.productCard:hover .productCard__btn svg {
    transform: translateX(3px);
}

.productCard:hover .productCard__title a {
    color: var(--main-theme-color, #eb3e32);
}

.productCard__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, .04);
    opacity: 0;
    transition: opacity .25s;
    pointer-events: none;
}

.productCard:hover .productCard__thumb::after {
    opacity: 1;
}

.breadcrumb-area .breadcrumb {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 6px;
    padding: 2px 0;
    margin: 0;
    align-items: center;
}

.breadcrumb-area .breadcrumb::-webkit-scrollbar {
    display: none;
}

.breadcrumb-area .breadcrumb li {
    white-space: nowrap;
    flex-shrink: 0;
    margin: 0;
}

.breadcrumb-area .breadcrumb li:last-child {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumb-area {
    position: relative;
}

.product-single-item .product-single-info .product-size {
    display: block;
    margin-bottom: 26px;
}

.product-single-item .product-single-info .product-size .title {
    display: block;
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 600;
}

.product-single-item .product-single-info .product-size .size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
    padding: 0;
}

.product-single-item .product-single-info .product-size .size-list li {
    margin: 0;
    min-width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.searchPanel {
    padding: 22px 0 26px;
}

.searchPanel__top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.searchPanel__form {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    height: 54px;
    padding: 0 16px;
    border: 1px solid var(--shop-border);
    border-radius: 30px;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    min-width: 0;
}

.searchPanel__form:focus-within {
    border-color: #1a1a1a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .07);
}

.searchPanel__icon {
    color: #9a9aa0;
    flex-shrink: 0;
    margin-right: 10px;
}

.searchPanel__form input {
    flex: 1 1 auto;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #1a1a1a;
    min-width: 0;
    height: 100%;
}

.searchPanel__form input::-webkit-search-cancel-button {
    display: none;
}

.searchPanel__clear {
    display: none;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    background: #ececf0;
    color: #6f6f78;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .18s, color .18s;
}

.searchPanel__clear:hover {
    background: var(--main-theme-color, #eb3e32);
    color: #fff;
}

.searchPanel__close {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 54px;
    padding: 0 20px;
    border: 1px solid var(--shop-border);
    border-radius: 30px;
    background: #fff;
    color: #55555c;
    font-size: 15px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all .18s;
}

.searchPanel__close:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.searchPanel__results {
    position: relative;
    margin-top: 16px;
}

.searchDropdown--panel {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    max-height: none;
    border-radius: 0;
}

.searchDropdown--panel.is-open {
    display: block;
}

.searchDropdown--panel .searchDropdown__item,
.searchDropdown--panel .searchDropdown__cat {
    padding: 10px 12px;
    border-radius: 12px;
}

.searchDropdown--panel .searchDropdown__title {
    padding-left: 12px;
}

.searchDropdown--panel .searchDropdown__all {
    border-top: 1px solid var(--shop-border);
    margin-top: 10px;
    padding-top: 14px;
}

.searchPanel__hint {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.searchPanel__hint span {
    font-size: 13px;
    color: var(--shop-muted);
    margin-right: 2px;
}

.searchPanel__tag {
    padding: 8px 16px;
    border: 1px solid var(--shop-border);
    border-radius: 30px;
    background: #fff;
    color: #333;
    font-size: 13.5px;
    cursor: pointer;
    transition: all .18s;
}

.searchPanel__tag:hover {
    border-color: var(--main-theme-color, #eb3e32);
    color: var(--main-theme-color, #eb3e32);
}

@media (max-width: 767px) {
    .aside-search-box-wrapper.offcanvas-top {
        height: 100% !important;
        max-height: 100%;
    }

    .searchPanel {
        padding: 16px 0;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .searchPanel .container {
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 0;
    }

    .searchPanel__top {
        gap: 10px;
    }

    .searchPanel__form {
        height: 48px;
        padding: 0 14px;
    }

    .searchPanel__close {
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .searchPanel__close span {
        display: none;
    }

    .searchPanel__results {
        flex: 1 1 auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin-top: 14px;
        padding-bottom: 20px;
    }

    .searchDropdown--panel .searchDropdown__item img {
        width: 52px;
        height: 52px;
    }

    .breadcrumb-area .breadcrumb li:last-child {
        max-width: 160px;
    }

    .page-header-content .title {
        font-size: 20px;
    }
}

.aside-search-box-wrapper.offcanvas-top {
    top: 0;
    bottom: auto;
    height: auto;
    max-height: 100%;
    border-radius: 0 0 24px 24px;
    transform: translateY(-100%);
    transition: transform .25s ease-out, visibility .25s;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
}

.aside-search-box-wrapper.offcanvas-top.show {
    transform: translateY(0);
}

.aside-search-box-wrapper.offcanvas-top.hiding,
.aside-search-box-wrapper.offcanvas-top:not(.show) {
    transform: translateY(-100%);
}

.catalogFilters__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #f3f3f5;
    color: #55555c;
    font-size: 0;
    transition: background .18s, color .18s;
}

.catalogFilters__close:hover {
    background: var(--main-theme-color, #eb3e32);
    color: #fff;
}

@media (min-width: 1200px) {
    .catalogFilters__close {
        display: none;
    }
}

@media (max-width: 1199px) {
    .aside-search-box-wrapper.offcanvas-top {
        border-radius: 0;
    }

    .catalogFilters {
        display: flex;
        flex-direction: column;
        top: 0;
        bottom: 0;
        height: 100%;
        max-height: 100%;
        padding: 0;
        border: none;
        overflow: hidden;
    }

    .catalogFilters__head {
        flex-shrink: 0;
        padding: 16px 18px;
        margin: 0;
        border-bottom: 1px solid var(--shop-border);
        background: #fff;
    }

    .catalogFilters__head h3 {
        font-size: 18px;
    }

    .catalogFilters__body {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 4px 18px 18px;
    }

    .catalogFilters__actions {
        position: static;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
        padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--shop-border);
        background: #fff;
        box-shadow: 0 -8px 22px rgba(0, 0, 0, .07);
    }

    .catalogFilters__done {
        display: inline-flex;
        flex: 1 1 auto;
        height: 50px;
        padding: 0 18px !important;
        border-radius: 30px;
        font-size: 15px !important;
        line-height: 1 !important;
    }

    .catalogFilters__reset {
        flex: 0 0 auto;
        height: 50px;
        padding: 0 16px;
        white-space: nowrap;
    }

    .catalogFilters__reset svg {
        flex-shrink: 0;
    }

    .catalogFilterBlock:last-of-type {
        border-bottom: none;
    }

    .catalogColors label,
    .catalogCheck {
        padding: 9px 0;
    }
}

@media (max-width: 575px) {
    .catalogFilters__reset span,
    .catalogFilters__reset {
        font-size: 0;
        gap: 0;
        width: 50px;
        padding: 0;
        justify-content: center;
    }

    .catalogFilters__reset svg {
        width: 17px;
        height: 17px;
    }

    .catalogSizes {
        grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
    }
}
