/*PC 10.333*/

body{
    --green: #b2dbbf;
    --yellow: #FFE866;
    --darkorange: #FFD166;
    --blue: #6AA4D8;
    --gray: rgb(50, 50, 50);
    --orange: #FF9166;
    --brandcolor: #1B6BB2;
    --lite-blue: #A6CFF2;
    --white: #FFFFFF;
    --lite-gray: #F7F7F7;
    --black500: #363636;
    --firm: #1A6BB2;
    --yellow2: #FFD466;
    --orange2: #FFB699;
    --light500: #E9EDEE;
    --light100: #E2E7E9;
    --light100rgb: 226, 231, 233;
    --birch: #79E0EC;
    --firm100: #D3E7F8;
    --firm200: #A6CFF2;
    --firm300: #7AB6EB;
    --firm700: #145085;
    --border-size-2: solid 0.34rem;
}
button{
    font-family: Montserrat;
}
@font-face {
    font-family: 'Labor Union';
    src: url('fonts/LaborUnion-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
body::-webkit-scrollbar {
    height: 0;
    width: 0;
}
body::-webkit-scrollbar-track {
    background-color: transparent;
    opacity: 0.48;
}
body::-webkit-scrollbar-thumb {
    background-color: transparent;

    /* Если нужно - добавьте :hover и:active */
}
body::-webkit-scrollbar-thumb:vertical {
    max-height: 0;
}
body::-webkit-scrollbar-thumb:horizontal {
    min-width:0;
}

*{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    color:var(--gray);
    font-family: "Labor Union";
    font-weight: 400;
    margin:0;
    padding:0;
    list-style-type: none;
    text-decoration: none;
}

html{
    overflow-x: hidden;
}
input{
    border: none;
    background: transparent;
    resize: none;
}

input:focus{
    background: transparent;
    outline:none;
    border:none;
    box-shadow: none;
}

input::placeholder{
    color: var(--gray);
    font-family: Montserrat, Roboto, serif;
    font-weight: normal;
    font-size: 2.22rem  /* 13.0003/10.333 */;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.left {
    float:left;
}

.right {
    float:right;
}
.clear{
    clear:both;
}
.border-rad{
    border-radius: 1.71rem;
}

.flex{
    display: flex;
}

.flex-x-center{
    justify-content: center;
}
.flex-y-center{
    align-items: center;
}


.flex-xy-center{
    align-items: center;
    justify-content: center;
}

.flex-column{
    flex-direction: column;
}

*{
    color:var(--gray);
    font-weight: 400;
    font-size: 3.41rem;
    margin:0;
    padding:0;
    list-style-type: none;
    text-decoration: none;
}

html, body {
    background-color: #FEFAFB;
    font-family: Mont Heavy DEMO;
    font-weight:400;
    font-size: 1.563vw;
    scroll-behavior: smooth;
}

a, :after, :before, button[type="submit"], input[type="submit"], svg{
    transition: all 0.5s ease;
    /**
     * Для эксплорера
     */
    -ms-user-select: none;

    /**
     * Для мозилы
     */
    -moz-user-select: none;

    /**
     * Для Сафари и Хрома
     */
    -webkit-user-select: none;
    user-select:none;
}
.clear{
    clear:both;
}
.border-rad{
    border-radius: 3.41rem;
}
.wrapper{
    width: 100vw;
    height: auto;
}
.wrapper-content{
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}
.profile-menu {
    position: relative;
    z-index: 3;
    width: calc(100% - 3.07rem * 2 );
    height: 11.77rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3.07rem;
    border-radius: 2.73rem;
    background-color: #FFFFFF;
}
.menu-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.bonus-sum {
    width: 10.24rem;
    height: 10.24rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    font-size: 4.1rem;
    font-weight: bold;
    border-radius: 50%;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 1.02rem 2.56rem rgba(238, 90, 36, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-sum:hover {
    transform: translateY(-0.34rem);
    box-shadow: 0 1.36rem 3.41rem rgba(238, 90, 36, 0.4);
}

.header-name {
    font-size: 2.73rem;
    color: #666;
    font-weight: 400;
    cursor: pointer;
}

.menu-right {
    display: flex;
    align-items: center;
    gap: 1.452rem;
}

.profile-btn {
    width: calc(24px - 2px * 2);
    height: calc(24px - 2px * 2);
    border: 2px solid #9E0E0F;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.profile-btn:hover {
    transform: scale(1.05);
}
.profile-btn svg{
    width: 18px;
    height: 18px;
}


.menu-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #242424;
    cursor: pointer;
    transition:
            transform 0.3s ease,
            opacity 0.3s ease;
}

.menu-btn:hover {
    opacity: 0.8;
    background: #242424;
    transform: translateX(1px);
}
.menu-btn svg{
    width: 20px;
    height: 20px;
}

.categories-menu {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 37px;
    display: flex;
    justify-content: center;
    gap: 4px;
    background-color: #FFFFFF;
}
.color-block{
    height: 100%;
    padding: 0 20px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    background-color: #FF9935;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    transition:
            border-radius 0.2s ease-in-out,
            filter 0.2s ease;
}
.color-block:hover{
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
}
.color-block.orange{
    background-color: #FF9935;
}
.color-block.dark-orange{
    background-color: #E0601E;
}
.color-block.dark{
    background-color: #9E0E0F;
}
.color-block.black{
    background-color: #242424;
}
.marketing-block{
    position: relative;
    width: 100%;
    height: 530px;
}
.black-box-info{
    position: absolute;
    z-index: 6;
    width: 100%;
    height: 130px;
    bottom: 0;
    background-color: #242424;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.marketing-title{
    font-size: 60px;
    color: #FFFFFF;
}
.black-box-info svg{
    width: 100%;
    margin-top: -105px;
}

.marketing-desc{
    margin-top: -10px;
    width: 351px;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
}
.marketing-btn-block{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 43px;
    display: flex;
    justify-content: space-between;
}
.marketing-cart-btn{
    font-size: 20px;
    color: #FFFFFF;
    width: calc(286px - 23px * 2);
    height: calc(100% - 10px * 2);
    padding: 10px 23px;
    border-top-right-radius: 30px;
    background-color: #9E0E0F;
    cursor: pointer;
    transition:
            padding 0.5s ease;
}
.marketing-cart-btn:hover{
    padding: 10px 36px 10px 30px;
}
.marketing-info-btn{
    position: absolute;
    height: calc(100% - 10px * 2);
    padding: 10px 10px 10px 10px;
    right: 0;
    bottom: 0;
    border-top-left-radius: 30px;
    background-color:#FFFFFF;
    cursor: pointer;
    transition: padding 0.3s ease;
}
.marketing-info-btn:hover{
    padding: 16px 10px 13px 10px;
}
.marketing-info-btn:hover .circle-mini-mark{
    animation: pulseWithOpacity 2s infinite;
}

.circle-mini-mark{
    width: calc(22px - 2px * 2 );
    height: calc(22px - 2px * 2 );
    border-radius: 50%;
    border: 2px solid #242424;
    transition:
            animation 0.3s ease-in-out,
            transform 0.3s ease-in-out;
}
@keyframes pulseWithOpacity {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.95);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.circle-mini-mark span{
    font-size: 16px;
}
.marketing-banner{
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
}
.banner-photo{
    position: relative;
    width: 317px;
    height: 369px;
    border-radius: 50% 50% 0 0;
    overflow: hidden;
    margin-top: 32px;
}
.banner-photo img{
    width: 100%;
    height: 100%;
}
.banner-title{
    position: absolute;
    z-index: 2;
    width: 353px;
    height: 397px;
    left: -122px;
    top: -230px;
    transform: rotate(20deg);
    border-radius: 50%;
    background-color: #FEFAFB;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-title svg{
    margin-left: 209px;
    margin-top: 183px;
    transform: rotate(-18deg);
}
.product-block{
    position: relative;
    width: calc(100% - 14px * 2);
    height: auto;
    padding: 0 14px;
    margin-top: 25px;
}
.list-title-block{
    width: 100%;
}
.list-title{
    padding: 12px 16px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    background-color: #FF9935;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    color: transparent;
}
.list-title span{
    position: absolute;
    font-size: 35px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 3px;
    color: #242424;
}

.list-title.orange{
    background-color: rgba(255, 153, 53, 0.5);
}
.list-title.dark-orange{
    background-color: rgba(224, 96, 30, 0.5);
}
.list-title.dark{
    background-color: rgba(158, 14, 15, 0.5);
}
.product-list{
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 25px;
    display: flex;
    gap: 20px 14px;
    flex-wrap: wrap;
}
.product-box{
    position: relative;
    width: auto;
    height: auto;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.product-block .product-category{
    margin-top:25px;
}
.product-block .product-category:first-child{
    margin-top:0;
}
.product-box:hover .product-box-img{
    border-radius: 30px;
}
.product-box{
    width: calc(50% - 7px);
    height:  204px;
}

.product-list .product-box:nth-child(8n + 6),  /* 6, 15, 24, 33... */
.product-list .product-box:nth-child(8n + 1),      /* 9, 18, 27, 36... */
.product-list .product-box:first-child {       /* только 1-й элемент */
    width: calc(50% + 6px) !important;
}

/* МАЛЕНЬКИЕ элементы (2-й, 5-й в группе, 1-й в группе кроме первого) */
.product-list .product-box:nth-child(8n + 5),  /* 5, 14, 23, 32... */
.product-list .product-box:nth-child(8n + 2):not(:first-child), /* 10, 19, 28... */
.product-list .product-box:nth-child(2) {      /* только 2-й элемент */
    width: calc(50% - 23px) !important;
}
.product-box-img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 30px 30px 15px 15px;
    transition:
            transform 0.3s ease,
            border-radius 0.3s ease;
}
.product-box-img img{
    width: 100%;
}
.product-box-title-box{
    position: absolute;
    width: 100%;
    height: 28px;
    top: 0;
    left:0;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}
.product-box.small .product-box-title-box{
    width: calc(194px - 28px * 2);
    left: 10px;
    top: -12px;
}

.product-box-title{
    font-size: 16px;
    font-weight: 400;
    margin-top: -8px;
    background: linear-gradient(to right, #1E1E1E -10%, #9E0E0F 30%, #FF9935 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
}

.product-price-block{
    position: absolute;
    width: 60%;
    height: 28px;
    bottom: 0;
    right: 0;
    transform-origin: bottom right;
    border-radius: 15px 0 14px 0;
    background: linear-gradient(to right, rgba(158, 14, 15, 0.7), rgba(255, 153, 53, 0.7));
    backdrop-filter: blur(2px);
    transition:
            transform 0.3s ease,
            bottom 0.3s ease,
            right 0.3s ease;
}
.product-price-block:hover{
    background: linear-gradient(to right, rgba(158, 14, 15, 1), rgba(255, 153, 53, 1));
}
.product-box.small .product-price-block{
    width: 70%;
}
.product-price-block span{
    font-size: 20px;
    color: #FEFAFB;
}
.product-box.active {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 999;
    width: 300px;
    height: 320px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.product-box.active .product-price-block{
    z-index: 1000;
}

.modals .modal-select-item{
    width: 365px;
    height: 391px;
    background-color: #fff;
    border-radius: 15px;
    position: relative;
    z-index: 10;
}

.modal-select-item-hidden{
    position: relative;
    width: calc(100% - 21px - 14px);
    height: calc(100% - 226px - 39px);
    padding: 226px 21px 39px 14px;
    overflow: hidden;
    border-radius: 15px;
}

.modals{
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    z-index: 100;
    pointer-events: none;
    transition: top 0.3s ease;
}
.modals.active{
    pointer-events: initial;
}

.modals.active .modals-bg{
    opacity: 1;
}
.modals .modals-bg{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    backdrop-filter: blur(10px);
    background-color: rgba(0,0,0,0.2);
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-select-item-img{
    position: absolute;
    top: 0;
    left: 0;
    height: 226px;
    width: 100%;
    overflow: hidden;
}
.modal-select-item-img img{
    width: 100%;
    margin-top: -120px;
}
.modal-select-desc{
    width: 100%;
    font-size: 16px;
    line-height: 19px;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
}
.title-block-center{
    position: absolute;
    top: -24px;
    width: calc(100% - 30px * 2);
    padding: 0 30px 0 30px;
    height: auto;
    z-index: 100;
    display: flex;
    align-items: center;
}

.modal-select-title{
    top: -24px;
    left: -12px;
    z-index: 100;
    /*width: calc(100% + 12px);*/
    /*max-width: calc(100% + 12px);*/
    width: 100%;
    padding: 10px 0  8px 0;
    background: linear-gradient(to right, rgba(158, 14, 15), rgba(255, 153, 53));
    border-radius: 30px;
    filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.4));
}
.modal-select-title span{
    font-size: 28px;
    color: #fff;
    text-align: center;
}
.modal-select-price{
    position: absolute;
    padding: 10px 25px  8px 25px;
    bottom: -6px;
    left: -6px;
    z-index: 100;
    background-color: #1E1E1E;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.modal-btn-buy{
    position: absolute;
    padding: 10px 25px  8px 25px;
    bottom: -6px;
    right: -6px;
    z-index: 100;
    background-color: #9E0E0F;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.modal-select-price span{
    font-size: 24px;
    color: #fff;
}
.cart-block{
    width: 100%;
    height: 90px;
    background-color: rgba(30, 30, 30, 0.2);
}
.cart-btn{
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px 10px 5px;
    background-color: rgba(158, 14, 15, 0.8);
    border-radius: 30px;
    filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.4));
    cursor: pointer;
    transition: transform 0.5s ease;
}
.cart-btn:hover{
    transform: scale(1.05);
}

.cart-btn span{
    font-size: 24px;
    color: #FFFFFF;
    margin-left: 5px;
}
.cart-btn-text{
    font-size: 16px !important;
}
.cart-btn svg{
    width: 32px;
    height: 32px;
    margin-left: 10px;
}
.cart-sum-box{
    position:absolute;
    padding: 8px 10px 5px 10px;
    top: -30px;
    right: -10px;
    background-color: rgba(30, 30, 30);
    border-radius: 30px;
}
.back-btn-block{
    position: relative;
    width: 100%;
    height: 40px;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.back-btn{
    display: inline-flex;
    align-items: center;
    height: auto;
    padding: 8px 19px 8px 14px;
    background-color: #242424;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 15px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    justify-content: space-between;
    transition: border-radius 0.3s ease-in-out;
    cursor: pointer;
}
.back-btn svg{
    width: 20px;
    height: 20px;
}
.back-btn span{
    font-size: 16px;
    color: #FFFFFF;
    margin-top: 3px;
}
.back-btn:hover{
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.status-block{
    position: relative;
    z-index: 3;
    width: calc(100% - 4px * 2 - 15px * 2 - 12px * 2);
    height: auto;
    padding: 8px 12px;
    margin-left: 15px;
    margin-top: 15px;
    background-color: #FFFFFF;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
}
.status-block.ready{
    border: 4px solid #06D6A0;
    filter: drop-shadow(0px 10px 10px rgba(11, 93, 79, 0.4));
}
.status-block.wait{
    border: 4px solid #FF9935;
    filter: drop-shadow(0px 10px 10px rgba(93, 64, 11, 0.4));
}
.status-block-left{
    display: flex;
    flex-direction: column;
}
.status-block-left span:nth-child(1){
    font-size: 24px;
    font-weight: 600;
    color: #06D6A0;
}
.status-block.wait .status-block-left span:nth-child(1){
    color: #FF9935;
}

.status-block-left span:nth-child(2){
    font-size: 12px;
    font-weight: 500;
    color: #1E1E1E;
}
.status-block-right{
    display: flex;
    justify-content: center;
    align-items: center;
}
.status-block-right span{
    font-size: 32px;
    font-weight: 600;
    color: #1E1E1E;
}