/* STYLES 1.0
Developer: t.me/moretheme
Screen resolution: 460, 860, 1440, 1920 */
@font-face {
    font-family: Cutest;
    src: url(../fonts/cutest-light.woff2) format("woff2"), url(../fonts/cutest-light.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Cutest;
    src: url(../fonts/cutest-regular.woff2) format("woff2"), url(../fonts/cutest-regular.woff) format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Cutest;
    src: url(../fonts/cutest-semibold.woff2) format("woff2"), url(../fonts/cutest-semibold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Eesti;
    src: url(../fonts/eesti-regular.woff2) format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Eesti;
    src: url(../fonts/eesti-medium.woff2) format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Eesti;
    src: url(../fonts/eesti-bold.woff2) format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* BASIC */
:root {
    --bg: #fff;
    --bg2: #f6f7f9;
    --engine: #fff;
    --engine2: #f6f7f9;
    --text: #212529;
    --text1: #fff;
    --color1: #005bff;
    --color2: #307aff;
    --color3: #374151;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 30%);
    --radius: 10px;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: "Cutest", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

/* HEADER TOP */
.header-top {
    background: #2e2e2e;
    color: var(--text1);
    padding: 10px;
}

.header-top a + a {
    margin-left: 30px;
}

.header-top a:hover {
    color: var(--color1);
}

.header-top_tel {
    margin-left: auto !important;
    font-weight: 600;
}

.header-top_tel i {
    margin-right: 10px;
}

.header-top_tel + a {
    font-weight: 600;
    color: var(--bg2);
}

.header-top_tel + a:before {
    display: inline-block;
    content: "";
    height: 8px;
    width: 8px;
    margin: 0 5px 1px 0;
    border-radius: 50%;
    background-color: #f43;
    animation: pulse 1.25s infinite;
    will-change: transform, box-shadow;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 68, 51, 0.6);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px transparent;
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 transparent;
    }
}

/* HEADER */
header {
    position: relative;
    background: var(--color3);
    color: var(--text1);
    padding: 10px 0;
    width: 100%;
    height: 60px;
    z-index: 8;
}

header.fixed {
    position: fixed;
    top: 0;
}

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

.header-logo {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 60px;
}

@media (max-width: 860px) {
    .header-logo {
        font-size: 22px;
        margin-right: 0;
    }
}

.header-store {
    position: relative;
    display: inline-block;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
    margin-right: 10px;
    cursor: pointer;
}

.header-store > #cart_counts {
    position: absolute;
    top: -5px;
    right: 0;
    display: inline-block;
    background: #F44336;
    border-radius: 50%;
    color: #fff;
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 10px;
    text-align: center;
}

/* HEADER SEARCH */
.header-search {
    position: relative;
    margin-left: 30px;
    margin-right: auto;
}

.header-search form {
    display: flex;
    align-items: center;
    background: var(--light);
    border-radius: var(--radius);
    transition: 0.3s;
    z-index: 8;
}

@media (max-width: 860px) {
    .header-search {
        margin-left: auto;
        margin-right: 10px;
    }

    .header-search.active form {
        position: fixed;
        background: var(--color3);
        box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
        padding: 12px;
        border-radius: 0;
        top: 0;
        left: 0;
        width: 100%;
        margin-left: 0;
    }
}

.header-search_icon, .header-search_voice {
    display: inline-block;
    color: #afafaf;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
}

.header-search_voice {
    background: var(--color1);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    color: var(--text1);
    border-radius: var(--radius);
    opacity: 1;
}

@media (max-width: 860px) {
    .header-search_voice {
        display: none;
    }
}

.header-search input {
    background: transparent;
    color: var(--text1);
    padding: 0;
    border-radius: 0;
    width: 300px;
    height: inherit;
    line-height: inherit;
    font-weight: 400;
}

@media (max-width: 860px) {
    .header-search input {
        display: none;
    }
}

.header-search input::placeholder {
    color: var(--light2);
}

.header-search.active input, .header-search.active .header-search_close {
    display: inline-block;
}

.header-search_close {
    display: none;
}

@media (max-width: 860px) {
    .header-search_close {
        display: none;
        position: absolute;
        opacity: 0.6;
        top: 0;
        right: 0;
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 25px;
        text-align: center;
    }
}

/* HEADER USER */
.header-user {
}

.header-user > img {
    display: inline-block;
    border: 1px solid var(--light);
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
}

.header-user > a .fa-user {
    display: inline-block;
    background: var(--light);
    border: 2px solid var(--light);
    backdrop-filter: blur(50px);
    width: 40px;
    height: 40px;
    line-height: 37px;
    text-align: center;
    border-radius: var(--radius);
    cursor: pointer;
}

.header-user > a i:last-child {
    margin-left: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.header-user.active > a i:last-child {
    transform: rotate(180deg);
}

.header-user > div {
    position: absolute;
    background: var(--bg);
    color: var(--text);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: 5px;
    width: 220px;
    top: 50px;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    overflow: hidden;
    z-index: 5;
}

.header-user.active > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.header-user_av {
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid var(--dark);
}

.header-user_av > img {
    border: 1px solid var(--dark);
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
}

.header-user_av > span {
    flex: 1 1 0%;
    max-width: 100%;
    min-width: 50px;
    margin-left: 10px;
    font-weight: bold;
}

.header-user_av > span span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

.header-user_menu a {
    display: block;
    padding: 8px 15px;
}

.header-user_menu a:hover {
    background: var(--color1);
    color: var(--text1);
}

.header-user_menu a i {
    margin-right: 10px;
    opacity: 0.8;
}

/* MODAL AUTH 2024 */
a[href="#modal-auth"] {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light);
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
}

a[href="#modal-auth"] img {
    width: 22px;
    height: 22px;
}

.modal-auth {
    display: none;
    position: fixed;
    max-width: 500px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: var(--bg);
    color: var(--text);
    border-radius: 20px;
    padding: 50px 60px 20px;
    text-align: center;
    z-index: 9;
}

@media (max-width: 860px) {
    .modal-auth {
        padding: 30px 30px 20px;
        max-width: 400px;
    }
}

.modal-auth > .fa-xmark {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg2);
    border-radius: var(--radius);
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}

.modal-auth h2 + span {
    display: block;
    color: #8d8d8d;
    margin-top: -20px;
    margin-bottom: 35px;
    font-size: 14px;
}

.modal-auth_type {
}

.modal-auth_type > a {
    position: relative;
    display: block;
    background: #f3f3f3;
    padding: 15px 20px;
    border-radius: var(--radius);
    font-weight: bold;
    transition: 0.3s;
}

.modal-auth_type > a:hover {
    background: #e7e7e7;
}

.modal-auth_type > a + a {
    margin-top: 15px;
}

.modal-auth_type > a[name="modal"] {
    background: var(--color1);
    color: #fff;
    text-align: center;
}

.modal-auth_type > a[name="modal"]:hover {
    background: var(--color2);
}

.modal-auth_type > a > img {
    position: absolute;
    top: 12px;
    left: 20px;
    width: 30px;
    height: 30px;
}

.modal-auth_type > a iframe {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.modal-auth_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
}

.modal-auth_btn > a:last-child {
    background: var(--color3);
}

.modal-auth_copy {
    display: block;
    color: #8d8d8d;
    font-size: 12px;
    margin-top: 30px;
}

.modal-auth_copy > a, .modal-auth_lost > a {
    color: #000;
    text-decoration: underline;
    opacity: 0.9;
}

.modal-auth_lost {
    display: block;
    font-size: 14px;
    text-align: center;
    border-top: 1px solid #eee;
    color: #8d8d8d;
    margin: 20px -60px 0;
    padding-top: 20px;
}

@media (max-width: 860px) {
    .modal-auth_lost {
        margin: 20px -30px 0;
    }
}

/* SHOP MENU v0.1 */
.shopmenu-btn {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: var(--color1);
    color: var(--text1);
    border-radius: var(--radius);
    width: 120px;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    text-align: center;
    cursor: pointer;
}

@media (max-width: 860px) {
    .shopmenu-btn {
        order: -1;
        width: 40px;
        padding: 0;
        margin-right: auto;
        justify-content: center;
    }
}

.shopmenu-btn:hover {
    opacity: 0.9;
}

.shopmenu-btn.active {
    background: var(--bg2);
    color: var(--color1);
}

.shopmenu-btn.active i:before {
    content: "\f00d";
}

.shopmenu {
    display: none;
    opacity: 0;
    position: absolute;
    top: 60px;
    left: 18%;
    width: 680px;
    height: 300px;
    background: var(--bg2);
    color: var(--text);
    transform: rotateX(45deg);
    transition: 0.3s;
    z-index: 7;
    overflow: hidden;
}

@media (max-width: 860px) {
    .shopmenu {
        left: 0;
        width: 100%;
        height: 100%;
    }
}

.shopmenu.active {
    display: block;
    opacity: 1;
    transform: none;
}

.shopmenu-sub:before {
    content: "";
    position: absolute;
    width: 200px;
    height: 100%;
    left: 0;
    background: var(--bg);
    z-index: -1;
}

@media (max-width: 860px) {
    .shopmenu-btn span, .shopmenu-sub:before {
        display: none;
    }

    .shopmenu-sub.active {
        position: absolute;
        top: 0;
        width: 100%;
    }
}

.shopmenu-sub > a {
    display: inline-block;
    background: var(--bg);
    width: 200px;
    padding: 15px 20px;
    cursor: pointer;
}

@media (max-width: 860px) {
    .shopmenu-sub > a {
        width: 100%;
    }

    .shopmenu-sub.active > div {
        background: var(--bg2);
        visibility: visible;
        opacity: 1;
    }
}

.shopmenu-sub > a i {
    float: left;
    display: inline-block;
    width: 30px;
    text-align: center;
    margin: -2px 10px 0 0;
    font-size: 25px;
}

@media (min-width: 860px) {
    .shopmenu-sub:first-child > div {
        visibility: visible;
        opacity: 1;
    }
}

@media (min-width: 860px) {
    .shopmenu-sub:hover.shopmenu-sub div {
        background: var(--bg2);
        visibility: visible;
        opacity: 1;
    }
}

.shopmenu-sub > div {
    position: absolute;
    top: 0;
    left: 200px;
    width: 480px;
    height: 100%;
    padding: 20px 40px;
    visibility: hidden;
    opacity: 0;
}

@media (max-width: 860px) {
    .shopmenu-sub > div {
        top: 55px;
        left: 0;
        width: 100%;
        height: auto;
    }
}

.shopmenu-sub > div ul span {
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0.5;
}

.shopmenu-sub > div ul li {
    margin-top: 20px;
}

@media (min-width: 860px) {
    .shopmenu-sub:hover > a, .shopmenu-sub > div ul li a:hover {
        background: var(--bg2);
        color: var(--color1);
    }
}

/* BRAND */
.bansu-brand, .bansu-product {
    position: relative;
    padding: 20px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .bansu-brand, .bansu-product {
        padding: 0;
        overflow: visible;
    }
}

.bansu-brand > .fal, .bansu-product > .fal {
    position: absolute;
    display: inline-block;
    background: var(--bg);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    top: 35%;
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    z-index: 5;
    cursor: pointer;
}

@media (max-width: 860px) {
    .bansu-brand > .fal, .bansu-product > .fal {
        display: none;
    }
}

.bansu-brand > .fa-chevron-right, .bansu-product > .fa-chevron-right {
    left: unset;
    right: 0;
}

.bansu-brand > .fal:hover, .bansu-product .fal:hover {
    background: var(--color1);
    color: var(--text1);
}

.bansu-product > .fal.swiper-button-disabled {
    display: none;
}

.bansu-brand_item {
    display: inline-block;
    background: var(--bg2);
    padding: 20px 50px;
    width: 100%;
    height: 80px;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.bansu-brand_item:hover.bansu-brand_item img {
    transform: scale(1.05);
}

.bansu-brand_item img {
    width: 100%;
    height: 100%;
    transition: 0.3s;
}

/* BANSU OLED */
.bansu-oled_items {
    margin-left: 20px;
}

@media (max-width: 860px) {
    .bansu-oled_items {
        margin-left: 0;
        margin-top: 20px;
    }
}

.bansu-oled_items .bansu-oled_item:first-child {
    margin-bottom: 20px;
}

.bansu-oled_item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(90deg, var(--bg2) 30%, transparent);
    padding: 30px 40px;
    border-radius: var(--radius);
    overflow: hidden;
}

@media (max-width: 860px) {
    .bansu-oled_item {
        padding: 30px;
    }
}

.bansu-oled_item:hover .bansu-oled_bg {
    transform: scale(1.05);
}

.bansu-oled_item h2 {
    margin-bottom: 15px;
}

.bansu-oled_item h2 b {
    color: var(--color1);
}

.bansu-oled_item > span {
    color: var(--color1);
    font-size: 18px;
    font-weight: bold;
}

.bansu-oled_item > p {
    margin: 20px 0;
    opacity: 0.8;
    max-width: 60%;
}

@media (max-width: 860px) {
    .bansu-oled_item > p {
        max-width: 100%;
    }
}

.bansu-oled_item .e-btn {
    max-width: 150px;
}

.bansu-oled_item .e-btn i {
    float: right;
    font-size: 12px;
    margin-top: 5px;
    margin-left: 10px;
}

.bansu-oled_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: 0.3s;
}

/* BANSU PRODUCTS */
.bansu-product > .fal {
    top: 50%;
}

.bansu-product_item {
    background: var(--bg);
    box-shadow: 0 0 2px rgb(0 0 0 / 8%), 0 2px 24px rgb(0 0 0 / 6%);
    padding: 20px;
    border-radius: var(--radius);
    /*height: 450px;*/
    overflow: hidden;
}

@media (max-width: 860px) {
     /*.bansu-product_item {
       height: 390px;
    }*/
}

.bansu-product_item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

@media (max-width: 860px) {
    .bansu-product_item img {
        height: 140px;
    }
}

.bansu-product_content > span:first-child {
    display: inline-block;
    opacity: 0.8;
    font-size: 14px;
}

.bansu-product_content > span:first-child, .bansu-product_content h3 {
    margin-bottom: 10px;
}

.bansu-product_content h3:hover {
    color: var(--color1);
}

.bansu-product_rating span {
    color: #5c5c5c;
    margin-left: auto;
}

.bansu-product_rating span i {
    float: left;
    color: #ffc500;
    font-size: 12px;
    margin-top: 4px;
    margin-right: 5px;
}

.bansu-product_link {
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.bansu-product_price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bansu-product_price > span {
    position: relative;
    font-size: 25px;
    font-weight: bold;
}

.bansu-product_price > span span {
    margin-left: 5px;
    font-weight: 400;
}

.bansu-product_price > span:nth-child(2) {
    margin-bottom: 5px;
    font-size: 14px;
    color: #727272;
    order: -1;
}

.bansu-product_price > span:nth-child(2):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 45%;
    width: 100%;
    height: 2px;
    background-color: #f1222e;
    transform: rotate(-9deg);
}

.bansu-product_link > a {
    display: inline-block;
    background: var(--color1);
    border-radius: var(--radius);
    color: var(--text1);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.bansu-product_link > a:hover {
    background: var(--color2);
}

/* BANSU FULL FIXED */
.bansu-fixed {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    padding: 10px 0;
    transition: 0.3s;
    z-index: 8;
}

.bansu-fixed.fixed {
    opacity: 1;
    visibility: visible;
}

.bansu-fixed .container, .bansu-fixed_left {
    align-items: center;
    justify-content: space-between;
}

.bansu-fixed_left img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 30px;
}

.bansu-fixed_info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.bansu-fixed_info .bansu-full_meta {
    margin-bottom: 0;
}

.bansu-fixed_price {
    position: relative;
}

.bansu-fixed_price > span {
    font-size: 25px;
    font-weight: bold;
}

.bansu-fixed_price > span span {
    margin-left: 5px;
    font-weight: 400;
}

.bansu-fixed_price > span:nth-child(2) {
    position: relative;
    margin-left: 10px;
    font-size: 18px;
}

.bansu-fixed_price > span:nth-child(2):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 45%;
    width: 100%;
    height: 3px;
    background-color: #f1222e;
    -webkit-transform: rotate(-9deg);
    -ms-transform: rotate(-9deg);
    transform: rotate(-9deg);
}

.bansu-fixed_link > a {
}

.bansu-fixed_link > a[id] {
    display: inline-block;
    background: var(--color3);
    color: var(--text1);
    border-radius: var(--radius);
    width: 49px;
    height: 49px;
    line-height: 49px;
    text-align: center;
}

/* BUNSU FULL */
.bansu-full {
}

.bansu-full h1 {
    margin-bottom: 20px;
}

.bansu-full_meta {
    align-items: center;
    margin-bottom: 40px;
    color: var(--color1);
}

.bansu-full_meta a + a, .bansu-full_meta div + a {
    margin-left: 20px;
}

.bansu-full_meta a i {
    margin-right: 8px;
}

.bansu-full_grid {
    grid-template-columns: 450px repeat(2, 1fr);
    justify-items: center;
}

@media (max-width: 860px) {
    .bansu-full_grid {
        grid-template-columns: 1fr;
        justify-items: start;
    }
}

.bansu-full_screens {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

@media (max-width: 860px) {
    .bansu-full_screens {
        flex-direction: column;
    }
}

.bansu-full_screens > img {
    flex: 1 1 0%;
    max-width: 100%;
   /* min-width: 50px;*/
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

@media (max-width: 860px) {
    .bansu-full_screens > img {
        width: 80%;
        height: auto;
    }
}

.bansu-full_screens > ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
}

@media (max-width: 860px) {
    .bansu-full_screens > ul {
        flex-direction: row;
        order: 2;
        height: auto;
    }
}

.bansu-full_screens > ul img {
    background: var(--bg);
    width: 80px;
    height: 80px;
    object-fit: contain;
    padding: 5px;
    margin-right:10px;
    border: 3px solid var(--bg2);
    border-radius: 15px;
}

@media (max-width: 860px) {
    .bansu-full_screens > ul img {
        width: 60px;
        height: 60px;
        margin-top:10px;
    }
}

.bansu-full_memory, .bansu-full_color {
    margin-bottom: 30px;
}

.bansu-full_memory p, .bansu-full_color p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 14px;
    font-weight: 400;
}

.bansu-full_memory span {
    display: inline-block;
    background: var(--bg2);
    border-radius: var(--radius);
    padding: 5px 10px;
    cursor: pointer;
}

.bansu-full_memory span.active {
    background: var(--color2);
    color: var(--text1);
}

.bansu-full_memory span + span, .bansu-full_color span + span {
    margin-left: 10px;
}

.bansu-full_memory span:hover {
    opacity: 0.8;
}

.bansu-full_color span {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    border: solid 1px #c0c0c0;
    border-radius: 50%;
    cursor: pointer;
}

.bansu-full_color span:before {
    content: "";
    position: absolute;
    padding: 2px;
    top: -5px;
    left: -5px;
    display: inline-block;
    width: inherit;
    height: inherit;
    border: 2px solid #d9d9d9;
    border-radius: inherit;
}

.bansu-full_color span:hover:before {
    border: 2px solid var(--color2);
}

.bansu-full_center ul li {
    margin-top: 10px;
    color: #6c6c6c;
    font-size: 14px;
}

.bansu-full_center ul li span {
    color: var(--text);
    margin-left: 10px;
}

.bansu-full_action {
    background: var(--bg);
    box-shadow: 0 0 2px rgb(0 0 0 / 8%), 0 2px 24px rgb(0 0 0 / 6%);
    color: var(--text);
    padding: 20px;
    border-radius: var(--radius);
}

@media (max-width: 860px) {
    .bansu-full_action {
        margin: 20px 0;
    }
}

.bansu-full_price, .bansu-full_deliv {
    display: inline-block;
    margin-bottom: 20px;
}

.bansu-full_price > span {
    font-size: 35px;
    font-weight: bold;
}

.bansu-full_price > span span {
    margin-left: 5px;
    font-weight: 400;
}

.bansu-full_price > span:nth-child(2) {
    position: relative;
    margin-left: 10px;
    font-size: 18px;
}

.bansu-full_price > span:nth-child(2):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 45%;
    width: 100%;
    height: 3px;
    background-color: #f1222e;
    -webkit-transform: rotate(-9deg);
    -ms-transform: rotate(-9deg);
    transform: rotate(-9deg);
}

.bansu-full_deliv > span {
    display: block;
    margin-bottom: 8px;
}

.bansu-full_deliv > span i {
    margin-right: 8px;
    color: var(--color1);
}

.bansu-full_deliv > span span {
    margin-left: 10px;
    color: var(--color1);
    font-weight: bold;
}

.bansu-full_links {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    max-width: 100%;
    width: 100%;
}

.bansu-full_links > a {
    flex: 1 1 0;
    display: inline-block;
    background: var(--color1);
    color: #fff;
    padding: 15px 10px;
    border-radius: var(--radius);
    font-size: 14px;
    text-align: center;
}

.bansu-full_links > a:last-child {
    background: var(--color3);
}

.bansu-full_links > a:hover {
    opacity: 0.9;
}

.bansu-full_fav {
    display: inline-block;
    background: var(--color3);
    color: var(--text1);
    border-radius: var(--radius);
    width: 49px;
    height: 49px;
    line-height: 49px;
    text-align: center;
}

.bansu-full_specs li {
    position: relative;
    max-width: 600px;
    margin: 15px 0;
}

.bansu-full_specs li span {
    position: relative;
    display: inline-block;
    background: #fff;
    padding-right: 10px;
    z-index: 2;
}

.bansu-full_specs li span:last-child {
    float: right;
    padding-left: 10px;
    padding-right: 0;
    font-weight: bold;
}

.bansu-full_specs li:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    border-top: 2px dashed #000;
    opacity: 0.2;
    z-index: 1;
}

.myl-tabs {
    position: relative;
    background: var(--bg);
    box-shadow: 0 0 2px rgb(0 0 0 / 8%), 0 2px 24px rgb(0 0 0 / 6%);
    border-radius: 15px;
    overflow: hidden;
}

.myl-tabs_controls {
    align-items: center;
    background: var(--bg2);
}

.myl-tabs_controls span {
    background: var(--bg2);
    border-bottom: 1px solid #eaeaf5;
    border-right: 1px solid #eaeaf5;
    padding: 18px 30px;
    font-size: 18px;
    transition: 0.3s;
    cursor: pointer;
}

.myl-tabs_controls span.active, .myl-tabs_content {
    background: var(--bg);
    border-bottom: 1px solid var(--bg);
}

.myl-tabs_content {
    padding: 30px;
}

.myl-tabs p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.myl-tabs-hide {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #424242;
    border-radius: 0 0 8px 8px;
    padding: 12px;
    text-align: center;
    z-index: 2;
    cursor: pointer;
}

.myl-tabs-hide:after {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, rgba(38, 38, 38, 0), #262626);
    bottom: 42px;
    width: 100%;
    height: 100px;
    left: 0;
}

/* BADGES */
.badge {
    display: inline-block;
    color: #fff;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    border-radius: 3px;
}

.badge-red {
    background-color: #f53c14;
}

.badge-green {
    background-color: #10c44c;
}

.badge-blue {
    background-color: #005bff;
}

.badge-yellow {
    background-color: #ffb800;
    color: #000;
}

.badge-white {
    background-color: #fff;
    color: #757575;
    box-shadow: 0 1px 4px rgb(0 0 0 / 16%);
}

/* ACCORD */
.accord, .accordi {
    display: block;
    background: var(--light);
    box-shadow: 0 20px 50px 0 rgb(4 73 89 / 10%);
    border-radius: 10px;
    padding: 16px 30px;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.accord:after {
    content: "\002B";
    color: #777;
    font-size: 25px;
    font-weight: 400;
    float: right;
    margin-top: -5px;
}

.accord.active:after {
    content: "\2212";
}

.accord.active {
    border-bottom: 1px solid var(--light);
    border-radius: 10px 10px 0 0;
}

.accord.active + .accordi {
    opacity: 1;
    visibility: visible;
}

.accordi p {
    padding: 20px;
}

.accordi {
    opacity: 0;
    visibility: hidden;
    padding: 0;
    max-height: 0px;
    margin-top: 0;
    border-radius: 0 0 10px 10px;
}

/* FOOTER */
footer {
    position: relative;
    background: var(--color3);
    color: var(--text1);
    padding: 30px 0;
}

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

@media (max-width: 860px) {
    footer .container {
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer-links ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links ul li + li {
    margin-left: 20px;
}

.footer-links ul li:hover {
    color: var(--color2);
}

.footer-links > span {
    display: block;
    font-size: 12px;
    opacity: 0.5;
}

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

@media (max-width: 860px) {
    .footer-soc {
        margin-top: 20px;
    }
}

.footer-soc a {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: var(--light);
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

.footer-soc a:nth-child(1):hover {
    background: #23aaea;
}

.footer-soc a:nth-child(2):hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.footer-soc a:nth-child(3):hover {
    background: #f00;
}

/* GO TOP */
.gotop {
    display:none;
    position: fixed;
    background: var(--bg2);
    box-shadow: 0 4px 8px rgb(0 0 0 / 12%);
    border-radius: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    right: 30px;
    bottom: 30px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    z-index: 7;
}

@media (max-width: 860px) {
    .gotop {
        display: none !important;
    }
}
/* Telegram tugmasi */
.floating-telegram-button {
    position: fixed; /* Ekranning doimiy qismida qoladi */
    bottom: 110px; /* Pastdan 110px masofa (Call tugmasidan yuqorida joylashadi) */
    right: 30px; /* O'ngdan 40px masofa */
    width: 60px; /* Tugma kengligi */
    height: 60px; /* Tugma balandligi */
    background-color: #0088cc; /* Telegram rangi */
    color: #fff; /* Ikonka rangi (oq) */
    border-radius: 50%; /* Tugmani dumaloq qilish */
    display: flex; /* Elementlarni markazlash uchun flex */
    justify-content: center; /* Gorizontal markazlash */
    align-items: center; /* Vertikal markazlash */
    text-decoration: none; /* Link ostidagi chiziqni olib tashlash */
    z-index: 1000; /* Yuqori qatlamda bo'lishi uchun */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Yengil soya */
    transition: transform 0.3s, box-shadow 0.3s; /* Hover uchun animatsiya */
    border: none; /* Ortiqcha chiziqlarni olib tashlash */
}

.floating-telegram-button:hover {
    background-color: #006699; /* Hoverda Telegram tugmasi rangi quyuqlashadi */
    transform: scale(1.1); /* Kichik kattalashish effekti */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* Hover uchun soya */
}

/* Call tugmasi */
.floating-call-button {
    position: fixed; /* Ekranning doimiy qismida qoladi */
    bottom: 30px; /* Pastdan 40px bo'sh joy */
    right: 30px; /* O'ngdan 40px bo'sh joy */
    width: 60px; /* Tugma kengligi */
    height: 60px; /* Tugma balandligi */
    background-color: #007BFF; /* Tugma rangi (ko'k) */
    color: #fff; /* Ikonka rangi (oq) */
    border-radius: 50%; /* Tugmani dumaloq qilish */
    display: flex; /* Elementlarni markazlash uchun flex */
    justify-content: center; /* Gorizontal markazlash */
    align-items: center; /* Vertikal markazlash */
    text-decoration: none; /* Link ostidagi chiziqni olib tashlash */
    z-index: 1000; /* Yuqori qatlamda bo'lishi uchun */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Yengil soya */
    transition: transform 0.3s, box-shadow 0.3s; /* Hover uchun animatsiya */
    border: none; /* Ortiqcha chiziqlarni olib tashlash */
}

.floating-call-button:hover {
    background-color: #0056b3; /* Hoverda Call tugmasi rangi quyuqlashadi */
    transform: scale(1.1); /* Kichik kattalashish effekti */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* Hover uchun soya */
}

/* Ikonkalar */
.floating-telegram-button i,
.floating-call-button i {
    font-size: 24px; /* Ikonka o'lchami */
}









/* Tovar kartochkasi */
.bansu-product_item {
    background: #fff;
    border-radius: 10px; /* Yumaloq burchaklar */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04); /* Yengil soya */
    overflow: hidden; /* Tashqaridan chiqmasligi uchun */
    display: flex;
    flex-direction: column; /* Elementlarni vertikal hizalash */
    justify-content: space-between; /* Kontentni joylashuvini taqsimlash */
    padding: 0; /* Ichki boâ€˜sh joy yoâ€˜q */
    min-height: 350px; /* Minimal balandlik */
    transition: transform 0.3s, box-shadow 0.3s; /* Hover animatsiyasi */
}

/* Rasm qismi */
.bansu-product_image {
    width: 100%; /* Kenglikni konteynerga toâ€˜liq moslash */
    height: 200px; /* Rasm balandligi */
    background-color: #EFEFEF; /* Rasm uchun fon rangi */
    display: flex; /* Markazlashtirish uchun */
    justify-content: center; /* Gorizontal markazlash */
    align-items: center; /* Vertikal markazlash */
    overflow: hidden; /* Rasm tashqaridan chiqmasligi uchun */
    margin: 0; /* Ichki bo'shliq yoâ€˜q */
}

.bansu-product_image img {
    width: auto; /* Kenglikni proporsiyaga moslashtirish */
    height: 100%; /* Balandlikni konteynerga moslashtirish */
    object-fit: contain; /* Rasmni konteyner ichida sigâ€˜dirish */
}

/* Mahsulot kontenti */
.bansu-product_content {
    padding: 15px; /* Ichki boâ€˜sh joy */
    display: flex; /* Elementlarni hizalash uchun flex */
    flex-direction: column; /* Elementlarni vertikal joylashtirish */
    justify-content: space-between; /* Elementlarni teng taqsimlash */
    flex-grow: 1; /* Vertikal boâ€˜shliqni egallash */
}

/* Mahsulot sarlavhasi */
.bansu-product_title h3 {
    font-size: 16px; /* Sarlavha kattaligi */
    font-weight: bold;
    color: #333; /* Qora rang */
    margin: 0 0 10px; /* Sarlavha va narx orasidagi boâ€˜shliq */
    line-height: 1.4; /* Qator balandligi */
    word-wrap: break-word; /* Uzun matnni yangi qatorga ajratish */
    text-transform: uppercase; /* Matnni katta harflar bilan yozish */
    display: -webkit-box; /* Clamp uchun konteyner */
    -webkit-line-clamp: 2; /* Maksimal 2 qator */
    -webkit-box-orient: vertical; /* Qator orientatsiyasi */
    overflow: hidden; /* Qator tashqarisidagi matnni yashirish */
    text-overflow: ellipsis; /* Oxirida "..." qoâ€˜shish */
}

/* Narx qismi */
.bansu-product_price span {
    font-size: 18px; /* Narx kattaligi */
    font-weight: bold;
    color: #007BFF; /* Koâ€˜k rang */
    margin-top: auto; /* Narxni eng pastga joylash */
    display: block; /* Yangi qatorda koâ€˜rsatish */
    text-align: left; /* Chapga hizalash */
    min-height: 30px; /* Narx uchun minimal balandlik */
    line-height: 30px; /* Narxning bir xil balandlikda ko'rinishi */
}

.collapsible {
    position: relative;
    width: 100%; /* Kenglikni toâ€˜liq qilish */
    margin: 20px auto; /* Markazlashtirish */
    font-family: Arial, sans-serif; /* Shrift */
}

.collapsible-content {
    overflow: hidden; /* Tashqaridagi matnni yashirish */
    display: -webkit-box; /* Webkit konteyner */
    -webkit-box-orient: vertical; /* Vertikal hizalash */
    -webkit-line-clamp: 4; /* Maksimal 4 qator */
    text-overflow: ellipsis; /* "..." ni qo'shish */
    line-height: 1.6; /* Qator balandligi */
    max-height: calc(1.6em * 4); /* 4 qator balandligi */
    transition: max-height 0.3s ease; /* Animatsiya */
}

.collapsible.open .collapsible-content {
    max-height: none; /* Cheklovni olib tashlash */
    -webkit-line-clamp: unset; /* Qator cheklovini olib tashlash */
}

.collapsible-toggle {
    background-color: #007BFF; /* Koâ€˜k tugma */
    color: #fff; /* Oq matn */
    border: none; /* Chegara yoâ€˜q */
    padding: 10px 15px; /* Tugma ichki boâ€˜shligi */
    cursor: pointer; /* Tugma kursori */
    font-size: 14px; /* Matn kattaligi */
    border-radius: 5px; /* Yumaloq burchaklar */
    margin-top: 10px; /* Tugma bilan matn orasida boâ€˜shliq */
    transition: background-color 0.3s ease; /* Tugma hover effekti */
}

.collapsible-toggle:hover {
    background-color: #0056b3; /* Hover effekti */
}


            @media (max-width: 375px) {
                .bansu-full_screens > ul {
                    flex-direction: row;
                    order: 2;
                    height: auto;
                }
            }
            .shopmenu {
    max-height: 100vh; /* ekran balandligiga moslashadi */
    overflow-y: auto; /* faqat kerak bo'lsa skroll qo'shadi */
    scroll-behavior: smooth; /* skrollni tekis qiladi */
}



/* Mobil uchun width: 100% */
@media (max-width: 768px) {
    .bansu-full_right {
        max-width: 100%; /* Mobil qurilmalarda to'liq kenglik */
        width: 100%; /* Qo'shimcha moslashuv */
    }
}

/* Ichki blok dizayni */
.bansu-full_action {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bansu-full_price span {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 15px;
}













/* ============================================
   RIGHT SECTION (Price & Actions)
   ============================================ */
.bansu-full_right {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.bansu-full_action {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Price Section */
.bansu-full_price {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    margin-bottom: 24px;
    border: 2px solid #e2e8f0;
}

.price-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-amount {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    line-height: 1;
}

.price-currency {
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
}

/* Action Buttons */
.bansu-full_links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.bansu-full_links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bansu-full_links a i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.bansu-full_links a:hover i {
    transform: scale(1.2);
}

/* Cart Button */
.btn-cart {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

/* Buy Now Button */
.btn-buy {
    background: #1a202c;
    color: #fff;
    box-shadow: 0 4px 16px rgba(26, 32, 44, 0.3);
}

.btn-buy:hover {
    background: #2d3748;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 32, 44, 0.4);
}

/* Telegram Button */
.btn-telegram {
    background: #0088cc;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.3);
}

.btn-telegram:hover {
    background: #006699;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.4);
}

/* Contact Section */
.bansu-full_contact {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 2px dashed #cbd5e0;
}

.contact-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 12px;
    text-align: center;
}

.contact-label i {
    font-size: 16px;
    color: #667eea;
}

.contact-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 4px 4px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.contact-phone i {
    font-size: 20px;
    color: #667eea;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .bansu-full_right {
        position: static;
    }
    
    .bansu-full_action {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .bansu-full_action {
        padding: 24px;
        border-radius: 16px;
    }
    
    .price-amount {
        font-size: 32px;
    }
    
    .price-currency {
        font-size: 16px;
    }
    
    .bansu-full_links a {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .contact-phone {
        font-size: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .bansu-full_action {
        padding: 20px;
    }
    
    .bansu-full_price {
        padding: 20px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .price-currency {
        font-size: 14px;
    }
    
    .bansu-full_links a {
        padding: 12px 18px;
        font-size: 13px;
    }
    
    .bansu-full_links a i {
        font-size: 16px;
    }
    
    .contact-label {
        font-size: 12px;
    }
    
    .contact-phone {
        padding: 12px 16px;
        font-size: 15px;
    }
}