/* ===================================
            Global variables
====================================== */
:root {
    --alt-font: "Inter", sans-serif;
    --primary-font: "Inter", sans-serif;

    /* colors */
    --primary: #9f5cf9;
    /*--primary: #5A4DB7;*/
    --primary-hover: #B17FFA;
    --primary-active: #ede0ff;
    --primary-light: #dfc9fe;

    --primary-gradient: linear-gradient(135deg,rgba(159, 92, 249, 1) 0%, rgba(255, 172, 99, 1) 100%);

    --base-color: #9f5cf9;
    --base-color-hover: #B17FFA;
    --base-color-light: #ede0ff;
    --base-color-light-hover: #dfc9fe;

    --secondary: #02C988;
    --secondary-hover: #07FEB0;

    --price-def: #0eb500;
    --price-disk: #ff2fd4;

    --accent: #F04F9B;
    --accent-hover: #e75d9b;

    --required: #f44336;

    --white: #FFFFFF;

    --black: #000000;
    --black-100: #333333;
    --black-200: #232323;
    --black-300: #111111;

    --gray-100: #F5F5ED;
    --gray-200: #D6D7D2;
    --gray-300: #C0BFBB;
    --gray-400: #999A95;
    --gray-500: #5E5E5C;
    --light-blue: #8297FF;

    --shadow-light: 0px 0px 8px 2px rgba(168, 176, 182, 0.1);
    --shadow-medium: 0px 0px 12px 2px rgba(147, 157, 165, 0.2);
    --shadow-strong: 0px 0px 20px 4px rgba(122, 130, 137, 0.25);

    --shadow-primary-light: 0px 0px 8px 2px rgba(159, 92, 249, 0.1);
    --shadow-primary-medium: 0px 0px 12px 2px rgba(159, 92, 249, 0.2);
    --shadow-primary-strong: 0px 0px 20px 4px rgba(159, 92, 249, 0.25);
}

body {
    background-color: #F2F2F2;
    font-family: var(--primary-font);
}

main {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .h7, .h8 {
    font-family: var(--alt-font)
}

.h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
}
.h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
}
.h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
}
.h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
}
.h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
}
.h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}

.color-primary {
    color: var(--base-color);
    /*color: var(--primary-hover);*/
    /*color: var(--primary-active);*/
    /*color: var(--primary-light);*/
    /*color: var(--secondary);*/
    /*color: var(--secondary-hover);*/
    /*color: var(--accent);*/
    /*color: var(--white);*/
    /*color: var(--black);*/
}

.color-accent {
    color: var(--accent);
}

.primary-gradient {
    color: var(--primary-gradient);
}

.bg-primary-gradient {
    background: var(--primary-gradient);
}

.bg-accent {
    background-color: var(--accent);
}

.bg-gray-200 {
    background-color: var(--gray-200);
}

.color-primary:hover {
    color: var(--base-color-hover);
}

.price-def {
    color: var(--price-def);
}

.price-disk {
    /*color: var(--price-disk);*/
    color: var(--black-300);
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-light-blue {
    background-color: var(--light-blue);
}

.bg-accent {
    background-color: var(--accent);
}

.color-gray-100 {
    color: var(--gray-100);
}

.color-gray-200 {
    color: var(--gray-200);
}

.color-gray-300 {
    color: var(--gray-300);
}

.color-gray-400 {
    color: var(--gray-400);
}

.color-gray-500 {
    color: var(--gray-500);
}

.color-black-300 {
    color: var(--black-300);
}

.color-black-200 {
    color: var(--black-200);
}

.color-black-100 {
    color: var(--black-100);
}

.required {
    color: var(--required);
}

a {
    color: #555a66;
}

/*  SHADOWS  */
.shadow-light {
    -webkit-box-shadow: var(--shadow-light);
    -moz-box-shadow: var(--shadow-light);
    box-shadow: var(--shadow-light);
}

.shadow-medium {
    -webkit-box-shadow: var(--shadow-medium);
    -moz-box-shadow: var(--shadow-medium);
    box-shadow: var(--shadow-medium);
}

.shadow-strong {
    -webkit-box-shadow: var(--shadow-strong);
    -moz-box-shadow: var(--shadow-strong);
    box-shadow: var(--shadow-strong);
}

.border-gray-100 {
    border: 1px solid var(--gray-100);
}

.border-gray-200 {
    border: 1px solid var(--gray-200);
}

.push-menu {
    z-index: 98 !important;
}

.navbar .container {
    border-radius: 0 0 24px 24px;
}

.br-8 {
    border-radius: 8px;
}

.br-12 {
    border-radius: 12px;
}

.br-24 {
    border-radius: 24px;
}

.brb-12 {
    border-radius: 0 0 12px 12px;
}
.brb-24 {
    border-radius: 0 0 24px 24px;
}

.brt-12 {
    border-radius: 12px 12px 0 0;
}
.brt-24 {
    border-radius: 24px 24px 0 0;
}

header .navbar {
    top: 46px;
}

.sticky .navbar {
    top: 0;
}

.sticky .navbar-col {
    background-color: #FFFFFFDB;
    backdrop-filter: blur(9.8px);
    border-radius: 0 0 16px 16px;
}

header.sticky .header-light:not(.disable-fixed) {
    box-shadow: none !important;
}

.top-spacer {
    margin-top: 150px;
}

.hamburger-menu-simple {
    width: 775px;
    left: 0;
    right: 0;
    margin-inline: auto;
    -webkit-border-radius: 16px 16px 0 0;
    -moz-border-radius: 16px 16px 0 0;
    border-radius: 16px;
    height: fit-content;
}

.show-menu .hamburger-menu-simple {
    top: 45px;
}

.shop-modern {
    margin-right: -10px !important;
    margin-left: -10px !important;
    margin-top: -10px;
}

.section-primary {
    margin-top: 0 !important;
    margin-bottom: 32px;
    padding: 0;
}

.section-primary .container {
    background-color: var(--white);
    border-radius: 24px;
    padding: 12px;
}

.top-banner {
    background: linear-gradient(90deg,rgba(177, 127, 250, 1) 0%, rgba(130, 151, 255, 1) 100%);
}

.shop-image {
    border-radius: 12px;
}

.default-logo {
    max-width: 200px;
    max-height: 28px;
}

.grid-item {
    display: flex;
    flex-direction: column;
    position: relative;
    /*background: var(--white);*/
}

.shop-box {
    display: block;
    flex-shrink: 1;
    position: relative;
    transition-property: color;
}

.shop-image__container {
    background-color: #fff;
    box-sizing: border-box;
    display: block;
    line-height: 0;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 3;
}

.shop-image__container::before {
    padding-top: 133.24%;
    content: "";
    display: block;
}

.shop-image__container::after {
    border-radius: 12px;
    left: 0;
    position: absolute;
    top: 0;
}

.shop-image__wrap {
    align-content: center;
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
    right: 0;
    position: absolute;
    height: 100%;
    width: 100%;
}

.shop-image__image {
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.widget-text span {
    font-size: 12px;
    line-height: 16px;
    margin-top: 4px;
}

.no-after::after {
    display: none;
}

.navbar-col {
    background-color: var(--white);
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    border-radius: 16px;
    gap: 6px;
}

.navbar-brand {
    background: var(--primary-gradient);
    padding: 14px 16px !important;
    border-radius: 8px;
    max-height: 56px;
}

.header-search {
    background: linear-gradient(180deg,rgba(245, 237, 254, 1) 0%, rgba(237, 233, 243, 1) 100%);
    padding: 14px 16px !important;
    max-height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    color: var(--black-300);
}

.header-search svg {
    width: 26px;
    height: 26px;
    margin-right: 12px;
}

.user-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.user-nav {
    background: linear-gradient(180deg,rgba(245, 237, 254, 1) 0%, rgba(237, 233, 243, 1) 100%);
    padding: 10px !important;
    border-radius: 6px;
    height: 56px;
    max-height: 56px;
    width: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-nav-login {
    flex-direction: row !important;
    width: auto !important;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 16px !important;
}

.user-nav-login svg {
    margin-right: 12px;
}

.user-icons .widget-text {
    gap: 8px;
}

.user-icons .widget-text i{
    height: 26px;
    max-height: 26px;
}

.mfp-bg {
    background: none !important;
    backdrop-filter: blur(124px);
    opacity: 1;
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 1;
}

.popup-default {
    background: var(--white);
    padding: 12px;
    border-radius: 12px;
}

.popup-search {
    position: fixed;
    top: 46px;
    left: 0;
    right: 0;
    margin-inline: auto;
    max-width: 921px;
    padding: 8px !important;
    border-radius: 16px !important;
}

.popup-menu {
    position: fixed;
    top: 22px;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: fit-content;
}

.popup-login {
    position: fixed;
    width: 440px;
    right: 0;
    top: 0;
    height: 100%;
}

.popup-login__container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.header-button {
    padding: 0;
    height: 56px;
    max-height: 56px;
}

.header-button .btn {
    background: none !important;
    color: var(--black-300)!important;
    padding: 14px 16px !important;
    border: none;
    font-size: 18px !important;
    font-weight: 500 !important;
}

.push-button {
    width: auto !important;
    height: auto !important;
}

.push-button svg {
    margin-right: 12px;
}

.header-button .btn:hover {
    background: none !important;
    color: var(--primary)!important;
    border: none;
}

.header-button .btn:hover .line {
    fill: #9F5CF9;
    width: 26px;
}

.line {
    transition: all 0.3s ease;
    transform-origin: center;
}

.header-cart-icon span {
    font-size: 12px;
    margin-top: 12px;
}

.header-cart-icon .cart-count {
    top: -20px;
    right: 6px;
}

button.mfp-close::before, button.mfp-close:active::before {
    content: "\f00d";
    color: var(--gray-300);
    font-size: 20px;
    font-weight: 900;
}

.swiper-slide img {
    width: 100%;
}

.shop-footer {
    margin-top: 12px;
}

.shop-item__rating {
    color: var(--gray-400);
    font-size: 12px;
}

.shop-item__rating i{
    color: rgb(255, 165, 0);
}

.shop-item__reviews {
    color: var(--gray-400);
    margin-left: 4px;
    font-size: 12px;
}

.btn {
    text-transform: none;
    font-size: 16px !important;
    font-weight: 600;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.btn-base-color {
    color: var(--white) !important;
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}
.btn-accent:hover {
    background: var(--accent-hover);
    color: var(--white);
}

.btn.with-rounded > span {
    box-shadow: none;
}

.btn-base-color:hover {
    color: var(--white) !important;
    background-color: var(--base-color-hover) !important;
    border-color: var(--base-color-hover) !important
}

.btn-base-color-light {
    background-color: var(--base-color-light);
    color: var(--base-color) !important;
}

.btn-base-color-light:hover {
    background-color: var(--base-color-light-hover);
    color: var(--base-color) !important;
}

.btn-very-small {
    font-size: 14px !important;
    padding: 6px 14px !important;
}

.btn.btn-rounded.btn-rounded {
    -webkit-border-radius: 80px;
    border-radius: 80px;
}

.btn.btn-rounded.btn-small {
    padding: 8px 14px;
}

.btn-extra-large {
    font-size: 20px !important;
}

.btn-icon-start {
    padding: 18px 18px 14px 18px !important;
}

.btn-icon-start i{
    margin-right: 16px;
}

.btn-def {
    padding: 12px 22px 10px;
}

header.sticky .header-icon .push-button {
    padding: 8px 14px;
}

header.sticky .navbar-brand {
    padding: 8px 0;
}

header .navbar-brand img {
    max-height: 26px;
}

.shop__show-more {
    margin: 8px 10px;
}

.slider-navigation-style-01 {
    left: 16px;
}

.slider-navigation-style-01.swiper-button-next {
    right: 16px;
}

.ml-16 {
    margin-left: 16px;
}

.add-to-wishlist {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.21);
    position: absolute;
    z-index: 4;
    right: 8px;
    top: 8px;
    height: 32px !important;
    width: 32px !important;
    visibility: hidden;
}
.grid-item:hover .add-to-wishlist {
    visibility: visible;
}
.grid-item:hover .shop-item__name {
    color: var(--primary);
}

.add-to-wishlist:hover {
    background-color: white;
}

.add-to-wishlist i {
    font-size: 20px;
}

.banner {
    display: block;
    width: 100%;
    height: auto;
}

footer .nav-link {
    color: var(--black-300);
}

footer .footer-logo img {
    max-height: 54px;
    height: 54px;
}

.social-link .nav-link {
    background-color: #F5F7FA;
    padding: 12px 18px 12px 18px !important;
    margin: 0;
    border-radius: 16px;
}

.social-link i {
    font-size: 22px;
}

.breadcrumbs a {
    font-weight: 500;
    border-radius: 4px;
    font-size: 14px;
}

.breadcrumb-style-01 ul li::after {
    padding: 0;
    width: 4px !important;
    height: 4px !important;
    background-color: #c4c4c4;
    margin: 0 4px 0 8px;
    content: close-quote;
}

.container-fluid {
    padding-left: 45px;
    padding-right: 45px;
}

.product-title {
    color: var(--black);
    font-size: 32px;
    font-weight: 600;
    line-height: 2.2rem;
    margin-bottom: 8px;
}

.about-product {
    background-color: white;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.about-product__seller {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 240px;
    display: flex;
    align-items: end;
}

.about-product .accordion .accordion-item .accordion-header .accordion-title span i {
    position: inherit !important;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    margin-right: 4px;
}

.offer-price {
    font-size: 36px;
    font-weight: 600;
    color: var(--black-300);
    letter-spacing: -1px;
}

.offer-oldprice {
    font-size: 18px;
    margin-left: 8px;
    letter-spacing: -1px;
}

.product-rating {
    border-radius: 30px;
    font-size: 16px;
    margin-right: 4px;
    font-weight: 600;
    color: var(--gray-500);
    display: inline-block;
}
.product-rating i{
    color: rgb(255, 165, 0);
}

.product-reviews {
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-500);
    display: inline-block;
}

.brand-logo img {
    max-height: 42px;
    max-width: 42px;
    margin-right: 8px;
}

.brand-info {
    align-items: start;
    justify-content: center;
}

.brand-info__title {
    font-size: 16px;
    line-height: 1rem;
    margin-bottom: 8px;
    color: var(--black-100);
    font-weight: 600;
}

.brand-info__title:hover {
    color: var(--base-color);
}

.brand-logo:hover .brand-info__title {
    color: var(--base-color) !important;
}

.brand-info__subtitle {
    font-size: 14px;
    line-height: 1rem;
    color: var(--gray-400);
}

.product-about {
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    line-height: 2rem;
    margin-bottom: 8px;
}

.product-about__feature {
    padding-bottom: 2px;
    margin-bottom: 16px;
    border-bottom: dotted var(--gray-200);
}

.product-about__feature p {
    margin-bottom: 0;
    width: 50%;
}

.product-about__feature span {
    color: var(--black-300);
    width: 50%;
}

.product-delivery__item i{
    margin-right: 4px;
}

.mr-4px {
    margin-right: 4px;
}

.mr-8px {
    margin-right: 8px;
}

.product-faqs h2{
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    line-height: 2rem;
    margin-bottom: 0;
}

.product-faqs__items {
    display: grid;
    font-size: 14px;
    grid-template-columns: 1fr 1fr;
    width: 280px;
}

.product-delivery h2{
    color: var(--black);
    font-size: 24px;
    font-weight: 600;
    line-height: 2rem;
    margin-bottom: 0;
}

.product-delivery__items {
    display: grid;
    font-size: 14px;
    grid-template-columns: 1fr 1fr;
    width: 280px;
}

.cookie-message {
    bottom: 16px;
    left: 16px;
    padding: 16px 15px;
    border-radius: 16px;
    max-width: 262px;
}

.ad-mark {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    border-radius: 40px;
    padding: 2px 8px 4px;
    font-size: 14px;
    line-height: 14px;
    color: #F0F0F0;
    background: rgba(149, 149, 149, 0.2);
}

.shop-container {
    padding-top: 8px;
    padding-bottom: 6px;
}

.shop-container .slides-switcher {
    position: absolute;
    padding-left: 10px;
    padding-right: 25px;
    width: 100%;
    top: 50%;
}

.rating {
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.rating i {
    font-size: 28px;
    margin-right: 4px;
}

.rating p {
    font-size: 28px;
    font-weight: 700;
}

.review__person-photo {
    height: 48px;
    width: 48px;
    margin-right: 16px;
}

.review__person-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--black-300);
}

.review__rating-star {
    fill: var(--black-100);
}

.review__date {
    margin-right: 16px;
}

.review__comment {
    font-size: 15px;
    line-height: 1.4rem;
    margin-top: 16px;
}

@media (min-width: 1422px) {
    .container-fluid {
        max-width: 1416px;
        padding-left: 0;
        padding-right: 0;
    }

    header .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }

    .shop-row .grid-item {
        width: calc(20% - 16px);
        margin: 8px;
    }

}

.container-fluid {
    padding-left: 8px;
    padding-right: 8px;
}

.shop-row {
    display: flex;
    align-content: flex-start;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
}

.shop-row .grid-item {
    width: calc(50% - 8px);
    margin: 4px;
    border-radius: 12px;
}

.grid-item-small {
    background-color: var(--white);
    border-radius: 12px;
}

.grid-item-default {
    background-color: var(--white);
    border-radius: 12px;
}

.grid-item-slide {
    width: 100% !important;
}

.grid-item-small .shop-image {
    border-radius: 12px 12px 0 0;
}

.grid-item-default .shop-image {
    border-radius: 12px 12px 0 0;
}

.grid-item-small .shop-footer {
    padding: 0 12px 12px 12px;
}

.grid-item-small .shop-item__name {
    -webkit-line-clamp: 1;
}

.grid-item-default .shop-footer {
    padding: 0 12px 12px 12px;
}

.shop-item__price {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.grid-item-small .shop-item__price {
    margin-bottom: 0;
}

.shop-item__curprice {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    color: var(--black-300);
}

.price-def {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    color: var(--black-300);
}

.shop-item__oldprice {
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -1px;
}

.shop-item__name {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 18px;
    color: var(--black-300);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    background-color: white;
    padding: 12px;
    display: flex;
    justify-content: space-around;
    z-index: 99;
    width: 100%;
    border-radius: 16px 16px 0 0
}

.mobile-bottom-nav .nav-link__text {
    font-size: 12px;
}

.mobile-bottom-nav__btn {
    padding: 4px;
}

.mobile-bottom-nav__btn:hover {
    color: var(--base-color);
}

.mobile-bottom-nav__btn:active {
    color: var(--base-color);
}

.mobile-bottom-nav__btn i {
    font-size: 20px;
}

.btn-show-pass {
    border-bottom: none !important;
    top: 50%;
    right: 12px;
    transform: translateY(-100%);
    color: var(--base-color);
    padding: 0 !important;
}

.btn-show-pass:hover {
    color: var(--base-color-hover);
}

.btn-text-base-color {
    color: var(--base-color);
}
.btn-text-base-color:hover {
    color: var(--base-color-hover);
}
.text-link {
    color: var(--base-color);
}
.text-link:hover {
    color: var(--base-color-hover);
}

.user-nav__dropdown-menu {
    width: 230px;
    height: auto;
    padding: 16px 12px;
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    left: 50%;
    transform: translate(-50%, 8%);
}

.triangle {
    width: 20px;
    height: 14px;
    background: white;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    -webkit-box-shadow: var(--shadow-strong);
    -moz-box-shadow: var(--shadow-strong);
    box-shadow: var(--shadow-strong);
}
/*.navbar-container {*/
/*    background-color: var(--white);*/
/*}*/

.user-nav__dropdown-menu span {
    font-size: 13px;
    line-height: 15px;
    color: var(--black-300);
    margin-bottom: 12px;
    margin-top: 0;
    display: block;
}

.dropdown-hover:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}
.dropdown-menu {
    transition: opacity 0.3s, visibility 0.3s;
}
.dropdown-hover .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    display: block;
}
.dropdown-hover:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.checkbox {
    padding: 8px !important;
}
.form-check .form-check-label {
    margin-left: 8px;
}

header .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
header .navbar-expand-lg {
    padding-left: 15px;
    padding-right: 15px;
}

.home-title {
    background-color: var(--primary);
    padding-top: 72px;
    padding-bottom: 32px;
    border-radius: 0 0 12px 12px;
}
.home-title__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -1px;
    color: var(--white)
}

.mobile-fast-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding-left: 8px;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.mobile-fast-nav::-webkit-scrollbar {
    display: none;
}

.mobile-fast-nav__item {
    flex: 0 0 auto;
    width: 80px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 8px;
    background-color: #fff;
    border-radius: 16px;
}

.mobile-fast-nav__item span {
    overflow-wrap: break-word;
    word-break: keep-all;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
}

.section-small {
    margin-top: 12px;
    margin-bottom: 12px;
}
.docs-nav {
    gap: 4px;
}
.docs-nav__link {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 12px 24px;
    background-color: var(--white);
    border-radius: 8px;
}

.disc li{
    list-style: disc !important;
}

.link {
    color: var(--primary);
}

.link:hover {
    color: var(--primary-hover);
}

p {
    margin-bottom: 12px;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 600;
}

.shop-filter li {
    display: none;
}

.shop-filter li:nth-child(-n+5) {
    display: list-item;
}

.toggle-categories {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.toggle-categories:hover {
    background: #e9e9e9;
}

 .custom-filter {
     position: relative;
     display: inline-block;
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
     width: 100%;
     max-width: 260px;
 }

.filter-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 16px;
    background: white;
    border: 1px solid #e1e3e6;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.filter-toggle:hover {
    border-color: #c5c9d0;
}

.filter-toggle:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--shadow-primary-light);
}

.filter-label {
    font-weight: 500;
}

.filter-icon {
    transition: transform 0.3s ease;
}

.custom-filter.active .filter-icon {
    transform: rotate(180deg);
}

.filter-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 6px;
    background: white;
    border: 1px solid #e1e3e6;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.custom-filter.active .filter-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 14px;
    color: #333;
}

.filter-option:hover {
    background: #f8f9fa;
}

.filter-option.active {
    background: var(--primary-active);
    color: var(--primary);
    font-weight: 500;
}

.check-icon {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.filter-option.active .check-icon {
    opacity: 1;
}

.shop-top-filter__wrap {
    margin-left: 16px;
}

.page-title {
    padding: 8px 14px;
}

.page-title h1 {
    font-size: 40px;
    font-weight: 600;
}

.cart-item__name {
    max-width: 70%;
}

.quantity .qty-text {
    height: 28px;
    width: 100px;
}

.add-to-cart {
    justify-content: space-between;
    max-height: 54px;
}
.add-to-cart__amount {
    display: inline-block;
    position: relative;
}
.add-to-cart__amount .qty-text {
    height: 54px;
    width: 133px;
    border-radius: 8px;
    text-align: center;
    color: var(--black-300);
    border: none;
    font-weight: 600;
}

.cart-item {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    padding: 16px;
    height: 200px;
}

.cart-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(149, 157, 165, 0.15);
}

.card-item__actions .icon-button {
    height: 28px !important;
    width: 28px !important;
}

.cart-product-img {
    width: auto;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.user-nav__item-count {
    position: absolute;
    right: -4px;
    top: -8px;
    width: 17px;
    height: 17px;
    font-weight: 600;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    color: var(--white);
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: .5s;
    transition: .5s;
    background-color: #ee1515;
}

.popup-menu__top-bar {
    display: flex;
    flex-direction: row;
    gap: 6px;
}

.popup-search input {
    background: linear-gradient(180deg,rgba(245, 237, 254, 1) 0%, rgba(237, 233, 243, 1) 100%);
    border-radius: 8px;
}

/*popup-menu*/
.popup-menu-nav {
    margin-top: 16px;
}

.popup-menu-nav__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 6px;
}

.popup-menu-nav__item {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-300);
}

.popup-menu-nav__item-small {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-400);
}

.popup-menu-nav__item-bold {
    font-size: 20px;
    font-weight: 700;
}

.popup-menu-nav__social-link {
    display: flex;
    margin-top: 32px;
    margin-bottom: 0;
    padding: 0;
    gap: 6px;
    color: var(--primary);
}

.popup-menu-nav-bottom {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.divider {
    margin-top: 32px;
    margin-bottom: 32px;
    border-top: 1px;
    height: 1px;
}

.border-light-gray {
    border-color: var(--gray-100);
}

button.mfp-close, button.mfp-close:active {
    right: 0;
    top: 0;
}

.list-group-item {
    background: none;
    border-color: var(--white);
    color: var(--black-300);
    font-weight: 500;
    font-size: 18px;
}

.list-group-item.active {
    z-index: 2;
    color: var(--black-300);
    background: linear-gradient(180deg,rgba(245, 237, 254, 1) 0%, rgba(237, 233, 243, 1) 100%);
    border-color: var(--white);
}
.list-group-item:hover {
    z-index: 2;
    color: var(--black-300);
    background: linear-gradient(180deg,rgba(245, 237, 254, 1) 0%, rgba(237, 233, 243, 1) 100%);
    /*border-color: var(--bs-list-group-active-border-color);*/
}

.list-group__icon {
    margin-right: 8px;
}

.delivery-card {
    padding: 16px 24px;
    border-radius: 8px;
    background: var(--white);
}

.delivery-card__status {
    font-weight: 600;
    font-size: 22px;
}

.mall-pagination {
    width: 100%;
    margin-top: 24px;
}
.mall-pagination .page-link{
    color: var(--base-color);
}

.mall-pagination .active > a, .mall-pagination .active > span {
  color: var(--base-color);
  background-color: #9f5cf91f;
}

.mall-input, .mall-label {
    color: var(--black-300);
}

.shop-sidebar {
    height: fit-content;
}

/*animated bg for home page*/
@property --card-bg {
    syntax: "<color>";
    inherits: false;
    initial-value: #c0bae8;
}

@property --shine-1 {
    syntax: "<color>";
    inherits: false;
    initial-value: #ffbbc0;
}

@property --shine-2 {
    syntax: "<color>";
    inherits: false;
    initial-value: #c0aecb;
}

#smartAuthContainer {
    margin-top: 120px;
    margin-bottom: 120px;
    padding: 32px;
    background: white;
    border-radius: 24px;
}

#smartAuthContainer .h2 {
    color: var(--black-300);
}

#smartAuthContainer .btn {
    background: var(--base-color);
}

.animated-bg {
    background: radial-gradient(
            300px circle at 55% 60% in oklab,
            var(--shine-2), transparent 100% 100%
    ), radial-gradient(
            farthest-side circle at 75% 30% in oklab,
            var(--shine-1) 0%, var(--card-bg) 100%
    );
    background-blend-mode: color-burn;
    animation: animate-color-1 8s infinite linear alternate, 4s animate-color-2 1s infinite linear alternate;
}

@keyframes animate-color-1 {
    from {
        --shine-1: initial;
    }
    to {
        --shine-1: orange;
    }
}

@keyframes animate-color-2 {
    from {
        --shine-2: initial;
    }
    to {
        --shine-2: hotpink;
    }
}

.card-body {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.icon-button {
	height: 22px;
	width: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.icon-button svg {
    width: 22px;
    height: 22px;
}

.remove-btn {
    color: var(--gray-300);
    background: none;
    border: none;
    transition: color 0.2s;
}

.remove-btn:hover {
    color: var(--primary);
}

.summary-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px var(--shadow);
    padding: 1.5rem;
    position: sticky;
    top: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.summary-total {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 2px dashed var(--border);
}

.checkout-btn {
    background: var(--primary);
    border: none;
    padding: 0.8rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-light);
}

.checkout-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.checkout-btn:hover i {
    transform: translateX(3px);
}

.empty-cart {
    text-align: center;
    padding: 4rem 0;
}

.empty-cart i {
    font-size: 5rem;
    color: #dee2e6;
    margin-bottom: 1.5rem;
}

.mall-product__description-short {
    font-size: 14px;
    line-height: 1.4;
    color: black;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 992px){
    .shop-row .grid-item {
        width: calc(33.33% - 12px);
        margin: 6px;
    }

    .shop-item__curprice {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: -1px;
    }

    .price-def {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: -1px;
    }

    .shop-item__oldprice {
        color: var(--gray-400);
        font-size: 14px;
    }

    .shop-item__name {
        font-size: 15px;
        line-height: 20px;
    }

    .shop-item__rating {
        font-size: 14px;
    }

    .shop-item__reviews {
        font-size: 14px;
    }

    /*popup-menu*/
    .popup-menu-nav {
        margin-top: 32px;
    }

    .popup-menu-nav__title {
        font-size: 22px;
        font-weight: 600;
        color: var(--black-300);
    }

    .popup-menu-nav__item {
        font-size: 18px;
        font-weight: 500;
        color: var(--black-300);
    }
    .popup-menu-nav__item-bold {
        font-size: 20px;
        font-weight: 700;
    }
}

@media (min-width: 992px) {
    .shop-row {
        padding: 6px;
    }
    .shop-row .grid-item {
        width: calc(20% - 20px);
        margin: 10px;
    }

    .grid-item-small {
        width: 220px;
        margin: 10px;
    }

    .shop-with-filter .grid-item {
        width: calc(25% - 20px);
        margin: 10px;
    }

    .shop-item__name {
        font-size: 16px;
        line-height: 24px;
    }

    .shop-item__curprice {
        font-size: 24px;
        font-weight: 600;
        letter-spacing: -1px;
    }

    .price-def {
        font-size: 24px;
        font-weight: 600;
        letter-spacing: -1px;
    }

    .shop-item__oldprice {
        color: var(--gray-400);
        font-size: 16px;
    }

    .shop-item__rating {
        font-size: 14px;
    }

    .shop-item__reviews {
        font-size: 14px;
    }

    .mobile-bottom-nav {
        display: none;
    }

    .popup-default {
        padding: 32px;
        border-radius: 24px;
    }

    /*popup-menu*/
    .popup-menu {
        min-width: 960px;
    }

    .popup-menu-nav__title {
        font-size: 16px;
        margin-bottom: 0;
    }
    .popup-menu-nav__item {
        font-size: 18px;
        margin-top: 4px;
    }
    .popup-menu-nav__item-bold {
        font-size: 20px;
        font-weight: 700;
    }
    .popup-menu-nav {
    margin-top: 32px;
    }

    .popup-menu-nav__title {
        font-size: 22px;
        font-weight: 600;
        color: var(--gray-500);
    }

    .popup-menu-nav__item {
        font-size: 18px;
        font-weight: 500;
        color: var(--black-300);
    }
}


/* MIN WIDTH START */

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) { ... }

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) { ... }

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    header .container-fluid {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }
}

/*X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .popup-menu {
        min-width: 1168px;
    }

}

/*XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
    .popup-menu {
        min-width: 1368px;
    }
}



/* MAX WIDTH START */

/* `xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
    .page-title {
        padding: 8px 14px;
    }
    .page-title h1 {
        font-size: 40px;
        font-weight: 600;
    }
}

/*`xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) { ... }

/*`lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .pr-lg-15 {
        padding-right: 15px;
    }
    header .navbar {
        top: 14px;
    }
    .top-spacer {
        margin-top: 112px;
    }
    .shop-row .grid-item {
        background-color: var(--white);
    }
    .shop-footer {
        padding: 0 12px 12px;
    }
    header .navbar-brand {
        padding: 12px 0;
    }
    .header-search {
        background-color: var(--white);
    }
    header .navbar [class*="col"] {
        padding: 8px;
    }
    .header-top-bar .container-fluid {
        padding-bottom: 6px;
    }
    header .navbar-brand img {
        max-height: 24px;
    }
    header .header-top-bar {
        z-index: 98;
    }
    header.sticky .navbar-brand {
        padding: 8px 0;
    }
    .shop-container {
        padding-left: 4px;
        padding-right: 4px;
    }
    .page-title {
        padding: 8px 0;
    }
    .page-title h1 {
        font-size: 32px;
        font-weight: 600;
    }
    .shop__show-more {
        margin: 0;
        flex-direction: column;
        align-items: start;
    }
    .shop__show-more .h3 {
        margin-bottom: 12px !important;
        font-size: 26px ;
    }
    .shop__show-more .btn {
        width: 100%;
    }
    .shop-section {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/*`md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .custom-filter {
        max-width: 100%;
        margin-bottom: 12px;
    }

    .filter-toggle {
        padding: 12px 16px;
    }

    .filter-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 12px 12px 0 0;
        transform: translateY(100%);
        max-height: 60vh;
        overflow-y: auto;
    }

    .custom-filter.active .filter-dropdown {
        transform: translateY(0);
    }

    .filter-option {
        padding: 14px 20px;
    }
    .page-title {
        padding: 8px 0;
    }
    .page-title h1 {
        font-size: 32px;
        font-weight: 600;
    }
}

/*`sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .shop-footer {
        padding: 0 8px 8px;
    }
    .page-title {
        padding: 8px 0;
    }
    .page-title h1 {
        font-size: 26px;
        font-weight: 600;
    }
}




/* del */
.pt-8 {
    padding-top: 40px !important;
}
.mb-8 {
    margin-bottom: 40px !important;
    text-align: center;
    color: var(--black-300);
}
.result-card {
    padding: 24px;
}
.float-right {
    display: none;
}

.result-card h4{
    font-size: 22px;
    color: var(--black-300);
}
.mall-wishlists-manager {
    flex-direction: column;
    padding: 16px;
    background: white;
    border-radius: 24px;
}
.mall-wishlists-manager__contents {
    background-color: transparent !important;
}

.mall-btn--primary {
    background: var(--base-color) !important;
}

.mall-wishlist-item--active, .mall-wishlist-item:hover {
    background-color: transparent !important;
}
.mall-wishlists-manager__lists {
    width: 100%;
}
.mall-wishlist-item__name {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-300);
}