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

/* BASIC */
:root {
    --bg: #fff;
    --bg2: #f7f7f7;
    --bg3: #010410;
    --text: #000;
    --text1: #fff;
    --text2: #a5a1b2;
    --color1: #3d55ef;
    --color2: #556bfd;
    --light: rgb(255 255 255 / 15%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 10%);
    --radius: 8px;
}

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 {
    position: relative;
    display: flex;
    align-items: center;
    grid-gap: 25px;
    background: var(--bg2);
    padding: 15px 30px;
    border-radius: var(--radius);
    margin-top: 20px;
    margin-bottom: 20px;
}

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

.header-top > a:hover:not(.header-top_tel) {
    color: var(--color2);
}

.header-top_tel {
    display: block;
    font-weight: 600;
    margin-left: auto;
}

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

.header-top_tel span {
    margin-left: 20px;
    font-weight: 500;
    opacity: 0.8;
}

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

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

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

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

/* HEADER */
header {
    position: relative;
    background: transparent;
    padding: 15px 0;
    width: 100%;
}

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

@media (max-width: 860px) {
    header .container {
        grid-gap: 10px;
    }
}

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

.header-center > a:not(.header-logo) {
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
    margin-left: 30px;
}

@media (max-width: 820px) {
    .header-center > a:not(.header-logo) {
        margin-left: 10px;
    }
}

.header-center > a i, .header-center .header-user > span i {
    float: left;
    margin-top: -3px;
    margin-right: 10px;
    font-size: 25px;
}

@media (max-width: 820px) {
    .header-center > a i, .header-user > span i {
        background: var(--bg2);
        color: #afafaf;
        border-radius: 5px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        float: none!important;
        margin-right: 0!important;
        font-size: 16px!important;
    }
}

.header-center > a:nth-child(5):hover i {
    color: #f44336;
    font-weight: 600;
}

.header-center > a:hover i, .header-user > span:hover i {
    color: var(--color1);
    font-weight: 600;
}

@media (max-width: 820px) {
    .header-center > a span:not(.header-logo span), .header-user > span span {
        display: none;
    }
}

.header-logo span {
    font-size: 35px;
    font-weight: bold;
}

@media (max-width: 820px) {
    .header-logo span {
        font-size: 30px;
    }
}

.header-menu {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.header-links {
}

.header-links > a {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 2.0;
    text-align: center;
    cursor: pointer;
}

@media (max-width: 860px) {
    .header-links > a span {
        display: none;
    }
}

.header-links > a span:first-child {
    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-links > a i {
    display: block;
    font-size: 25px;
}

@media (max-width: 860px) {
    .header-links > a i {
        background: var(--bg2);
        border-radius: var(--radius);
        color: var(--text2);
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
        text-align: center;
    }
}

/* CATALOG */
.catalog-btn {
    display: inline-block;
    background: var(--color1);
    box-shadow: 0 5px 15px var(--color1);
    padding: 12px 25px;
    border-radius: var(--radius);
    color: #fff;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

@media (max-width: 860px) {
    .catalog-btn {
        margin-left: auto;
        min-width: 40px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        padding: 0;
        text-align: center;
    }
}

.catalog-btn:hover {
    background: var(--color2);
}

.catalog-btn span {
    margin-left: 10px;
}

@media (max-width: 860px) {
    .catalog-btn span {
        display: none;
    }
}

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

.catalog {
    position: absolute;
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    background: var(--bg);
    color: var(--text);
    padding: 20px;
    box-shadow: 0 12px 24px rgb(0 0 0 / 15%);
    border-radius: var(--radius);
    max-width: 360px;
    top: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 8;
}

.catalog:before {
    content: "";
    position: absolute;
    top: -5px;
    left: 40%;
    width: 10px;
    height: 10px;
    background: var(--bg);
    transform: rotate(45deg);
}

@media (max-width: 860px) {
    .catalog:before {
        left: 60%;
    }
    .catalog {right: 30px; left: auto;}
}

.catalog.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.catalog > a:hover {
    color: var(--color1);
}

/* MOB MENU 11.0 */
.mobmenu-btn, .mobmenu-close {
    display: none;
}

.mobmenu-sub, .mobmenu-sub > a {
    position: relative;
    display: block;
    width: 100%;
}

.mobmenu-sub > a + div {
    display: block;
    background: #1c1a21;
    padding: 0;
    visibility: hidden;
    width: 100%;
    height: 0;
    opacity: 0;
    transition: all 0.3s;
}

.mobmenu-sub > a:after {
    display: inline-block;
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    margin-left: 20px;
}

.mobmenu-sub > a.active {
    background: #3a3744;
    color: #fff;
}

.mobmenu-sub > a.active:after {
    transform: rotate(180deg);
}

.mobmenu-sub > a.active + div {
    visibility: visible;
    opacity: 1;
    height: auto;
    padding: 10px 20px;
}

.mobmenu-sub > a.active + div a {
    display: block;
    padding: 8px 0;
    line-height: 1.5;
}

.mobmenu-sub > a.active + div a:hover {
    color: var(--color1)
}

@media (max-width: 860px) {
    .mobmenu-btn {
        display: block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        color: var(--bg2);
        font-size: 25px;
        text-align: center;
        margin-right: 15px;
    }

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

    .mobmenu-btn.active {
    }

    .mobmenu {
        position: fixed;
        background: #161e29;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        top: 64px;
        left: -300px;
        width: 240px;
        height: 100%;
        margin-left: 0;
        color: #fff;
        transition: left 0.3s;
        overflow-y: auto;
        z-index: 8;
    }

    .mobmenu.active {
        left: 0;
        border-radius: 0;
    }

    .mobmenu .mobmenu-close {
        position: fixed;
        top: -40px;
        right: 90px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        color: var(--bg2);
        font-size: 25px;
        text-align: center;
        transition: 0.3s;
    }

    .mobmenu.active .mobmenu-close {
        display: block;
        top: 20px;
    }
}

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

@media (max-width: 860px) {
    .header-search {
        background: var(--bg2);
        border-radius: var(--radius);
        margin: 0;
    }
}

.header-search form {
    display: flex;
    align-items: center;
    background: var(--bg2);
    border-radius: var(--radius);
    padding: 0 0 0 10px;
}

@media (max-width: 860px) {
    .header-search form {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        width: 100%;
        top: -40px;
        left: 0;
        background: var(--bg2);
        border-radius: 0;
        padding: 10px;
        transition: 0.3s;
        z-index: 5;
    }
}

.header-search.active form {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.header-search .fa-magnifying-glass, .header-search .fa-xmark {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #a5a1b2;
    font-size: 20px;
    text-align: center;
}

.header-search form input {
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    width: 250px;
    height: inherit;
    border-radius: 0;
    margin-left: 15px;
}

.header-search form .fa-microphone {
    display: inline-block;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.header-search .fa-xmark:not(.header-search.active .fa-xmark) {
    display: none;
}

@media (max-width: 860px) {
    .header-search form input {width: 100%;}
}

/* FAST SEARCH
----------------------------------------------- */
.fast_search {
    position: absolute;
}

@media (max-width: 425px) {
    .fast_search {
        left: 0;
        width: 100%;
    }
}

.fast_search #searchsuggestions {
    background: var(--bg);
    box-shadow: 0 20px 20px rgb(0 0 0 / 60%);
    color: #999999;
    width: 280px;
    max-height: 290px;
    overflow: hidden;
    overflow-y: auto;
    padding: 15px;
    margin-top: 10px;
    border-radius: 12px;
}

@media (max-width: 425px) {
    .fast_search #searchsuggestions {
        width: 100%;
    }
}

.fsearch {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    justify-content: space-between;
}

.fsearch:hover {
    background: var(--color7);
}

.fsearch_poster {
    position: relative;
    width: 65px;
    height: 55px;
    margin-right: 10px;
}

.fsearch_poster img {
    width: auto;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.fsearch_info h4 {
    font-weight: 600;
    margin-bottom: 0;
}

.fsearch_tags span {
    font-weight: 400;
    opacity: 0.8;
}

.fsearch_rating {
    color: #01c03a;
    font-weight: 800;
    opacity: 1;
}

.fsearch_rating.low {
    color: #e13535
}

.fsearch_rating.middle {
    color: #ff6702
}

.notfound + .seperator {
    display: none;
}

.seperator {
    display: block;
    background: var(--light);
    padding: 8px 20px;
    text-align: center;
    border-radius: 10px;
}

.seperator:hover {
    background: var(--two-light);
}



/* HEADER USER */
.header-user > a {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 2.0;
    text-align: center;
    cursor: pointer;
}

.header-user > a i {
    display: block;
    font-size: 25px;
}

@media (max-width: 860px) {
    .header-user > a i {
        background: var(--bg2);
        border-radius: var(--radius);
        color: var(--text2);
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
        text-align: center;
    }
}

@media (max-width: 860px) {
    .header-user > a span {
        display: none;
    }
}

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

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

.header-user_info {
    padding: 10px 20px;
    text-align: center;
}

.header-user_info > img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.header-user_info > span {
    display: block;
    margin: 10px 0;
    font-size: 16px;
    font-weight: bold;
}

.header-user_info > a {
    display: inline-block;
    color: var(--color1);
    font-weight: bold;
    font-size: 13px;
    border-bottom: 1px dotted var(--color1);
    margin: 5px;
}

.header-user_info > a i {
    margin-right: 5px;
}

.header-user_group {
    display: inline-block;
    background: var(--bg3);
    border-radius: var(--radius);
    color: #b9b3d3;
    padding: 4px 10px;
    font-size: 10px;
}

.header-user_group * {
    color: #b9b3d3!important;
}

.header-user_link {
    border-top: 1px solid var(--bg2);
    padding: 10px 20px;
}

.header-user_link a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: #14192a;
    margin: 10px 0;
}

.header-user_link a:last-child {
    color: #F44336;
}

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

/* MODAL LOGIN 0.2 */
.modal-login > a {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 2.0;
    text-align: center;
    cursor: pointer;
}

.modal-login > a i {
    display: block;
    font-size: 25px;
}

@media (max-width: 860px) {
    .modal-login > a i {
        background: var(--bg2);
        border-radius: var(--radius);
        color: var(--text2);
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
        text-align: center;
    }
}

@media (max-width: 860px) {
    .modal-login > a span {
        display: none;
    }
}

.modal-login form {
    display: none;
    position: fixed;
    min-width: 500px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: var(--bg);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    padding: 40px 80px;
    border-radius: var(--radius);
    text-align: center;
    z-index: 9;
}

@media (max-width: 860px) {
    .modal-login form {
        min-width: 100%;
        padding: 30px;
        border-radius: 0;
    }
}

.modal-login form > i {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg);
    border-radius: var(--radius);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
}

.modal-login form > i:hover {
    background: var(--color1);
    color: #fff;
}

.modal-login .e-float > a {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 14px;
    border-bottom: 1px dotted #20a8d8;
}

.modal-login_btn a {
    background: var(--bg3);
    margin-left: 20px;
}

.modal-login_btn a:hover {
    background: var(--bg3);
    opacity: 0.8;
}

.modal-login_soc span {
    display: block;
    color: #767389;
    margin: 20px 0;
}

.modal-login_soc .e-flex {
    align-items: center;
    justify-content: center;
}

.modal-login_soc .e-flex > a, .modal-login_soc .e-flex a > img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

/* TOOLTIP */
[data-tooltip] {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -220%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    width: max-content;
    background: black;
    padding: 8px;
    border-radius: 4px;
    color: #fff;
    font-size: 10px;
    text-align: center;
    line-height: normal;
    transition: all 0.3s;
    z-index: 1;
}

[data-tooltip]:hover::before {
    content: " ";
    position: absolute;
    right: 6px;
    bottom: -6px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

[data-tooltip]:hover::after {
    visibility: visible;
    opacity: 1;
}

/* CUT SLIDER */
.cut-slider {
    position: relative;
    overflow: hidden;
}

.cut-slider > .fal {
    position: absolute;
    backdrop-filter: blur(5px);
    background: #fff;
    box-shadow: 0 2px 15px rgb(61 61 61 / 8%);
    color: #000;
    border-radius: 10px;
    top: 45%;
    right: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
}

@media (max-width: 820px) {
    .cut-slider > .fal {
        display: none;
    }
}

.cut-slider > .fal:hover {
    background: var(--color1);
    color: #fff;
}

.cut-slider .fa-chevron-left {
    left: 20px;
}

.cut-slider_item {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
}

@media (max-width: 820px) {
    .cut-slider_item {
        height: 250px;
    }

    .cut-slider_item:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(360deg, black, transparent);
        border-radius: 5px;
        overflow: hidden;
    }
}

.cut-slider_text {
    position: absolute;
    top: 30%;
    left: 8%;
    width: 40%;
    color: var(--text1);
}

@media (max-width: 820px) {
    .cut-slider_text {
        top: 10%;
        left: 10%;
        width: 80%;
    }

    .cut-slider_text p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        font-size: 14px;
        overflow: hidden;
    }
}

.cut-slider_text > a {
    display: inline-block;
    background: var(--light);
    color: var(--text1);
    padding-left: 25px;
    border-radius: 20px;
}

.cut-slider_text > a i {
    display: inline-block;
    background: var(--light);
    color: var(--text1);
    padding: 15px 25px;
    border-radius: 20px;
    margin-left: 20px;
}

.cut-slider_item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

/* CUT SECT */
.cut-sect {
}

.cut-sect_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.cut-sect_head h1 {
    margin-bottom: 0;
}

.cut-sect_head a {
    background: var(--bg3);
    color: #fff;
    padding: 8px 15px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.cut-sect_head a:hover {
    background: var(--color1);
}

.cut-sect_items, .cut-news_items {
    position: relative;
    padding: 0 30px;
    overflow: hidden;
}

@media (max-width: 820px) {
    .cut-sect_items, .cut-news_items {
        padding: 0;
        overflow: visible;
    }
}

.cut-sect_items > .fal, .cut-news_items > .fal {
    position: absolute;
    backdrop-filter: blur(5px);
    background: #fff;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    color: #000;
    border-radius: 10px;
    top: 45%;
    right: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 4;
}

@media (max-width: 820px) {
    .cut-sect_items > .fal, .cut-news_items > .fal {
        display: none;
    }
}

.cut-sect_items > .fal:hover, .cut-news_items > .fal:hover {
    background: var(--color1);
    color: #fff;
}

.cut-sect_items .fa-chevron-left, .cut-news_items .fa-chevron-left {
    left: 10px;
}

@media (max-width: 425px) {
    .cut-sect_head {grid-row-gap: 15px; flex-direction: column; align-items: flex-start;}
}



/* SPEEDBAR */
.speedbar {
    position: relative;
    color: var(--text2);
    font-size: 14px;
    margin-bottom: 20px;
}

.speedbar:before {
    content: "";
    display: inline-block;
    float: left;
    margin-top: 1px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--color1);
    border-radius: 50px;
    margin-right: 10px;
}

.speedbar > a + a:before, .speedbar > span:before {
    content: "\f054";
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    font-size: 12px;
    margin: 0 8px;
}

/* CUT SHORT */
.cut-short_item {
    position: relative;
}

.cut-short_item img {
    width: 100%;
    height: 200px;
    min-width: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.cut-short_title {
    height: 60px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cut-short_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 20px;
}

.cut-short_vn {
    display: inline-block;
    color: #f44336;
    font-size: 14px;
    font-weight: 700;
}

.cut-short_vn.green {
    color: #00ab00;
}

.cut-short_price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 10px;
    font-size: 25px;
    font-weight: 700;
}

.cut-short_price span:last-child {
    position: relative;
    font-size: 16px;
}

.cut-short_price span:last-child:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 45%;
    width: 100%;
    height: 1px;
    background-color: #f1222e;
    transform: rotate(-9deg);
}

.cut-short_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 15px;
    margin-top: 20px;
}

.cut-short_link a:first-child {
    width: 100%;
    font-size: 14px;
}

.cut-short_link a i {
    display: inline-block;
    border: 1px solid var(--dark);
    border-radius: var(--radius);
    width: 46px;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}

.cut-short_link a i:hover {
    border: 1px solid var(--color1);
}

.cut-short_link a .fa-solid {
    color: #f44336;
}

/* CUT FULL */
.cut-full {
    display: grid;
    grid-gap: 20px 20px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 400px;
}

@media (max-width: 860px) {
    .cut-full {
        grid-template-columns: 1fr;
    }
}

.cut-full_center, .cut-full_right {
    position: relative;
    overflow: hidden;
}

.cut-screens {
    position: relative;
    display: grid;
    grid-gap: 20px 20px;
    grid-auto-rows: max-content;
    grid-template-columns: 80px 1fr;
    align-items: center;
    height: 500px;
    margin-bottom: 40px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .cut-screens {
        height: inherit;
        grid-template-columns: 1fr;
    }
}

.cut-screens img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cut-screens_big, .cut-screens_mini {
    position: relative;
    padding: 25px 0;
    width: 100%;
    height: inherit;
    overflow: hidden;
}

.cut-screens_big .swiper-slide {
    background: #fff;
    height: 400px;
    overflow: hidden;
}

.cut-screens_mini > .fal {
    position: absolute;
    left: 40%;
    top: 0;
    font-size: 20px;
    z-index: 5;
    cursor: pointer;
}

@media (max-width: 860px) {
    .cut-screens_mini > .fal {
        display: none;
    }
}

.cut-screens_mini > .fa-chevron-down {
    top: unset;
    bottom: 0;
}

.cut-screens_mini .swiper-slide-thumb-active {
    border: 1px solid var(--dark);
}

.cut-screens_mini .swiper-slide {
    width: 80px;
    height: 80px;
    padding: 5px;
    border-radius: var(--radius);
}

.cut-tabs_controls {
    border-bottom: 1px solid var(--bg2);
    margin-bottom: 20px;
    font-weight: bold;
}

.cut-tabs_controls span {
    padding-bottom: 5px;
    margin-right: 30px;
    cursor: pointer;
}

.cut-tabs_controls span.active {
    border-bottom: 3px solid var(--color1);
}

.cut-tabs ul {
}

.cut-tabs ul li {
    margin: 10px 0;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--dark);
}

.cut-tabs ul li span {
    float: right;
}

.cut-full_detal {
    display: inline-block;
    background: var(--bg2);
    padding: 30px;
    border-radius: 5px;
}

.cut-full_meta, .cut-full_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cut-full_meta > span {
    color: var(--color1);
    font-size: 12px;
    font-weight: bold;
}

.cut-full_info span:first-child {
    display: inline-block;
    background: #ffde56;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0.8;
    font-size: 14px;
}

.cut-full_vn {
    display: inline-block;
    color: #f44336;
    font-size: 16px;
    font-weight: 700;
}

.cut-full_vn.green {
    color: #00ab00;
}

.cut-full_price {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.cut-full_price span:first-child {
    font-size: 30px;
    font-weight: bold;
}

.cut-full_price span:nth-child(2) {
    background: linear-gradient(45deg, #ec0000, #ff8585);
    padding: 3px 4px;
    border-radius: var(--radius) 0;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cut-full_price span:nth-child(3) {
    position: relative;
    font-size: 18px;
}

.cut-full_price span:nth-child(3):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 45%;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, #ec0000, #ff8585);
    transform: rotate(-9deg);
}

.cut-full_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 15px;
    margin-top: 20px;
}

.cut-full_link a:first-child {
    width: 100%;
    font-size: 14px;
}

.cut-full_link a i {
    display: inline-block;
    border: 1px solid var(--dark);
    border-radius: var(--radius);
    width: 46px;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}

.cut-full_link a i:hover {
    border: 1px solid var(--color1);
}

.cut-full_link a .fa-solid {
    color: #f44336;
}

.cut-full_share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
    margin-top: 30px;
    color: var(--text2);
    border-top: 1px dotted var(--dark);
    padding-top: 20px;
}

/* CUT NEWS SHORT  */
.cut-news_item {
    position: relative;
    display: grid;
    grid-gap: 20px 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
}

.cut-news_item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius);
    overflow: hidden;
}

.cut-news_meta {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    font-size: 12px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.cut-news_meta i {
    margin-right: 8px;
}

.cut-news_title {
    display: block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cut-news_title:hover {
    color: var(--color2);
}

.cut-news_title:before {
    content: "";
    position: absolute;
    inset: 0;
}

@media (max-width: 860px) {
    .cut-news_item {grid-template-columns: repeat(1, 1fr);}
    .cut-news_item img {aspect-ratio: 16 / 7;}
}
@media (max-width: 460px) {
    .cut-news_item img {aspect-ratio: 16 / 8;}
}


/* FULL NEWS */
.milkafull {
}

.milkafull h2 {
    font-weight: bold;
    margin-bottom: 0;
}

.milkafull-meta {
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.milkafull-meta > span + span {
    margin-left: 20px;
}

.milkafull-meta .date {
    font-weight: 600;
    opacity: 0.6;
}

.milkafull-rating {
    margin-left: auto;
}

.milkafull-rating > a {
    display: inline-block;
    background: var(--color1);
    color: #fff;
    padding: 0 10px;
    border-radius: 5px;
    width: auto;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.milkafull-rating > a:first-child {
    background: var(--color2);
}

.milkafull-rating span {
    margin-left: 5px;
}

.milkafull-bg {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.milkafull-tool {
    padding-top: 20px;
    margin: 20px 0;
    border-top: 2px solid #f1f3f4;
    font-weight: 500;
    color: #9a9da2;
}

.milkafull-tool span + span {
    margin-left: 20px;
}

.milkafull-tool span i {
    margin-right: 10px;
}

/* BADGE */
.badge {
    display: inline-block;
    border-radius: var(--radius);
    padding: 5px 8px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

.badge-red {
    background: #ff4954;
}

.badge-yellow {
    background: #ffde56;
}

.badge-green {
    background: #3cd458;
}

.badge-blue {
    background: #50a1ff;
}

/* FOOTER */
footer {
    position: relative;
    background: var(--bg3);
    color: #fff;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
    padding: 30px 0;
    font-size: 14px;
}

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

.footer-soc {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.footer-soc a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 10px;
    background: var(--light);
    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: #ff4954;
}

.footer-tel {
    margin-top: 20px;
    color: #b3b3b3;
}

.footer-tel > a:first-child {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-menu {
}

.footer-menu span {
    display: block;
    color: #b3b3b3;
    font-size: 16px;
    font-weight: bold;
}

.footer-menu a {
    display: block;
    margin-top: 10px;
}

footer .footer-copy {
    font-size: 12px;
    color: #b3b3b3;
    border-top: 1px solid var(--light);
}

.footer-copy span {
    margin-right: auto;
}
.original-price {
    font-size: 16px;
}
.discounted-price {
    font-size: 20px;
}
.discount-badge {
    font-size: 14px;
}
.e-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #4CAF50;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    margin: 5px;
}

@media (max-width: 768px) {
    .cut-slider_text {
        padding: 15px;
        bottom: 20px !important;
        left: 15px !important;
        right: 15px !important;
    }
    .swiper-slide img {
        height: 400px;
    }
}
/* Menü açıkken scroll'u engelle */
.menu-active {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  transition: all 0.3s ease;
  z-index: 1000;
  background: #fff;
}

.mobile-menu.active {
  left: 0;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f8f8f8;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  font-family: sans-serif;
  z-index: 9999;
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.cookie-logo img {
  max-height: 50px;
  margin-right: 20px;
}

.cookie-text {
  flex: 1;
  margin-right: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.cookie-settings-button {
  background-color: #ddd;
  color: #333;
}

.cookie-decline-button {
  background-color: #f44336;
  color: white;
}

.cookie-accept-button {
  background-color: #4caf50;
  color: white;
}

.cookie-policy-link {
  color: #1976d2;
  text-decoration: none;
}
