/* ===================================
            Global variables
====================================== */
@font-face {
  font-family: 'Prosto One';
  src: url('../assets/fonts/ProstoOne/ProstoOne-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
    --alt-font: "Prosto One", 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;
    overflow: hidden;
}

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);
}

.gradient-text {
  background: linear-gradient(90deg, #9F5CF9, #FFAC63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.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;
}

main {
    min-height: calc(100vh - 150px);
}

.blog-hero {
    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: 400;
    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: 0;
    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: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}

.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;
}

.breadcrumbs p {
    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: 2;
}

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

.shop-item__price {
    display: flex;
    flex-direction: row;
    margin-bottom: 8px;
    align-items: baseline;
    gap: 4px;
}

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

.shop-item__curprice {
    font-size: 20px;
    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(--accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 16px;
    margin-bottom: 6px;
}

.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: #FFFFFFDB;
    backdrop-filter: blur(9.8px);
    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: 16px;
    font-weight: 600;
    color: #A2A2A2;
    margin-bottom: 0;
}

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

.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: column;
}

.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);
}

.alert {
    padding: 1rem;
    border-radius: 12px;
}

/*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;
}

.h-100 {
    height: 100%;
}
.w-100 {
    width: 100%;
}

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

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

.underline {
    text-decoration: underline !important;
}

.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);
}

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

.catalog-sidebar #mall-sorter {
    background: white;
    margin-bottom: 6px;
    border-radius: 12px;
}

.catalog-sidebar .accordion-item {
    margin-bottom: 6px;
    border-radius: 12px;
    overflow: hidden;
}

.catalog-sidebar .accordion-button {
    padding: 4px 12px;
}

.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;
}

.popup-search .mfp-close {
    right: -36px;
}

input, select, textarea, .form-control, .form-select {
  font-size: 18px;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
}

.is-valid {
    color: var(--black-300) !important;
}

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

.transparent-icon {
    background-color: #FFFFFF4D;
    backdrop-filter: blur(9.8px);
    border-radius: 100%;
    padding: 0px 8px;
    margin-left: 12px;
}

.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-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);
}
.mall-loader {
    display: none;
}
.mall-pagination .pagination {
    justify-content: center;
}
.popup-search form {
    display: flex;
}
.mall-discount-applier {
    display: none;
}
.mall-wishlists-manager__header {
    display: none;
}
.mall-cart__table {
    display: none;
}
.mall-wishlists-manager__actions .mall-btn--default {
    display: none;
}
.mall-btn--primary {
    color: white;
    border-radius: 16px;
    padding: 8px 20px;
    border: none;
    background: var(--base-color);
}

.icon-pencil {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}

.icon-pencil::before {
  content: "\f303";
}

.mall-form-actions {
    margin-top: 20px;
}

.mall-btn--secondary {
    color: var(--base-color) !important;
    border-radius: 16px;
    padding: 8px 20px;
    border: 1px solid var(--base-color) !important;
    background: white;
}

.address-modal-container {
    border-radius: 12px;
    background: #F2F2F2;
}
.address-modal-header {
    background: linear-gradient(180deg,rgba(245, 237, 254, 1) 0%, rgba(237, 233, 243, 1) 100%);
}
#address-modal-title {
    line-height: 2.125rem;
    font-weight: 500;
    color: var(--black-300);
}
.delivery-type-selector {
  display: flex;
  gap: 20px;
  font-family: Arial, sans-serif;
}

.delivery-type-option {
  width: 50%;
  position: relative;
  cursor: pointer;
  padding-left: 50px;
  user-select: none;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
}

.delivery-type-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.delivery-type-option span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  transition: color 0.3s ease;
}

.delivery-type-option .icon-truck::before {
  content: "🛵";
  font-size: 20px;
}

.delivery-type-option .icon-building::before {
  content: "🏤";
  font-size: 20px;
}

.delivery-type-option::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #bbb;
  border-radius: 50%;
  background-color: white;
  transition: border-color 0.3s ease;
}

.delivery-type-option input[type="radio"]:checked + span {
  color: var(--base-color);
  font-weight: 600;
}

.delivery-type-option input[type="radio"]:checked::before {
  border-color: var(--base-color);
  background-color: var(--base-color);
}

.delivery-type-option input[type="radio"]:checked + span::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.delivery-type-option:hover::before {
  border-color: var(--base-color);
}
.delivery-type-option:hover span {
  color: var(--base-color);
}
.delivery-type-option:has(input[type="radio"]:checked) {
  border-color: var(--base-color);
  background: white;
}
.delivery-type-option:has(input[type="radio"]:checked)::before {
  background-color: var(--base-color);
}
.delivery-type-option:hover {
    border-color: var(--base-color);
    background: white;
}

#address-form .mall-form-control {
    margin-bottom: 20px;
}
#address-form .mall-form-control .mall-label {
    color: #808080;
    font-size: 15px;
    line-height: 17px;
}
.private-house-label {
    background: white;
}

#inline-pvz-map-container {
    background: transparent;
    padding: 0;
    border: none;
}

.pvz-inline-content h4 {
    font-size: 1.4rem;
    line-height: 1.7rem;
    font-weight: 500;
    color: var(--black-300);
    margin-bottom: 16px;
}

.pickup-list h5 {
    font-size: 1.4rem;
    line-height: 1.7rem;
    font-weight: 500;
    color: var(--black-300);
    margin-bottom: 16px;
    margin-top: 40px;    
}

.pickup-list-items-scrollable {
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    background: transparent !important;
}
.pickup-list-items-scrollable .pickup-item {
    padding: 12px !important;
    border-radius: 12px !important;
    background: white !important;
    margin-bottom: 6px !important;
    align-items: flex-start;
}

.pickup-item-info strong {
    color: var(--black-300);
}

.private-house-label input[type="checkbox"]:checked ~ .checkbox-icon {
  background: var(--base-color);
  border-color: var(--base-color);
}

.private-house-label input[type="checkbox"]:checked:hover ~ .checkbox-icon {
  background: var(--base-color);
  border-color: var(--base-color);
}

.mall-form-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 10px 12px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-color: rgb(233, 236, 239);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mall-form-checkbox:hover {
    cursor: pointer;
}
.mall-form-checkbox .form-check-input:hover {
    cursor: pointer;
}
.mall-form-checkbox .form-check-label {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}
.mall-form-checkbox .form-check-label:hover {
    cursor: pointer;
}

.form-check-input {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2px solid #ced4da;
    border-radius: 4px;
    margin-right: 12px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    padding: 0px;
}

.form-check-input::after {
    content: "✔";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-check-input:checked {
  background-color: var(--base-color);
  border-color: var(--base-color);
}

.address-card {
  background: #fff;
  border: 1px solid #ffffff;
  border-radius: 12px;
  padding: 20px;
  color: #333;
  margin-bottom: 20px;
}

.address-card:hover {
  box-shadow: none;
  border: 1px solid transparent;
}

.address-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.address-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: start;
  gap: 10px;
}

.badge-primary {
background-color: #a15aff47;
  color: black;
  border-radius: 12px;
  font-weight: 600;
  padding: 6px 8px !important;
}

.address-card-type {
  font-size: 14px;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 7px;
  border: none;
  background: #10b98114;
}

.address-card-type i {
  font-size: 18px;
  color: #10b981;
}

/* Тело с адресной информацией */
.address-card-body {
  margin-bottom: 15px;
}

.address-info p {
    margin: 4px 0;
    font-size: 20px;
    display: inline-block;
    font-weight: 600;
}

.address-info strong {
  font-weight: 600;
  display: none;
}

/* Кнопки действий */
.address-card-actions {
  display: flex;
  gap: 10px;
}

.mall-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 6px;
  border: none;
  transition: background-color 0.3s ease;
  user-select: none;
}

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

.mall-btn i {
  margin-right: 6px;
}

.mall-btn--sm {
  padding: 5px 12px;
  font-size: 13px;
  background-color: var(--base-color);
  color: white;
}

.mall-btn--danger {
  color: #f44336;
  background: transparent;
  border: 1px solid #f44336;
}

.mall-btn--danger:hover {
  background-color: #f44336;
  color: white;
}

.mall-btn--sm:hover:not(.mall-btn--danger) {
  background-color: var(--base-color-hover);
  color: white;
}

.blog-caption {
    padding: 24px;
}
.blog-post-name {
    line-height: 26px;
}

.mall-pagination {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  font-family: Arial, sans-serif;
}

.mall-pagination .pagination {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 8px;
}

.mall-pagination .page-item {
  border-radius: 6px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.mall-pagination .page-link {
  display: block;
  padding: 8px 14px;
  border: 1px solid #ddd;
  color: var(--base-color);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  min-width: 36px;
  text-align: center;
  border-radius: 6px;
  background-color: #fff;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mall-pagination .page-item:first-child .page-link,
.mall-pagination .page-item:last-child .page-link {
  font-weight: 700;
  font-size: 18px;
}

.mall-pagination .page-item.active .page-link,
.mall-pagination .page-item .page-link:hover:not(.disabled) {
  background-color: var(--base-color);
  color: white;
  border-color: var(--base-color);
}

.mall-pagination .page-item.disabled .page-link {
  color: #aaa;
  border-color: #eee;
  cursor: default;
  background-color: #f9f9f9;
}

.mall-pagination .page-item.disabled .page-link:hover {
  background-color: #f9f9f9;
  color: #aaa;
  border-color: #eee;
}

.header-button span {
    line-height: 33px;
}

.user-nav-login span {
    font-size: 18px;
    font-weight: 500;
    
}



.custom-checkbox {
    position: relative;
    padding-left: 30px;
    padding-top: 2px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    line-height: 20px;
    color: var(--black-100);
}

.custom-checkbox::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 2px solid #9F5CF9;
    border-radius: 5px;
    background-color: white;
    box-sizing: border-box;
    transition: background 0.3s, border-color 0.3s;
}

input[type="checkbox"]:checked + .custom-checkbox::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    background: transparent;
    box-sizing: content-box;
}

input[type="checkbox"]:checked + .custom-checkbox::before {
    background: #9F5CF9;
    border-color: transparent;
}

.address-empty-state {
    text-align: start;
    padding: 0;
}

.address-empty-state h3 {
  margin: 0;
  color: var(--black-300);
}

.address-empty-state p {
  margin-bottom: 32px;
  color: var(--black-300);
}

#address-manager-content {
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid white;
    padding: 24px 16px;
    border-radius: 12px;
}

.address-list-header .mall-btn {
    background: white;
    color: var(--base-color);
    border: 1px solid var(--base-color);
}

.mall-quick-checkout__actions .mall-btn-checkout {
    width: 100%;
    background: var(--base-color);
    color: white !important;
    display: block;
    padding: 12px;
    font-size: 18px;
    font-weight: 500;
}
.mall-quick-checkout__actions .mall-btn-checkout:hover {
    background: var(--base-color-hover);
}

.container-with-bg {
    background: white;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 20px;
}

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

.shop-card {
    box-shadow: none;
}

.shop-card:hover {
    box-shadow: none;
}

.shop-card-banner {
    background: linear-gradient(135deg,rgba(159, 92, 249, 0.35) 0%, rgba(255, 172, 99, 0.35) 100%);
}

.shop-link-btn {
    background: var(--base-color);
}

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

.shop-name {
    -webkit-line-clamp: 1;
}

.shop-meta-item i {
    color: var(--primary);
}

.shops-count {
    color: var(--primary);
}

.product-name {
    font-size: 16px;
    font-weight: 500;
    -webkit-line-clamp: 3;
    line-height: 22px;
}

.product-card {
    box-shadow: none;
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.shop-header {
    box-shadow: none;
    border-radius: 12px;
}

.shop-logo {
  border-radius: 12px;
  border: 4px solid #fff;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.shop-logo img {
    border: none;
}

.shop-card-footer {
    border-top: none;
}

/* write code before */

@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 {
        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 {
        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 {
        position: fixed;
    }

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

    .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);
    }

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


/* MIN WIDTH START */

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .grid-item-small .shop-item__name {
        -webkit-line-clamp: 1;
    }
    .shop-item__name {
        font-size: 16px;
    }
}

/*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;
    }
    /* .address-card {
        max-width: 60%;
    } */
}

/*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: 0;
    }
    .header-button {
        order: 2;
    }
    .span-menu {
        display: none;
    }
    .push-button svg {
        margin-right: 0;
    }
    .navbar-brand {
        padding: 8px 13px !important;
        max-height: 46px;
        min-width: 46px;
        min-height: 46px;
    }
    .header-button {
        padding: 0;
        height: 56px;
        max-height: 46px;
    }
    .header-search {
        max-height: 46px;
        width: 100%;
    }
    .top-spacer {
        margin-top: 72px;
    }
    main {
        min-height: calc(100vh - 72px);
    }
    .blog-hero {
        margin-top: -72px;
    }
    .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-search svg {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }
    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 {
        font-size: 26px;
    }
    .shop__show-more .btn {
        width: 100%;
    }
    .shop-section {
        padding-left: 5px;
        padding-right: 5px;
    }
    .navbar-col {
        width: 100%;
        justify-content: space-between;
    }
    .navbar-col .user-icons {
        display: none;
    }
    .popup-menu {
        width: 100%;
    }
    .popup-menu .header-search {
        margin-right: 32px;
    }
    .popup-search .mfp-close {
        right: 0;
        top: -34px;
    }
    .popup-search button.mfp-close::before, button.mfp-close:active::before {
        color: var(--black-300);
    }
    
    .cart-item {
        align-items: start !important;
        height: auto;
    }
    .cart-item .cart-item__image {
        width: 70%;
    }
    .cart-item .h-100 img{
        width: 100%;
    }
    .cart-item__meta {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart-item__name {
        max-width: 100%;
        font-size: 16px;
        margin-bottom: 8px;
        font-weight: 400 !important;
    }
    .card-item__price .price {
        font-size: 24px;
        font-weight: 600;
    }
    .card-item__actions-wrap {
        flex-direction: row-reverse;
    }
    .card-item__actions {
        margin-left: 12px;
    }
    .mall-selectbox-sm {
        padding: 8px 8px;
        border-radius: 12px;
        font-size: 14px;
    }
    .card-item__amount span {
        font-size: 14px;
    }
}

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

    .sm-py-1 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .header-auth .h5 {
        font-size: 15px;
    }

    .section-title .h2 {
        font-size: 26px;
    }

    .blog-caption {
        padding: 12px;
    }
    .blog-post-name {
      line-height: 20px;
      font-size: 16px;
    }

    .blog-metro figure .blog-image .blog-overlay {
        background: linear-gradient(0deg, rgb(23, 23, 23) 0, rgba(23, 23, 23, 0) 70%);
    }
    
    .footer-auth {
        position: static;
    }

    #smartAuthContainer .h3 {
        font-size: 24px;
    }

    .small-info {
        line-height: 15px;
        margin-top: 4px;
    }

    .sm-pr-0 {
        padding-right: 0 !important;
    }
    .sm-pl-0 {
        padding-left: 0 !important;
    }

    .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;
    }
}

.summary-card__info {
    padding: 24px 24px;
    border-radius: 12px;
    background: white;
}
.order-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 30px 0;
}

.step {
  position: relative;
  text-align: center;
  cursor: default;
  color: #888;
  flex: 1 1 0;
}

.step-number {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background-color: #ccc;
  color: white;
  font-weight: 700;
  margin-bottom: 8px;
  user-select: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Текущий шаг */
.step.current .step-number {
  background: var(--primary-gradient);
  color: white;
  font-weight: 700;
  box-shadow: 0 0 16px var(--base-color);
}

/* Завершённые шаги */
.step.completed .step-number {
  background: var(--primary-gradient);
  color: white;
  font-weight: 700;
}

/* Метки */
.step-label {
  font-size: 14px;
  font-weight: 600;
  user-select: none;
  margin-left: 8px;
}

/* Линии между шагами */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px; /* по центру круга */
  right: -20px;
  width: 40px;
  height: 3px;
  background-color: #ccc;
  z-index: 0;
  transition: background-color 0.3s ease;
}

/* Линия активных и пройденных шагов */
.step.completed:not(:last-child)::after,
.step.current:not(:last-child)::after {
  background-color: var(--base-color);
}