@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("inter-cyrillicext.woff2") format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

:root {
    --adv-height: 0px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    -webkit-tap-highlight-color: transparent;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-weight: 400;
}

a {
    text-decoration: none !important;
}

.container {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 200px;
}

body > .container {
    flex: 1 0 auto;
}

.line {
    width: 100%;
    border-top: 1px solid #dfdfdf;
}

.hidden {
    display: none;
}

.upper {
    height: 52px;
}

.upper .container, .upper-inner, .upper-inner a {
    height: 100%;
    display: flex;
    align-items: center;
}

.upper-inner {
    width: 100%;
    justify-content: space-between;
}

.upper-inner nav {
    display: flex;
    gap: 20px;
}

.upper-inner a {
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
    color: inherit;
    padding: 18px 15px;
}

.upper-inner a:hover, .us-button:hover, .ls-button:hover, .us-options li:hover {
    color: orange;
}

.us-button:hover svg {
    transform: translateY(2px);
    fill: orange;
}

.high-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.high-menu .left {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.high-menu .left img {
    height: 50px;
    width: auto;
}

.high-menu .right .mobile_menu_trigger {
    display: none;
}

.unit-selector {
    position: relative;
    user-select: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.us-button {
    height: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.us-button svg {
    transition: 0.3s ease;
    fill: black;
}

.us-options {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    list-style: none;
    z-index: 100;
    padding: 5px;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 100%;
    width: max-content;
    white-space: nowrap;
}

.us-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 1000;
}

.us-options li {
    padding: 10px 18px;
    transition: 0.2s;
    border-radius: 10px;
    text-align: center;
}

.us-options li:hover {
    background-color: #fff0e6;
    color: #d15700;
}

.categories {
    padding-bottom: 10px;
}

.section_category {
    margin-top: 0;
    margin-bottom: 40px;

    scroll-margin-top: calc(var(--adv-height) + 120px);
}

.section_category .title {
    font-weight: bold;
    font-size: 28px;
}

.disc {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    margin: 20px 0;
}

.obj {
    background-color: white;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    transition: 0.3s ease;
    position: relative;
}

.obj .info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    padding: 5px 0;
    gap: 10px;
}

.obj .img_box {
    position: relative;
}

.obj .obj_tag {
    position: absolute;
    top: 85%;
    margin-left: 10px;
    padding: 5px 15px;
    white-space: nowrap;

    background-color: rgb(255, 101, 157);
    border-radius: 16px;
    box-shadow: rgba(255, 255, 255, 0.5) 0px 0px 8px inset;
    font: 500 16px / 18px Rooftop, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

    transform: rotate(-6deg);
    color: white;
    transition: 0.3s ease;
}

.obj .description, .obj .name {
    padding: 0 10px !important;
}

.obj .name {
    font-size: 18px;
    font-weight: 650;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.obj .description {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #575f6d;
    line-height: 1.4;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.obj img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    transition: 0.3s ease;
    border-radius: 20px;
}

.obj:hover img {
    transform: translateY(5px);
}

.obj:hover .obj_tag {
    transform: translateY(3px) rotate(-6deg);
}

.obj .price_holder {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    align-items: flex-end;
    gap: 10px;
    margin-top: auto;
}

.obj .gram_info {
    padding: 0 10px;
    color: #888888;

    text-align: right;
}

.obj .price {
    padding: 8px 15px;
    font-size: 20px;
    background-color: #fff0e6;
    color: #d15700;
    border-radius: 30px;
    font-weight: bold;

    transition: 0.3s ease;
    cursor: pointer;
}

.obj .price:hover {
    background-color: #ffc69f;
}

.obj .in_disc {
    padding: 0 10px;
    text-decoration: line-through;
    color: #888;
    font-size: 20px;
}

.cat_list {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    user-select: none;
    gap: 15px;
    position: sticky;
    top: var(--adv-height);
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 100%;

    align-items: center;

    transition: 0.3s ease;

    -webkit-user-select: none;
    -ms-user-select: none;

    cursor: grab;
}

.cat_list::-webkit-scrollbar {
    display: none;
}

.cat_list:active {
    cursor: grabbing;
}

.cat_list a {
    color: black;
    transition: 0.3s ease;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.011em;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;

    -webkit-user-drag: none;
    white-space: nowrap;

    padding: 20px 0;
    flex-shrink: 0;
}

.cat_list-logo {
    flex-shrink: 0;
    width: 0;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    margin: 0;
}

.cat_list-logo.is-active {
    width: 40px;
    opacity: 1;
    transform: scale(1);
}

.cat_list a:hover {
    color: #FF6900;
}

.cat_list div:active {
    transform: scale(0.9);
}

.cat_active {
    color: #FF6900 !important;
}

footer {
    flex-shrink: 0;
    background-color: #181818;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    color: white;
}

.nav_links {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex: 1;
    gap: 40px;
    padding: 10px;
}

.nav_links .links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: fit-content;
}

.links > * {
    text-align: left;
    color: white;
    width: fit-content;
}

.links h4 {
    color: #a8a8a8;
    font: 700 18px / 20px Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.links a {
    font: 500 16px / 20px Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";;
}

.logo_buttons_holder {
    display: flex;
    padding: 10px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.logo_button {
    display: flex;
    gap: 5px;
    font-size: 12px;
    border-radius: 5px;
    border: 1px solid white;
    padding: 4px 8px;
    background-color: black;
    transition: 0.3s ease;
    cursor: pointer;
}

.logo_button:hover, .f3_right img:hover {
    transform: scale(1.1);
}

.logo_button:active, .f3_right img:active {
    transform: scale(0.9);
}

footer .fb1 {
    display: flex;
    justify-content: space-between;
}

.footer_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo_button div .footer_text {
    display: flex;
    flex-direction: column;
}

.logo_button img {
    aspect-ratio: 1/1;
    height: 22px;
}
.fb1_left_col {
    display: flex;
    flex-direction: column;
    flex: 1;
}


.fb2 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    padding: 20px 0;
}

.fb2 h4 {
    text-align: right;
    width: fit-content;
    color: #A6A6A6;
}

.fb2 img {
    object-fit: contain;
    height: 40px;
    width: auto;
}

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

.fb3 .f_line {
    width: 100%;
    border: 1px solid gray;
    margin-bottom: 20px;
}

.fb3_container {
    display: flex;
    justify-content: space-between;
}

.fb3 .f3_left {
    display: flex;
    gap: 30px;
    color: #b3b3b3;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
}

.f3_left a {
    transition: 0.3s ease;
    color: #afafaf;
}

.app_links {
    color: white;
}

.f3_left a:hover {
    color: #e4e4e4;
}

.f3_right, .face_inst_mobile-link {
    display: flex;
    gap: 20px;
}

.f3_right img, .face_inst_mobile-link img {
    aspect-ratio: 1/1;
    width: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.face_inst_mobile-link {
    display: none;
}

.fb4 {
    padding-top: 20px;
    color: #737373 !important;
    font-weight: bold;
    font-size: 12px;
}

.advertising {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    font-size: 20px;
    padding: 10px 40px;
    width: 100%;
    min-height: 8vh;
    background-color: #efefef;
    z-index: 700;
    color: #000;
}

.advertising .container {
    display: flex;
    justify-content: space-between;
}

.advertising .x {
    height: 40px;
    width: 40px;
    cursor: pointer;
}

.advertising .logo {
    width: 60px;
    height: 60px;
}

.advertising .lefted {
    display: flex;
    align-items: center;
    gap: 10px;
}

.advertising .lefted .x {
    padding: 10px;
    margin-right: 20px;
}

.advertising .lefted nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 5px;
}

.advertising .righted {
    display: flex;
    align-items: center;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0px rgba(255, 140, 0, 0.4); }
    50% { box-shadow: 0 0 15px rgba(255, 140, 0, 0.7); }
}

.advertising .righted .get {
    background-color: darkorange;
    border-radius: 60px;
    color: #fff;
    padding: 10px 40px;
    font-weight: bold;
    cursor: pointer;
    border: 0;
    transition: 0.3s ease;
    animation: pulseGlow 2s infinite ease-in-out;
    font-size: 20px;
}

.advertising .righted .get:hover, .advertising .righted .get:active {
    animation: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.advertising .righted .get:hover {
    transform: scale(1.1);
}

.advertising .righted .get:active {
    transform: scale(0.9);
}

.mob_menu {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #232323;
    z-index: 1001;
}

.mob_menu .container {
    padding: 0 60px;
}

.mob_menu .us-button {
    padding-bottom: 20px;
}

.mob_menu .unit-selector-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.us-options-mobile {
    margin-left: 20px;
    list-style-type: none;
    display: none;
    flex-direction: column;
}

.us-options-mobile li {
    padding: 20px 10px;
    border-top: 2px solid #8c5454;
}

.logo-text-m {
    fill: white;
    transition: fill 0.3s ease;
}

.m_header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #8c5454;
    padding: 15px;
}

.m_header .lefted {
    display: flex;
    padding-left: 5px;
}

.mm-kid {
    display: flex;
    gap: 10px;
    padding: 40px 0;
}

.mm-kid > * {
    font-weight: bold;
    font-size: 50px;
    color: white;
    padding: 0 10px;
}

.mob_menu .mm-kid {
    border-bottom: 2px solid #8c5454;
}

.mob_menu .call_block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.uom-active {
    display: flex;
}

.dodo_events {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;

    aspect-ratio: 4 / 1;
}

.dodo_events .event__right-btn,
.dodo_events .event__left-btn {
    aspect-ratio: 1/1;
    height: 50px;
    background: rgb(255 255 255 / 0.4);
    border-radius: 50%;
    border: 0;
    font-size: 30px;
    color: darkorange;
    font-weight: bolder;
    position: absolute;

    top: 80%;

    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.dodo_events .event__left-btn {
    left: 0px;
    transition: 0.3s ease;
}

.dodo_events .event__right-btn {
    right: 0px;
    transition: 0.3s ease;
}

.event__right-btn:hover, .event__left-btn:hover {
   background: rgb(255 255 255 / 0.8);
}

.event__right-btn:active, .event__left-btn:active {
    background-color: #ffffff;
}

.event__img-container {
    width: 100%;
    height: 100%;
    z-index: 1;

    overflow-x: auto;
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px;

    scrollbar-width: none;

    cursor: pointer;
}

.event__img-container img {
    border-radius: 25px;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    display: block;
}

.cat_list_trigger {
    width: 100%;
    height: 1px;
}

.event__left-btn_mobile, .event__right-btn_mobile {
    display: none;
}

.fiyatlar_text {
    padding: 20px 10px 10px 10px;
    color: #a8a8a8;
    font-size: 14px;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
}

@media (max-width: 1280px) {
    .container {
        padding: 0 100px;
    }
}

@media (max-width: 1024px) {

    body > .container {
        display: flex;
        flex-direction: column;
    }

    .high-menu {
        order: 1;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .dodo_events {
        order: 3;
        width: 100%;
        height: auto;
        aspect-ratio: auto;
    }

    .event_active_count {
        order: 2;
        background-color: #ff6900 !important;
        transform: scale(1.1);
    }

    .cat_list_trigger {
        position: relative;
        order: 4;
        height: 1px;
        width: 100%;
        pointer-events: none;
        visibility: hidden;
    }

    .cat_list {
        order: 5;
    }

    .categories {
        order: 6;
    }

    .event__left-btn_mobile,
    .event__right-btn_mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 150px;
        height: 100%;
        background-color: transparent;
        position: absolute;
        top: 0;
        z-index: 20;
        cursor: pointer;

    }

    .event__left-btn_mobile { left: 0; }
    .event__right-btn_mobile { right: 0; }

    .event__left-btn_mobile button,
    .event__right-btn_mobile button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 100px;
        pointer-events: none;

        margin-top: 330px;

        background: rgb(255 255 255 / 0.4);

        border: 0;
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);

        transition: 0.3s ease;
    }

    .event__left-btn_mobile:active button,
    .event__right-btn_mobile:active button {
        background-color: white;
        transform: scale(1.1);
    }

    .cat_list {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .cat_list-logo.is-active {
        width: 80px;
        height: 80px;
    }

    .cat_list a {
        color: #616161;
        background-color: #f4f4f4;
        border-radius: 20px;
        font-weight: 450;
    }

    .cat_active {
        background-color: #FEEFE3 !important;
    }

    .event__img-container {
        width: 100%;
        height: 100%;
        z-index: 1;

        border-radius: 20px;

        overflow-x: auto;
        display: flex;
        flex-direction: row;
        gap: 10px;
        padding: 10px;

        scrollbar-width: none;
        cursor: pointer;

        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;

        -webkit-overflow-scrolling: touch;
    }

    .event__img-container img {
        flex: 0 0 95%;
        width: 100%;
        height: auto;
        object-fit: contain;
        background-color: #fff;

        scroll-snap-align: center;
        scroll-snap-stop: always;

        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-user-drag: none;
        -webkit-touch-callout: none;
    }

    .event__left-btn, .event__right-btn {
        display: none !important;
    }

    .container {
        padding: 0 20px;
    }

    .advertising {
        padding: 40px 10px 40px 5px;
        font-size: 40px;
    }

    .advertising .x {
        height: 50px;
        width: 50px;
    }

    .advertising .logo {
        width: 110px;
        height: 110px;
    }

    .advertising .lefted nav {
        gap: 10px;
    }

    .advertising .righted {
        display: flex;
        align-items: center;
    }

    .advertising .righted .get {
        padding: 20px 60px;
        font-size: 30px;
    }

    .mobile_menu_trigger {
        display: block !important;
    }

    header, .call_block {
        display: none;
    }

    .left img {
        height: 80px !important;
    }

    .categories .title {
        font-size: 70px;
        padding: 30px 0;
    }

    .disc {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .section_category {
        padding-left: 25px;
    }

    .high-menu {
        padding-top: 40px;
    }

    .obj {
        flex-direction: row;
        box-shadow: none;
        border-radius: 0;
        border-bottom: 1px solid #eaeaea;
        padding: 10px;
    }

    .obj .obj_tag {
        top: 3%;
        font-size: 35px;
        padding: 20px 30px;
        margin-left: 5px;
        border-radius: 30px;
        transform: rotate(-6deg) !important;
        white-space: nowrap;

        background-color: rgb(255, 101, 157);
        box-shadow: rgba(255, 255, 255, 0.5) 0px 0px 8px inset;

    }

    .obj:hover .obj_tag {
        transform: rotate(-6deg) translateY(3px) !important;
    }

    .obj img {
        height: 330px;
        width: 330px;
    }

    .obj .info {
        flex: 1;
        padding: 30px 10px;
        gap: 40px;
    }

    .obj .description {
        font-size: 30px;
    }

    .obj .name {
        font-size: 40px;
    }

    .obj .price_holder {
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 20px;
        margin: 0;
    }

    .obj .gram_info {
        text-align: left;
        font-size: 30px;
        padding:0 20px;
    }

    .obj .price, .obj .in_disc {
        font-size: 40px;
    }

    .obj .price {
        padding: 10px 40px;
        border-radius: 40px;
        min-width: 200px;
        text-align: center;
    }

    .cat_list {
        gap: 20px;
        padding: 30px 20px !important;
        background-color: white;
    }

    .cat_list a {
        font-size: 40px;
        border-radius: 40px;
        padding: 10px 30px;
    }

    .cat_list a:hover {
        color: #404040;
    }

    footer {
        font-size: 30px;
        padding-top: 80px ;
    }

    .fb1 {
        flex-direction: column !important;
    }

    .fb1 .nav_links {
        flex-direction: column;
        align-items: flex-start;

        gap: 100px;
        padding-bottom: 100px;
    }

    .nav_links .links > * {
        gap: 30px;
        font: 700 40px / 50px Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    }

    footer .logo_buttons_holder {
        justify-content: flex-start;
        gap: 20px;
        margin-bottom: 50px;
    }

    footer .logo_button {
        padding: 15px;
        border-radius: 10px;
        font-size: 20px;
        gap: 20px;
    }

    footer .logo_button img {
        height: 45px;
    }

    .face_inst_mobile-link {
        display: flex;
        gap: 30px;
    }

    .logo_buttons-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .face_inst_mobile-link img, .face_inst_mobile-link.a {
        height: 70px;
        width: 70px;
    }

    footer .fb2 {
        align-items: flex-start;
        font-size: 35px;
    }

    footer .fb2 img {
        height: 90px;
        margin-bottom: 50px;
    }

    .f3_left {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .f3_left > * {
        padding: 10px 0;
    }

    .f3_right {
        display: none;
    }

    footer .f3_right a {
        display: flex;
        align-items: center;
    }

    footer .fb4 {
        line-height: 40px;
        font-size: 30px;
        padding: 50px 0;
    }
    .fiyatlar_text {
        font-size: 30px;
        padding: 0 10px 50px 10px;
    }
}




