/* Global variables and templates */

html {
    zoom: 80%;
    scroll-behavior: smooth;
}

@media(max-width: 767.98px) {
    html {
        zoom: 100%;
    }
}

@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");

:root {
    --theme: #1F9F0E;
    --font-color: #4A1D1F;
    --btn-txt: #FBEDCD;
    --bg-color: #F8F8F8;
    --place-color: rgba(255, 238, 230, 0.8);
    --heading-color: #FE5900;
    --filter-color: #FFE8DC;
    --cart-btn-color: #FF9100;
    --black: #272727;
    --grey: #A3A3A3; 
    --ru-font: 'Pangram Sans', sans-serif;
    --kz-font: 'Open Sans', sans-serif; 
    --font-size: 24px;
    --container: 1270px;
    --cat-container: 1440px; 
    --cat-count: 3; /* Category count */
    --column-2: 2; 
    --catalog-products-grid: 1fr 1fr 1fr;
}

body *::selection {
    background-color: var(--cart-btn-color);
    color: white;
}

.container {
    width: 95%;
    max-width: var(--container);
    margin: 0 auto;
}

.catalog-container {
    width: 95%;
    max-width: var(--cat-container);
    margin: 0 auto;
}

@media(max-width: 1330px) {
    :root {
        --catalog-products-grid: 1fr 1fr;
    }
}

@media(max-width: 991.98px) {
    :root {
        --cat-count: 2;
        --column-2: 1;
    }
}

@media(max-width: 767.98px) {
    :root {
        --font-size: 16px;
    }
}

/* Styled classes */

.search-form__clear-btn {
    padding: 0px;
    border: none;
}

.grey {
    color: var(--grey);
}

.placeholder {
    color: var(--grey);
    font-weight: 600;
}

.lang-ru, body.lang-ru, .lang-ru .btn {
    font-family: var(--ru-font);
}

.lang-kz, body.lang-kz, .lang-kz .btn {
    font-family: var(--kz-font);
}

div.hidden, .hidden {
    display: none;
}

@media(min-width: 992px) {
    .hide-lg {
        display: none !important;
    }
}

@media(max-width: 991.98px) and (min-width: 767.98px) {
    .hide-md {
        display: none !important;
    }
}

@media(max-width: 767.98px) {
    .hide-sm {
        display: none !important;
    }
}

/* Btn, input, texarea styles START */

a {
    transition: 0.3s;
}

.btn {
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 14px 30px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    border: 1px solid transparent;
    color: var(--btn-txt);
    transition: 0.4s;
}

.btn.green-btn {
    background-color: var(--theme);
}

.btn.bordered-btn {
    background-color: white;
    border: 2px solid var(--heading-color);
    color: var(--font-color);
}

.btn.cart-btn {
    padding: 10px 14px;
    color: white;
    border: 1px solid transparent;
    background-color: var(--cart-btn-color);
    font-size: 16px;
}

.btn.disabled {
    border: 1px solid var(--cart-btn-color);
    color: var(--cart-btn-color);
    background-color: white;
    pointer-events: none;
}

.btn.cart-btn .icon-cart {
    margin-left: 10px;
}

input, textarea, select {
    font-family: inherit;
}

input, textarea {
    border: 2px solid var(--heading-color);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 18px;
    font-weight: 600;
}

input::placeholder, textarea::placeholder {
    font-size: 18px;
    font-weight: 600;
    color: var(--grey);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none; 
    margin: 0;
}

input[type='number'],
input[type="number"]:hover,
input[type="number"]:focus {
    appearance: none;
    -moz-appearance: textfield;
}

@media(max-width: 767.98px) {
    .btn {
        padding: 10px 20px;
        font-size: 16px;
    }

    .btn.cart-btn {
        padding: 9px;
        font-size: 10px;
    }

    input, textarea {
        font-size: 16px;
    }
}

/* Btn, input, textarea styles END */



/* Header styles START */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px 0 15px 0;
    z-index: 6;
    background-color: white;
	transition: all 0.3s;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    max-width: 166px;
}

.header-logo img {
    width: 100%;
}

.header-nav {
    margin-left: 40px;
}

.header-menu {
    display: flex;
    align-items: center;
}

.header-menu li:not(:last-child) {
    margin-right: 45px;
}

.header-menu li a {
    font-size: 20px;
    font-weight: 600;
    display: block;
}

.header-submenu__wrapper {
    position: relative;
}

.header-submenu {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.header-btn__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.header-btn__wrapper::before {
    content: '';
    display: block;
    height: 55px;
    width: 2px;
    margin: 0 auto;
    background-color: var(--black);
}

.header-title {
    font-size: 20px;
    color: var(--heading-color);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 0.9em;
}

.header-btn {
    margin-left: 16px;
}

@media(max-width: 1399.98px) {
    .header-menu li:not(:last-child) {
        margin-right: 20px;
    }
}

@media(max-width: 1250px) {
    .header-nav {
        display: none;
    }

    .header-btn__wrapper {
        margin-left: auto;
        flex-grow: unset;
    }

    .header-btn__wrapper::before {
        display: none;
    }
}

@media(max-width: 767.98px) {
    .header-logo {
        max-width: 90px;
    }

    .header-title {
        font-size: 10px;
    }

    .header-btn {
        font-size: 10px;
        padding: 5px 10px;
        margin-left: 5px;
    }
}

/* Mobile menu */

.mobile-menu__button {
    display: none;
    flex-direction: column;
    padding: 15px;
    cursor: pointer;
}

.mobile-menu__button span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--black);
}

.mobile-menu__button span:not(:last-child) {
    margin-bottom: 2px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0px;
    right: 0;
    transform: translateX(200%);
    width: 100%;
    height: 1000px;
    z-index: 10;
    transition: transform 0.5s;
}

.mobile-menu__wrapper {
    position: relative;
    z-index: 2;
    width: 50%;
    height: 100%;
    padding: 32px;
    margin-left: auto;
    background-color: white;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.29);
}

.mobile-menu__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.mobile-nav {
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    padding: 20px 0;
}

.mobile-nav-menu li:not(:last-child) {
    margin-bottom: 22px;
}

.mobile-nav-menu li a {
    font-size: 20px;
    font-weight: 600;
}

.mobile-menu__close-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
    background-color: transparent;
}

.mobile-menu.active { 
    transform: translateX(0%);    
}

.mobile-menu__social-media {
    display: flex;
    margin-top: 30px;
}

.mobile-menu__social-media li:not(:last-child) {
    margin-right: 8px;
}

.mobile-menu__social-media li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    box-shadow: 0px 0px 5.0838px rgba(0, 0, 0, 0.25);
    color: var(--heading-color);
    font-size: 20px;
}

.mobile-menu__social-media li a.icon-telegram {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
}

.mobile-menu__social-media li a.icon-telegram::before {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width: 1250px) {
    .mobile-menu__button {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}

@media(max-width: 767.98px) {
    .mobile-menu__button {
        padding: 10px;
    }

    .mobile-menu__wrapper {
        width: 80%;
    }

    .mobile-menu__social-media {
        flex-wrap: wrap;
    }

    .mobile-menu__social-media li {
        margin-bottom: 8px;
    }
}

@media (max-width: 350px) {
    .header-title {
        font-size: 8px;
    }
}

/* Header styles END */


/* Footer styles START */

.footer {
    padding: 100px 0 40px 0;
    background-color: white;
}

.footer-top__wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--black);
}

.footer-top__menu {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    margin-right: 170px;
}

.footer-top__menu li:not(:last-child) {
    margin-bottom: 15px;
}

.footer-top__image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 92px;
    border-left: 2px solid var(--black);
    border-right: 2px solid var(--black);
    margin-bottom: 25px;
}

.footer-top__vizavi-map {
    margin-bottom: 25px;
}

.footer-bottom__wrapper {
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom__social-media {
    display: flex;
}

.footer-bottom__social-media li:not(:last-child) {
    margin-right: 8px;
}

.footer-bottom__social-media li a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    box-shadow: 0px 0px 5.0838px rgba(0, 0, 0, 0.25);
    color: var(--heading-color);
    font-size: 20px;
}

.footer-bottom__social-media li a.icon-telegram {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
}

.footer-bottom__social-media li a.icon-telegram::before {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width: 1399.98px) {
    .footer-top__image {
        width: 100%;
    }
}

@media(max-width: 991.98px) {
    .footer-top__image-wrapper {
        padding: 0 20px;
    }
}

@media(max-width: 767.98px) {
    .footer-top__wrapper {
        flex-direction: column;
    }

    .footer-top__image-wrapper {
        padding: 0px;
        border-left: none;
        border-right: none;
    }

    .footer-bottom__wrapper {
        flex-direction: column;
        justify-content: center;
    }

    .footer-bottom__social-media {
        margin-top: 20px;
    }
}

/* Footer styles END */


/* Animations styles START */

@keyframes scaleOut {
    0%{transform: translate(-50%, -50%) scale(0.6);}
    100%{transform: translate(-50%, -50%) scale(1);}
}

@keyframes notify {
    0%{opacity:1;}
    100%{opacity: 0; visibility: hidden; z-index: -1;}
}

@media (max-width:767.98px) {
    @keyframes scroll {
        0%{transform: translateX(0%);}
        50%{transform: translateX(-200%);}
        100%{transform: translateX(0%);}
    }
}

/* Animations styles END */


/* Popup styles START */

.notify-popup__content {
    position: absolute;
    top: 200px;
    right: 20px;
    padding: 20px 25px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    width: fit-content;
}

.notify-popup__title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 30px;
    color: #000000;
}

.notify-popup__title svg {
    margin-right: 17px;
}

.notify-popup__description {
    color: var(--grey);
    text-align: center;
    font-size: 18px;
    color: #A3A3A3;
    margin: 17px auto 0 auto;
    max-width: 276px;
}


.popup-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.56);
    display: none;
}

.popup-bg.active {
    display: block;    
}

.popup__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    height: fit-content;
    animation: scaleOut 0.6s;
}

.popup__header {
    display: flex;    
}

.close-popup {
    color: #A2A6B0;
    background-color: white;
    border-radius: 100%;
    font-size: 47px;
    margin-left: auto;
    margin-bottom: 20px;
    cursor: pointer;
}

.popup__content {
    padding: 60px;
    background-color: rgba(255, 255, 255, 0.88);
    border-radius: 40px;
    display: flex;
    flex-direction: column;   
}

.popup__heading {
    text-align: center;
    margin-bottom: 28px;
}

.popup__description {
    font-size: 24px;
    max-width: 480px;
    text-align: center;
    margin: 0 auto 50px auto;
}

@media (max-width: 767.98px) {
    .popup__inner {
        max-width: 90%;
        width: 100%;
    }
}

@media(max-width: 576.98px) {
    .popup__inner {
        max-width: 95%;
    }

    .popup__content {
        padding: 40px 20px;
    }
}

/* Popup styles END */


/* Breadcrumbs styles END */

.breadcrumbs__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    font-size: 18px;
}

.breadcrumbs__list .link a:hover {
    color:  var(--heading-color);
}

.breadcrumbs__list .separator {
    margin: 0 8px;
    color:  var(--heading-color);
}

.breadcrumbs__list .disabled-link {
    color: var(--grey);
}

/* Breadcrumbs styles END */