@import url("header.css");
@import url("add/search-inline.css");
@import url("add/catalog-lightbox.css");
@import url("add/side-menu.css");

:root {
    --white: #ffffff;
    --gray: #f1f3f6;
    --light-gray: #f9f9f9;
    --dark-gray: #5b5b5b;
    --primary: #3d3c39;
    --primary-match: var(--white);
    --accent: #000000;
    --accent-match: var(--white);
    --black: #2b2b2a;
    --border: #eaeaea;
    --header-height: 106px;
    --top-bar-height: 40px;
    --container-indent: 60px;
    --blocks-indent: 16px;
    --products-in-col: 5;
    --products-indent-h: 40px;
    --products-indent-w: 20px;
    --scroll-bar: 6px;
    --font-family-1: "Fixel Text";
    --font-family-2: "Fixel Display";
    --btn-height: 45px;
    --btn-height-small: 40px;
    --btn-padding: 0 24px;
}
@media (max-width: 1440px) {
    :root {
        --products-in-col: 5;
    }
}
@media (max-width: 1279px) {
    :root {
        --header-height: 64px;
        --container-indent: 30px;
        --products-in-col: 4;
    }
}
@media (max-width: 1024px) {
    :root {
        --products-in-col: 3;
    }
}
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
        --products-indent-h: 20px;
        --products-indent-w: 10px;
        --products-in-col: 2;
    }
}
@font-face {
    font-family: "Fixel Display";
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/fixel/fixel-display-400.woff2) format("woff2");
}
@font-face {
    font-family: "Fixel Display";
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/fixel/fixel-display-500.woff2) format("woff2");
}
@font-face {
    font-family: "Fixel Display";
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/fixel/fixel-display-600.woff2) format("woff2");
}
@font-face {
    font-family: "Fixel Text";
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/fixel/fixel-text-400.woff2) format("woff2");
}
@media (pointer: fine) {
    ::-webkit-scrollbar {
        width: var(--scroll-bar);
    }
    ::-webkit-scrollbar-track {
        background-color: var(--white);
    }
    ::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 20px;
        border: 0px;
        transition: scrollbar-color 0.5s ease-out;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary);
    }
}
*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--white);
    color: var(--black);
    font-family: var(--font-family-1);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    box-sizing: border-box;
    -webkit-locale: auto;
    -webkit-text-size-adjust: none !important;
    -webkit-tap-highlight-color: transparent;
    cursor: default;
}
main {
    position: relative;
    top: var(--header-height);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}
section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    overflow: hidden;
}
.container {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: calc(100% - var(--container-indent));
    width: calc(100% - var(--container-indent));
    margin: 0 (var(--container-indent) / 2);
}
.container-full {
    max-width: calc(100% - 0px);
    width: calc(100% - 0px);
    margin: 0 0;
}
.block-with-cols {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--blocks-indent);
}
.col-50 {
    display: flex;
    flex-direction: column;
    width: calc(50% - var(--blocks-indent) / 2);
}
/* Размеры текстов - Start */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
    font-family: var(--font-family-1);
    font-weight: 500;
    margin: 0;
}
.h1 {
    font-size: 48px;
    line-height: 56px;
}
h2,
.h2 {
    font-size: 32px;
    line-height: 40px;
}
h3,
.h3 {
    font-size: 25px;
    line-height: 30px;
}
h4,
.h4 {
    font-size: 22px;
    line-height: 28px;
}
h5,
.h5 {
    font-size: 20px;
    line-height: 24px;
}
p {
    font-family: var(--font-family-1);
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    margin: 0;
}
small {
    font-family: var(--font-family-1);
    font-size: 14px;
    line-height: 17px;
}
ul.menu {
    display: flex;
    gap: 15px;
    list-style: none;
    font-family: var(--font-family-2);
    font-size: 16px;
    line-height: 24px;
}
ul.menu#top-bar-menu {
    font-size: 14px;
    line-height: 17px;
}
@media (max-width: 1440px) {
    .h1 {
        font-size: 48px;
        line-height: 56px;
    }
    h2,
    .h2 {
        font-size: 32px;
        line-height: 40px;
    }
    h3,
    .h3 {
        font-size: 25px;
        line-height: 30px;
    }
    h4,
    .h4 {
        font-size: 22px;
        line-height: 28px;
    }
    p {
        font-size: 14px;
        line-height: 22px;
    }
}
@media (max-width: 1279px) {
    h1,
    .h1 {
        font-size: 24px;
        line-height: 28px;
    }
    h2,
    .h2 {
        font-size: 24px;
        line-height: 28px;
    }
    h3,
    .h3 {
        font-size: 20px;
        line-height: 24px;
    }
}
/* Размеры текстов - End */

a,
a p {
    color: inherit;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.link {
    transition: all 0.3s ease;
}
.link:hover {
    color: var(--black);
}
.hover-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.underline {
    text-decoration: underline;
}
del {
    color: #d3d3d3;
}
ins {
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
    object-fit: cover;
    height: auto;
}
.overlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.overlay > * {
    z-index: 1;
}
.overlay.overlay-dark:before {
    background: rgb(0 0 0 / 20%);
}

.primary {
    color: var(--primary);
}
.gray {
    color: var(--gray);
}
.light-gray {
    color: var(--light-gray);
}
.dark-gray {
    color: var(--dark-gray);
}
.black {
    color: var(--black);
}
.white {
    color: var(--white);
}
ul.list,
ol.list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 0;
}
ul.list li,
ol.list li {
    display: inline;
    padding-left: 25px;
}
ul.list li strong,
ol.list li strong {
    width: calc(100% - 16px - 10px);
}
ul.list li:before,
ol.list li:before {
    content: "";
    display: flex;
    width: 16px;
    height: 1px;
    background: var(--black);
    border-radius: 100%;
    position: relative;
    top: 6.5px;
    left: -22px;
}
ul.list ul,
ol.list ul {
    margin-left: 30px;
    margin-bottom: 10px;
}
ul.list ul li,
ol.list ul li {
    gap: 6px;
    flex-wrap: nowrap;
}
ul.list ul li:before,
ol.list ul li:before {
    content: "";
    display: flex;
    min-width: 9px;
    width: 9px;
    height: 9px;
    background: #ffffff;
    border-radius: 100%;
    position: relative;
    top: 2.5px;
    border: 1px solid #000;
}
@media (min-width: 1280px) {
    .mob {
        display: none !important;
    }
}
@media (max-width: 1279px) {
    .pc {
        display: none !important;
    }
    ul.list ul,
    ol.list ul {
        margin-left: 15px;
    }
}
@media (max-width: 1024px) {
    .col-50 {
        width: 100%;
    }
}
/* КНОПКИ */
.btn-group {
    display: flex;
    align-items: center;
    gap: var(--blocks-indent);
    z-index: 1;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: var(--btn-height);
    width: fit-content;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
    cursor: pointer;
}
.btn span {
    font-family: var(--font-family-1);
    font-weight: 500;
    height: 12px;
    transition: all 0.3s ease;
}
.btn img {
    height: 14px;
    object-fit: contain;
    transition: filter 0.3s;
}
.btn-full {
    width: 100%;
}

/* Primary - Start */
.btn.btn-primary {
    background: var(--primary);
    padding: var(--btn-padding);
}
.btn.btn-primary span {
    color: var(--primary-match);
}
.btn.btn-primary:hover {
    background: var(--accent);
}
.btn.btn-primary:hover span {
    color: var(--accent-match);
}
.btn.btn-primary img {
    filter: url(#primary-color-match);
}
/* Primary - End */

/* Dark - Start */
.btn.btn-dark {
    background: var(--black);
    padding: var(--btn-padding);
}
.btn.btn-dark span {
    color: var(--white);
}
.btn.btn-dark:hover {
    background: var(--white);
}
.btn.btn-dark:hover span {
    color: var(--black);
}
.btn.btn-dark img {
    filter: brightness(0) invert(1);
}
.btn.btn-dark:hover > img {
    filter: brightness(1) invert(0);
}
/* Dark - End */

/* White - Start */
.btn.btn-white {
    background: var(--white);
    padding: var(--btn-padding);
}
.btn.btn-white span {
    color: var(--black);
}
.btn.btn-white:hover {
    background: var(--black);
}
.btn.btn-white:hover span {
    color: var(--white);
}
.btn.btn-white img {
    filter: brightness(1) invert(0);
}
.btn.btn-white:hover > img {
    filter: brightness(0) invert(1);
}
/* White - End */

/* Gray - Start */
.btn.btn-gray {
    padding: var(--btn-padding);
    background: var(--gray);
}
.btn.btn-gray span {
    color: var(--black);
}
.btn.btn-gray:hover {
    background: var(--primary);
}
.btn.btn-gray:hover span {
    color: var(--primary-match);
}
/* Gray - End */

/* Border - Start */
.btn.btn-border {
    background: transparent;
    border: 2px solid var(--border);
    padding: var(--btn-padding);
}
.btn.btn-border span {
    color: var(--black);
}
.btn.btn-border:hover {
    background: var(--primary);
    border: 2px solid var(--primary);
}
.btn.btn-border:hover span {
    color: var(--primary-match);
}
.btn.btn-border.primary {
    border: 2px solid var(--primary);
}
.btn.btn-border.primary span {
    color: var(--black);
}
.btn.btn-border.primary:hover {
    background: var(--primary);
}
.btn.btn-border.primary:hover span {
    color: var(--primary-match);
}
.btn.btn-border.primary:hover img {
    filter: brightness(0) invert(0);
}
.btn-border.btn-on-dark span {
    color: var(--white);
}
.btn-border.btn-on-dark img {
    filter: brightness(0) invert(1);
}
/* Border - End */

/* Special - Start */
.btn.btn-circle {
    height: 38px;
    width: 38px;
    padding: 9px;
    border: 1px solid var(--border);
    border-radius: 100%;
}
.btn.btn-catalog,
.btn.btn-sale {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    margin: 0 20px;
}
.btn.btn-small {
    height: var(--btn-height-small);
}
.disabled {
    background: var(--gray) !important;
}
.center {
    margin-left: auto !important;
    margin-right: auto !important;
}
.column {
    flex-direction: column !important;
}
.row {
    flex-direction: row !important;
}
.wrap {
    flex-wrap: wrap !important;
}
/* Special - End */

/* КНОПКИ - End */

/* Breadcrumb - Start */
.woocommerce-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px !important;
    line-height: 14px !important;
    padding: 30px calc(var(--container-indent) / 2) 30px calc(var(--container-indent) / 2) !important;
    margin: 0 !important;
    color: var(--black) !important;
    overflow-x: auto;
}
.woocommerce .woocommerce-breadcrumb:before {
    display: none !important;
}
.woocommerce-breadcrumb a {
    color: #bcbcbc !important;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.woocommerce-breadcrumb a:hover {
    color: var(--black);
    white-space: nowrap;
    transition: all 0.3s ease;
}
.woocommerce-breadcrumb span {
    color: var(--black) !important;
    white-space: nowrap;
}
.woocommerce-breadcrumb svg {
    transform: translateY(0px);
}
/* Breadcrumb - End */

/* Product List - Start */
.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--products-indent-h) var(--products-indent-w);
}
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(
        (100vw - var(--container-indent) - var(--scroll-bar)) / var(--products-in-col) - var(--products-indent-w) *
            (var(--products-in-col) - 1) / var(--products-in-col)
    );
}
.product-card > a {
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 0;
    line-height: 0;
}
.product-card img {
    height: calc(
        (
                (100vw - var(--container-indent) - var(--scroll-bar)) / var(--products-in-col) -
                    var(--products-indent-w) * (var(--products-in-col) - 1) / var(--products-in-col)
            ) * 1.26
    );
    width: 100%;
    object-fit: contain;
    border-radius: 5px;
}
/* Product Badge - Start */
.product-card .product-badge {
    display: none;
}
.product-card .product-badge:has(span) {
    display: block;
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    border-radius: 3px;
    padding: 6px 7px 4px 7px;
    font-size: 13px;
    line-height: 13px;
    color: var(--primary-match);
}
/* Product Badge - End */

/* Product Stock Status - Start */
.product-card .stock-status {
    display: none !important;
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: var(--white);
    border-radius: 80px;
    font-family: var(--font-family-1);
    font-size: 13px;
    line-height: 13px;
    color: #3d3d3d;
}
.stock-status span {
    font-weight: bold;
}
.stock-status.in-stock span {
    color: #1c9737;
}
.stock-status.out-of-stock span {
    color: #ff0000;
}
.stock-status.on-order span {
    color: #ffed00;
}
.stock-status.no-status span {
    color: #2759ff;
}
/* Product Stock Status - End */

/* Wishlist + Compare - Start  */
.product-card .compare-btn,
.product-card .wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 27px;
    height: 27px;
    background: var(--white);
    border: none;
    border-radius: 3px;
    padding: 5px 5px 6px 5px;
    cursor: pointer;
}
.product-card .compare-btn {
    top: calc(15px + 27px + 7px);
}
.product-card button.wishlist-btn:before {
    content: "" !important;
    display: flex !important;
    width: 27px !important;
    height: 27px !important;
    margin-right: 0px !important;
    background: url(/wp-content/themes/shop/img/icons/black/wishlist.svg) !important;
    background-position: 50% 50% !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    transition: all 0.3s ease;
}
.product-card button.wishlist-btn.woosw-added:before {
    background: url(/wp-content/themes/shop/img/icons/black/wishlist-full.svg) !important;
    background-position: 50% 50% !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}
.product-card button.compare-btn:before {
    content: "" !important;
    display: flex !important;
    width: 27px !important;
    height: 27px !important;
    margin-right: 0px !important;
    background: url(/wp-content/themes/shop/img/icons/black/compare.svg) !important;
    background-position: 50% 50% !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    transition: all 0.3s ease;
}
button.woosc-btn.woosc-btn-has-icon.woosc-btn-added:before {
    display: flex !important;
}
/* Wishlist + Compare - End  */

/* Start Rating - Start  */
.product-card .star-rating-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    display: none !important;
}
.product-card .star-rating-wrapper .star-rating {
    font-size: 18px;
    line-height: 18px;
    color: #cbcbcb;
}
.product-card .star-rating-wrapper .rating-value {
    font-family: var(--font-family-1);
    font-size: 13px;
    line-height: 13px;
    color: #cbcbcb;
    font-weight: 500;
    transform: translateY(1px);
}
/* Start Rating - End  */

/* Product SKU - Start  */
.product-card .product-card-sku {
    font-family: var(--font-family-2);
    font-size: 16px;
    line-height: 22px;
    color: #6b7d90;
    margin-top: 17px;
    display: none !important;
}

@media (max-width: 1024px) {
    .product-card .product-card-sku {
        font-size: 14px;
        line-height: 22px;
        margin-top: 14px;
    }
}
/* Product SKU - End  */

.product-card .woocommerce-loop-product__title {
    font-family: var(--font-family-1);
    font-size: 18px;
    line-height: 21px;
    width: 100%;
    margin: 14px 0;
    color: var(--black);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    height: 42px;
}
/* Variation - Start  */
.options-group {
    margin-bottom: 14px;
}
.options-group .option-block.pa_color-options {
    display: none;
}
.options-group .option-block {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.options-group .option-block span.option-value {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
    padding: 0 5px;
    width: 26px;
    height: 26px;
    padding-top: 2px;
    background: #eaeaea;
    border-radius: 5px;
    font-size: 14px;
    line-height: 14px;
}
.product-list .option-head {
    display: none;
}
/* Variation - End  */

/* Price - Start  */
.product-card .price {
    font-family: var(--font-family-1);
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: var(--black);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    width: fit-content;
    margin-top: auto;
}
.product-card .price.variable-price {
    gap: 5px;
}
.product-card .price del {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
}
.product-card .price ins {
    text-decoration: none;
}
/* Price - End  */

/* Add To Cart - Start  */
.product-card .add_to_cart_button,
.product-card .product_type_variable {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    background: var(--primary);
    border-radius: 5px;
}
.product-card .add_to_cart_button img,
.product-card .product_type_variable img {
    filter: url(#primary-color-match);
    width: 18px;
    height: 19px !important;
}
.product-card .add_to_cart_button:hover {
    background: var(--accent);
}
/* Add To Cart - End  */

@media (min-width: 1921px) {
    .product-card {
        width: calc(
            (1920px - var(--container-indent)) / var(--products-in-col) - var(--products-indent-w) *
                (var(--products-in-col) - 1) / var(--products-in-col)
        );
    }
    .product-card img {
        height: calc(
            (
                    (1920px - var(--container-indent) - var(--scroll-bar)) / var(--products-in-col) -
                        var(--products-indent-w) * (var(--products-in-col) - 1) / var(--products-in-col)
                ) * 1.26
        );
    }
}
@media (max-width: 1440px) {
    .product-list .product-card:nth-child(n + 11) {
        display: none;
    }
}
@media (max-width: 1279px) {
    .product-card {
        width: calc(
            (100vw - var(--container-indent)) / var(--products-in-col) - var(--products-indent-w) *
                (var(--products-in-col) - 1) / var(--products-in-col)
        );
    }
    .product-card img {
        height: calc(
            (
                    (100vw - var(--container-indent)) / var(--products-in-col) -
                        var(--products-indent-w) * (var(--products-in-col) - 1) / var(--products-in-col)
                ) * 1.26
        );
    }
    @media (pointer: fine) {
        .product-card {
            width: calc(
                (100vw - var(--container-indent) - var(--scroll-bar)) / var(--products-in-col) -
                    var(--products-indent-w) * (var(--products-in-col) - 1) / var(--products-in-col)
            );
        }
        .product-card img {
            height: calc(
                (
                        (100vw - var(--container-indent) - var(--scroll-bar)) / var(--products-in-col) -
                            var(--products-indent-w) * (var(--products-in-col) - 1) / var(--products-in-col)
                    ) * 1.26
            );
        }
    }
}
@media (max-width: 1024px) {
    .product-list .product-card:nth-child(n + 9) {
        display: none;
    }
    .product-card .product-badge:has(span) {
        top: 10px;
        left: 10px;
        padding: 5px 7px 3px 7px;
        font-size: 12px;
        line-height: 12px;
    }
    .product-card .compare-btn,
    .product-card .wishlist-btn {
        top: 10px;
        right: 10px;
    }
    .product-card .compare-btn {
        top: calc(10px + 27px + 7px);
    }
    .product-card .woocommerce-loop-product__title {
        font-size: 16px;
        line-height: 19px;
        margin: 10px 0;
        height: 38px;
    }
    .product-card a.add_to_cart_button.ajax_add_to_cart {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 39px;
        width: 39px;
        margin: 14px 0 0 0;
        padding: 10px;
        background: var(--primary);
        border: 0;
        font-size: 14px;
        line-height: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
        border-radius: 4px;
        cursor: pointer;
    }
}
/* Product card - End */
