.inmodul {
    width: 100%;
}

#preloader {
    display: none;
}

.member-section-wrapper, .urun-main-kabin {
    width: 100%;
}

.product-action-quanity {
    display: flex;
}

.product-action-quanity input {
    outline: none;
    padding: .65rem .5rem;
}

.product-action-quanity input[type=text] {
    width: 40px;
    text-align: center;
}

.product-action-quanity input[type=button] {
    background: none;
    border: 1px solid #d4d4d4;
    width: 30px;
    cursor: pointer;
}

.social-net li {
    display: inline-block;
}

.social-net li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dedede;
    text-decoration: none;
    font-size: 20px;
    transition: .3s ease-in-out;

}

.social-net li a:hover {
    transition: .3s ease-in-out;
    background: #dedede;

}

.form-title {
    margin-bottom: 10px;
}

textarea.form-control {
    width: 100%;
    min-height: 100px;
    max-width: 100%;
    min-width: 100%;
}

button {
    outline: none !important;
}


select#MahalleID {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 15px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* ==========================================================
   ÜYE MENÜSÜ (.memberMenu) – YENİ TASARIM (2026)
   ========================================================== */
.memberMenu-bg {
    --mm-bg: #14161c;
    --mm-bg-2: #1d212b;
    --mm-gold: #c8992f;
    --mm-gold-soft: #e6c260;
    --mm-line: rgba(255, 255, 255, .09);
    --mm-text: #e7eaf0;
    --mm-muted: #a4adbb;
    background: linear-gradient(120deg, var(--mm-bg) 0%, var(--mm-bg-2) 55%, var(--mm-bg) 100%);
    border-bottom: 1px solid var(--mm-line);
    position: relative;
    z-index: 900;
}

.memberMenu-n {
    width: 100%;
}

.memberMenu-n ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* ---------- DESKTOP ---------- */
@media only screen and (min-width: 992px) {
    .memberMenu-n > ul.memberMenu {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 2px;
        padding: 6px 0;
    }

    .memberMenu-n ul > li {
        display: block;
        position: relative;
    }

    .memberMenu-n ul > li > a {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 13.5px;
        font-weight: 500;
        color: var(--mm-text);
        letter-spacing: .015em;
        white-space: nowrap;
        transition: .22s ease;
    }

    .memberMenu-n ul > li > a .fa-angle-down {
        display: inline-block;
        font-size: 11px;
        color: var(--mm-muted);
        margin-left: 2px;
        transition: .22s ease;
    }

    .memberMenu-n ul > li > a > i {
        margin-right: 0;
        font-size: 15px;
        color: var(--mm-gold);
        transition: .22s ease;
    }

    .memberMenu-n ul > li:hover > a {
        background: rgba(200, 153, 47, .14);
        color: #fff;
    }

    .memberMenu-n ul > li:hover > a > i,
    .memberMenu-n ul > li:hover > a .fa-angle-down {
        color: var(--mm-gold-soft);
    }

    .memberMenu-n ul > li:hover > a .fa-angle-down {
        transform: rotate(180deg);
    }

    /* aktif sayfa */
    .memberMenu-n ul > li > a.is-current {
        background: rgba(200, 153, 47, .2);
        color: #fff;
        box-shadow: inset 0 -2px 0 var(--mm-gold);
    }

    /* ---- alt menü ---- */
    .memberMenu-n ul > li > ul {
        border-top: none;
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        background: var(--mm-bg-2);
        border: 1px solid var(--mm-line);
        border-radius: 12px;
        box-shadow: 0 20px 44px rgba(0, 0, 0, .5);
        z-index: 9;
        min-width: 250px;
        padding: 6px;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px);
        transition: .22s ease-in-out;
        overflow: hidden;
    }

    /* açılır menüyü kapatan boşluğu köprüle */
    .memberMenu-n ul > li > ul::before {
        content: "";
        position: absolute;
        top: -8px;
        left: 0;
        right: 0;
        height: 8px;
    }

    .memberMenu-n ul > li:hover > ul {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    /* ekranın sağına taşan alt menüler */
    .memberMenu-n ul > li:nth-last-child(-n+3) > ul {
        left: auto;
        right: 0;
    }

    .memberMenu-n ul > li > ul > li {
        display: block;
    }

    .memberMenu-n ul > li > ul > li > a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 8px;
        font-size: 13px;
        color: var(--mm-text);
        white-space: normal;
    }

    .memberMenu-n ul > li > ul > li > a > i {
        width: 18px;
        text-align: center;
        font-size: 14px;
        color: var(--mm-gold);
    }

    .memberMenu-n ul > li > ul > li > a:hover {
        background: rgba(200, 153, 47, .16);
        color: var(--mm-gold-soft);
    }

    .memberMenu-n ul > li > ul > li > a:hover > i {
        color: var(--mm-gold-soft);
    }
}

/* ---------- MOBİL / TABLET ---------- */
@media only screen and (max-width: 991px) {
    .memberMenu-n {
        width: 100%;
        position: relative;
    }

    .memberMenu-n .memberMenu-mobile {
        background: transparent;
        color: #fff;
        letter-spacing: .04em;
        font-size: 14px;
    }

    .memberMenu-n .memberMenu-mobile .click-menu {
        display: flex;
        align-items: center;
        padding: 14px 4px;
        color: #fff;
        font-weight: 600;
        text-decoration: none;
    }

    .memberMenu-n .memberMenu-mobile i {
        padding: 0;
        margin-right: 10px;
        color: var(--mm-gold);
        font-size: 18px;
    }

    .memberMenu-n .memberMenu-mobile .click-menu .fa-angle-down {
        margin-right: 0;
        margin-left: auto;
        font-size: 15px;
        transition: .25s ease-in-out;
    }

    .memberMenu-n:has(> ul.memberMenu.active) .click-menu .fa-angle-down {
        transform: rotate(180deg);
    }

    .memberMenu-n > ul.memberMenu {
        width: 100%;
        background: var(--mm-bg-2);
        border: 1px solid var(--mm-line);
        border-radius: 12px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px);
        transition: .25s ease-in-out;
        position: absolute;
        left: 0;
        right: 0;
        z-index: 99;
    }

    .memberMenu-n > ul.memberMenu.active {
        position: relative;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        margin-bottom: 14px;
    }

    .memberMenu-n ul > li {
        display: block;
        position: relative;
    }

    .memberMenu-n ul > li > a {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        padding: 14px 16px;
        font-size: 14px;
        color: var(--mm-text);
        letter-spacing: .015em;
        transition: .22s ease-in-out;
        border-bottom: 1px solid var(--mm-line);
        position: relative;
    }

    .memberMenu-n ul > li > a > i {
        margin-right: 0;
        width: 20px;
        text-align: center;
        font-size: 15px;
        color: var(--mm-gold);
    }

    .memberMenu-n ul > li > a .fa-angle-down {
        position: absolute;
        right: 16px;
        top: 50%;
        width: auto;
        font-size: 13px;
        color: var(--mm-muted);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        transition: .22s ease-in-out;
    }

    .memberMenu-n ul > li:last-child > a {
        border-bottom: none;
    }

    .memberMenu-n ul > li > a.active {
        background: rgba(200, 153, 47, .16);
        color: #fff;
        box-shadow: inset 3px 0 0 var(--mm-gold);
    }

    .memberMenu-n ul > li > a.active .fa-angle-down {
        transform: translateY(-50%) rotate(180deg);
        color: var(--mm-gold-soft);
    }

    .memberMenu-n ul > li > ul {
        border-top: none;
        position: absolute;
        background: rgba(0, 0, 0, .28);
        z-index: 9;
        width: 100%;
        visibility: hidden;
        opacity: 0;
        transition: .25s ease-in-out;
    }

    .memberMenu-n ul > li > ul.active {
        visibility: visible;
        opacity: 1;
        position: relative;
    }

    .memberMenu-n ul > li > ul > li {
        display: block;
    }

    .memberMenu-n ul > li > ul > li > a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 13px 16px 13px 28px;
        font-size: 13.5px;
        color: var(--mm-muted);
        border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .memberMenu-n ul > li > ul > li > a > i {
        width: 18px;
        text-align: center;
        color: var(--mm-gold);
    }

    .memberMenu-n ul > li > ul > li > a:active,
    .memberMenu-n ul > li > ul > li > a:hover {
        background: rgba(200, 153, 47, .12);
        color: var(--mm-gold-soft);
    }
}

.sticky-header.fixed .stk-none {
    display: none;
}


.basket-content {
    border: 1px solid #e9e9e9;
    padding: 20px;
}

.basket-content .sumary {
    padding-bottom: 10px;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 14px;
}


.list-group-item {
    text-align: center !important;
}

.register-image {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    font-size: 14px;
}

.register-box {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 35px rgba(175, 72, 104, 0.4);
}

.gender-box label {
    width: 100%;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 0;
    color: #767f84;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    padding: 9px;
    margin: 0;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gender-box label input {
    margin-right: 10px;
}

.swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

/*BALLoON*/
:root {
    --balloon-color: rgba(16, 16, 16, 0.95);
    --balloon-font-size: 12px;
    --balloon-move: 4px;
}

button[aria-label][data-balloon-pos] {
    overflow: visible;
}

[aria-label][data-balloon-pos] {
    position: relative;
    cursor: pointer;
}

[aria-label][data-balloon-pos]:after {
    opacity: 0;
    pointer-events: none;
    transition: all .18s ease-out .18s;
    text-indent: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: normal;
    font-style: normal;
    text-shadow: none;
    font-size: var(--balloon-font-size);
    background: var(--balloon-color);
    border-radius: 2px;
    color: #fff;
    content: attr(aria-label);
    padding: .5em 1em;
    position: absolute;
    white-space: nowrap;
    z-index: 10;
}

[aria-label][data-balloon-pos]:before {
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: var(--balloon-color);
    opacity: 0;
    pointer-events: none;
    transition: all .18s ease-out .18s;
    content: "";
    position: absolute;
    z-index: 10;
}

[aria-label][data-balloon-pos]:hover:before, [aria-label][data-balloon-pos]:hover:after, [aria-label][data-balloon-pos][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-visible]:after, [aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:before, [aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:after {
    opacity: 1;
    pointer-events: none;
}

[aria-label][data-balloon-pos].font-awesome:after {
    font-family: FontAwesome, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

[aria-label][data-balloon-pos][data-balloon-break]:after {
    white-space: pre;
}

[aria-label][data-balloon-pos][data-balloon-break][data-balloon-length]:after {
    white-space: pre-line;
    word-break: break-word;
}

[aria-label][data-balloon-pos][data-balloon-blunt]:before, [aria-label][data-balloon-pos][data-balloon-blunt]:after {
    transition: none;
}

[aria-label][data-balloon-pos][data-balloon-pos="up"]:after {
    bottom: 100%;
    left: 50%;
    margin-bottom: 10px;
    transform: translate(-50%, var(--balloon-move));
    transform-origin: top;
}

[aria-label][data-balloon-pos][data-balloon-pos="up"]:before {
    bottom: 100%;
    left: 50%;
    transform: translate(-50%, var(--balloon-move));
    transform-origin: top;
}

[aria-label][data-balloon-pos][data-balloon-pos="up"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="up"][data-balloon-visible]:after {
    transform: translate(-50%, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="up"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="up"][data-balloon-visible]:before {
    transform: translate(-50%, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="up-left"]:after {
    bottom: 100%;
    left: 0;
    margin-bottom: 10px;
    transform: translate(0, var(--balloon-move));
    transform-origin: top;
}

[aria-label][data-balloon-pos][data-balloon-pos="up-left"]:before {
    bottom: 100%;
    left: 5px;
    transform: translate(0, var(--balloon-move));
    transform-origin: top;
}

[aria-label][data-balloon-pos][data-balloon-pos="up-left"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="up-left"][data-balloon-visible]:after {
    transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="up-left"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="up-left"][data-balloon-visible]:before {
    transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="up-right"]:after {
    bottom: 100%;
    right: 0;
    margin-bottom: 10px;
    transform: translate(0, var(--balloon-move));
    transform-origin: top;
}

[aria-label][data-balloon-pos][data-balloon-pos="up-right"]:before {
    bottom: 100%;
    right: 5px;
    transform: translate(0, var(--balloon-move));
    transform-origin: top;
}

[aria-label][data-balloon-pos][data-balloon-pos="up-right"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="up-right"][data-balloon-visible]:after {
    transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="up-right"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="up-right"][data-balloon-visible]:before {
    transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="down"]:after {
    left: 50%;
    margin-top: 10px;
    top: 100%;
    transform: translate(-50%, calc(var(--balloon-move) * -1));
}

[aria-label][data-balloon-pos][data-balloon-pos="down"]:before {
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-bottom-color: var(--balloon-color);
    left: 50%;
    top: 100%;
    transform: translate(-50%, calc(var(--balloon-move) * -1));
}

[aria-label][data-balloon-pos][data-balloon-pos="down"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="down"][data-balloon-visible]:after {
    transform: translate(-50%, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="down"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="down"][data-balloon-visible]:before {
    transform: translate(-50%, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="down-left"]:after {
    left: 0;
    margin-top: 10px;
    top: 100%;
    transform: translate(0, calc(var(--balloon-move) * -1));
}

[aria-label][data-balloon-pos][data-balloon-pos="down-left"]:before {
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-bottom-color: var(--balloon-color);
    left: 5px;
    top: 100%;
    transform: translate(0, calc(var(--balloon-move) * -1));
}

[aria-label][data-balloon-pos][data-balloon-pos="down-left"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="down-left"][data-balloon-visible]:after {
    transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="down-left"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="down-left"][data-balloon-visible]:before {
    transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="down-right"]:after {
    right: 0;
    margin-top: 10px;
    top: 100%;
    transform: translate(0, calc(var(--balloon-move) * -1));
}

[aria-label][data-balloon-pos][data-balloon-pos="down-right"]:before {
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-bottom-color: var(--balloon-color);
    right: 5px;
    top: 100%;
    transform: translate(0, calc(var(--balloon-move) * -1));
}

[aria-label][data-balloon-pos][data-balloon-pos="down-right"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="down-right"][data-balloon-visible]:after {
    transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="down-right"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="down-right"][data-balloon-visible]:before {
    transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="left"]:after {
    margin-right: 10px;
    right: 100%;
    top: 50%;
    transform: translate(var(--balloon-move), -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="left"]:before {
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: var(--balloon-color);
    right: 100%;
    top: 50%;
    transform: translate(var(--balloon-move), -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="left"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="left"][data-balloon-visible]:after {
    transform: translate(0, -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="left"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="left"][data-balloon-visible]:before {
    transform: translate(0, -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="right"]:after {
    left: 100%;
    margin-left: 10px;
    top: 50%;
    transform: translate(calc(var(--balloon-move) * -1), -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="right"]:before {
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-right-color: var(--balloon-color);
    left: 100%;
    top: 50%;
    transform: translate(calc(var(--balloon-move) * -1), -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="right"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="right"][data-balloon-visible]:after {
    transform: translate(0, -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="right"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="right"][data-balloon-visible]:before {
    transform: translate(0, -50%);
}

[aria-label][data-balloon-pos][data-balloon-length="small"]:after {
    white-space: normal;
    width: 80px;
}

[aria-label][data-balloon-pos][data-balloon-length="medium"]:after {
    white-space: normal;
    width: 150px;
}

[aria-label][data-balloon-pos][data-balloon-length="large"]:after {
    white-space: normal;
    width: 260px;
}

[aria-label][data-balloon-pos][data-balloon-length="xlarge"]:after {
    white-space: normal;
    width: 380px;
}

@media screen and (max-width: 768px) {
    [aria-label][data-balloon-pos][data-balloon-length="xlarge"]:after {
        white-space: normal;
        width: 90vw;
    }
}

[aria-label][data-balloon-pos][data-balloon-length="fit"]:after {
    white-space: normal;
    width: 100%;
}

/*BALLoON*/
/*ICON*/

@font-face {
    font-family: 'porto';
    src: url("../fonts/porto.eot");
    src: url("../fonts/porto.eot#iefix") format("embedded-opentype"), url("../fonts/porto.woff2") format("woff2"), url("../fonts/porto.woff") format("woff"), url("../fonts/porto.ttf") format("truetype"), url("../fonts/porto.svg#porto") format("svg");
    font-weight: normal;
    font-style: normal;
}

[class^='icon-']::before, [class*=' icon-']::before {
    display: inline-block;
    width: 1em;
    margin-right: .2em;
    margin-left: .2em;
    font-family: 'porto';
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1em;
    text-align: center;
    text-decoration: inherit;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
}

.icon-mode-list::before {
    content: '\e80f';
}

.icon-compare::before {
    content: '\e810';
}

.icon-wishlist::before {
    content: '\e811';
}

.icon-search::before {
    content: '\e812';
}

.icon-left-dir::before {
    content: '\e813';
}

.icon-right-dir::before {
    content: '\e814';
}

.icon-down-open::before {
    content: '\e815';
}

.icon-left-open::before {
    content: '\e816';
}

.icon-right-open::before {
    content: '\e817';
}

.icon-up-open::before {
    content: '\e818';
}

.icon-angle-left::before {
    content: '\e819';
}

.icon-angle-right::before {
    content: '\e81a';
}

.icon-angle-up::before {
    content: '\e81b';
}

.icon-angle-down::before {
    content: '\e81c';
}

.icon-down::before {
    content: '\e81d';
}

.icon-left::before {
    content: '\e81e';
}

.icon-right::before {
    content: '\e81f';
}

.icon-up::before {
    content: '\e820';
}

.icon-angle-double-left::before {
    content: '\e821';
}

.icon-angle-double-right::before {
    content: '\e822';
}

.icon-angle-double-up::before {
    content: '\e823';
}

.icon-angle-double-down::before {
    content: '\e824';
}

.icon-mail::before {
    content: '\e825';
}

.icon-location::before {
    content: '\e826';
}

.icon-skype::before {
    content: '\e827';
}

.icon-right-open-big::before {
    content: '\e828';
}

.icon-left-open-big::before {
    content: '\e829';
}

.icon-down-open-big::before {
    content: '\e82a';
}

.icon-up-open-big::before {
    content: '\e82b';
}

.icon-retweet::before {
    content: '\e82c';
}

.icon-user::before {
    content: '\e82d';
}

.icon-mail-alt::before {
    content: '\e82e';
}

.icon-fax::before {
    content: '\e82f';
}

.icon-lock::before {
    content: '\e830';
}

.icon-company::before {
    content: '\e831';
}

.icon-city::before {
    content: '\e832';
}

.icon-post::before {
    content: '\e833';
}

.icon-country::before {
    content: '\e834';
}

.icon-calendar::before {
    content: '\e835';
}

.icon-doc::before {
    content: '\e836';
}

.icon-mobile::before {
    content: '\e837';
}

.icon-clock::before {
    content: '\e838';
}

.icon-chat::before {
    content: '\e839';
}

.icon-tag::before {
    content: '\e83a';
}

.icon-folder::before {
    content: '\e83b';
}

.icon-folder-open::before {
    content: '\e83c';
}

.icon-forward::before {
    content: '\e83d';
}

.icon-reply::before {
    content: '\e83e';
}

.icon-cog::before {
    content: '\e83f';
}

.icon-cog-alt::before {
    content: '\e840';
}

.icon-wrench::before {
    content: '\e841';
}

.icon-quote-left::before {
    content: '\e842';
}

.icon-quote-right::before {
    content: '\e843';
}

.icon-gift::before {
    content: '\e844';
}

.icon-dollar::before {
    content: '\e845';
}

.icon-euro::before {
    content: '\e846';
}

.icon-pound::before {
    content: '\e847';
}

.icon-rupee::before {
    content: '\e848';
}

.icon-yen::before {
    content: '\e849';
}

.icon-rouble::before {
    content: '\e84a';
}

.icon-try::before {
    content: '\e84b';
}

.icon-won::before {
    content: '\e84c';
}

.icon-bitcoin::before {
    content: '\e84d';
}

.icon-ok::before {
    content: '\e84e';
}

.icon-chevron-left::before {
    content: '\e84f';
}

.icon-chevron-right::before {
    content: '\e850';
}

.icon-export::before {
    content: '\e851';
}

.icon-star::before {
    content: '\e852';
}

.icon-star-empty::before {
    content: '\e853';
}

.icon-plus-squared::before {
    content: '\e854';
}

.icon-minus-squared::before {
    content: '\e855';
}

.icon-plus-squared-alt::before {
    content: '\e856';
}

.icon-minus-squared-alt::before {
    content: '\e857';
}

.icon-truck::before {
    content: '\e858';
}

.icon-lifebuoy::before {
    content: '\e859';
}

.icon-pencil::before {
    content: '\e85a';
}

.icon-users::before {
    content: '\e85b';
}

.icon-video::before {
    content: '\e85c';
}

.icon-menu::before {
    content: '\e85d';
}

.icon-desktop::before {
    content: '\e85e';
}

.icon-doc-inv::before {
    content: '\e85f';
}

.icon-circle::before {
    content: '\e860';
}

.icon-circle-empty::before {
    content: '\e861';
}

.icon-circle-thin::before {
    content: '\e862';
}

.icon-mini-cart::before {
    content: '\e863';
}

.icon-paper-plane::before {
    content: '\e864';
}

.icon-attention-alt::before {
    content: '\e865';
}

.icon-info::before {
    content: '\e866';
}

.icon-compare-link::before {
    content: '\e867';
}

.icon-cat-default::before {
    content: '\e868';
}

.icon-cat-computer::before {
    content: '\e869';
}

.icon-cat-couch::before {
    content: '\e86a';
}

.icon-cat-garden::before {
    content: '\e86b';
}

.icon-cat-gift::before {
    content: '\e86c';
}

.icon-cat-shirt::before {
    content: '\e86d';
}

.icon-cat-sport::before {
    content: '\e86e';
}

.icon-cat-toys::before {
    content: '\e86f';
}

.icon-tag-line::before {
    content: '\e870';
}

.icon-bag::before {
    content: '\e871';
}

.icon-search-1::before {
    content: '\e872';
}

.icon-plus::before {
    content: '\e873';
}

.icon-minus::before {
    content: '\e874';
}

.icon-search-2::before {
    content: '\e875';
}

.icon-bag-1::before {
    content: '\e876';
}

.icon-online-support::before {
    content: '\e877';
}

.icon-shopping-bag::before {
    content: '\e878';
}

.icon-us-dollar::before {
    content: '\e879';
}

.icon-shipped::before {
    content: '\e87a';
}

.icon-list::before {
    content: '\e87b';
}

.icon-money::before {
    content: '\e87c';
}

.icon-shipping::before {
    content: '\e87d';
}

.icon-support::before {
    content: '\e87e';
}

.icon-bag-2::before {
    content: '\e87f';
}

.icon-grid::before {
    content: '\e880';
}

.icon-bag-3::before {
    content: '\e881';
}

.icon-direction::before {
    content: '\e882';
}

.icon-home::before {
    content: '\e883';
}

.icon-magnifier::before {
    content: '\e884';
}

.icon-magnifier-add::before {
    content: '\e885';
}

.icon-magnifier-remove::before {
    content: '\e886';
}

.icon-phone-1::before {
    content: '\e887';
}

.icon-clock-1::before {
    content: '\e888';
}

.icon-heart::before {
    content: '\e889';
}

.icon-heart-1::before {
    content: '\e88a';
}

.icon-earphones-alt::before {
    content: '\e88b';
}

.icon-credit-card::before {
    content: '\e88c';
}

.icon-action-undo::before {
    content: '\e88d';
}

.icon-envolope::before {
    content: '\e88e';
}

.icon-chart::before {
    content: '\e88f';
}

.icon-down-1::before {
    content: '\e890';
}

.icon-up-1::before {
    content: '\e891';
}

.icon-eye::before {
    content: '\e892';
}

.icon-spin1::before {
    content: '\e893';
}

.icon-twitter::before {
    content: '\f099';
}

.icon-facebook::before {
    content: '\f09a';
}

.icon-gplus::before {
    content: '\f0d5';
}

.icon-linkedin::before {
    content: '\f0e1';
}

.icon-spinner::before {
    content: '\f110';
}

.icon-instagram::before {
    content: '\f16d';
}

.icon-sliders::before {
    content: '\f1de';
}

.icon-question-circle-o::before {
    content: '\f29c';
}

.icon-check-empty::before {
    content: '\f87a';
}

.icon-check::before {
    content: '\f87b';
}

.icon-docs-inv::before {
    content: '\e895';
}

.icon-briefcase::before {
    content: '\e896';
}


/*ICON*/

#map {
    height: 280px;
    margin-bottom: 4rem;
    background-color: #ccc;
}

#map address {
    margin: 0;
    padding: .625rem .875rem;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

#map a {
    display: inline-block;
    margin-top: .8rem;
    font-size: 1.2rem;
    text-transform: uppercase;
}


.contact-info {
    margin-top: 40px;
}

.contact-info > div {
    font-size: 15px;
    margin-bottom: 10px;
}

.contact-info > div::after {
    display: block;
    clear: both;
    content: '';
}

.contact-info i {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    float: left;
    width: 50px;
    height: 50px;
    color: #fff;
    background-color: #282d3b;
    text-align: center;
    font-size: 20px;
    border-radius: 0;
}

.contact-info p {
    margin-bottom: 0;
    margin-left: 70px;
    line-height: 1.4;
}

@media screen and (min-width: 768px) {
    #map {
        height: 380px;
        margin-bottom: 5rem;
    }
}

@media screen and (min-width: 992px) {
    #map {
        height: 460px;
        margin-bottom: 6rem;
    }
}

.form-control {
    font-size: 15px;
}

.modal-backdrop {
    z-index: -1 !important;
}

.modal.show {
    background: rgba(0, 0, 0, .5);
}

.page-header {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px 0;
    display: flex;
    align-items: center;
    color: white;
    font-family: "Teko";
}

.breadcrumb {
    padding: 0;
    margin: 0;
    background-color: transparent;
}

.primary-button {
    background-image: linear-gradient(to right, #aa8024 0%, #f2c02b 50%, #aa8024 100%);
    background-size: 200% auto;
    padding: 7px 15px;
    color: white;
    font-size: 15px;
    font-weight: 300;
    border-radius: 4px;
    transition: .3s ease-in-out;
    line-height: 27px;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: none;
    border-color: transparent;
    cursor: pointer;
}

/*
.clear-btn {
    background-image: none;
    background-color: #e23636;
}

.green-btn {
    background-image: none;
    background-color: #35b53e;
}
*/

.primary-button-b {
    border: 1px solid #aa8024;
    padding: 7px 15px;
    color: black;
    font-size: 15px;
    font-weight: 300;
    border-radius: 4px;
    transition: .3s ease-in-out;
    line-height: 27px;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
}

.primary-button:hover {
    background-position: right center;
    transition: .3s ease-in-out;
    color: #fff;
}

.primary-button-b:hover {
    background-image: linear-gradient(to right, #aa8024 0%, #f2c02b 50%, #aa8024 100%);
    background-size: 200% auto;
    background-position: right center;
    transition: .3s ease-in-out;
    color: #fff;
    border: 1px solid transparent;

}

.product-box .product-image-container {

    position: relative;
    overflow: hidden;
}

.product-box {
    border: 1px solid #e1e1e1;
    padding: 15px;
}

.product-box .price-box {
    background: #f6f6f6;
    padding: 10px;
    font-weight: 300;
}

.product-details .product-title a {
    font-family: "Teko", sans-serif;
    font-weight: 300;
    font-size: 24px;
    margin-top: 15px;
    display: block;
    transition: .3s ease-in-out;

}

.product-details .product-title a:hover {
    color: #b79b58;
    transition: .3s ease-in-out;
}

.product-action ul {
    padding: 0;
    margin: 0;
    position: absolute;
    right: 15px;
    bottom: 15px;
    visibility: hidden;
    opacity: 0;
    transition: .7s ease-in-out;
}

.product-action ul li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-action ul li a {
    display: block;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e1e1e1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    color: #b79b58;
    font-size: 16px;
}

.product-action ul li:nth-of-type(1) {
    position: relative;
    transform: translateY(130px);
    transition: .7s cubic-bezier(0.67, 0.88, 0.51, -0.38);
    z-index: 3;
}

.product-action ul li:nth-of-type(2) {
    position: relative;
    transform: translateY(90px);
    transition: .5s cubic-bezier(0.67, 0.88, 0.51, -0.38);
    z-index: 4;

}

.product-action ul li:nth-of-type(3) {
    position: relative;
    transform: translateY(50px);
    transition: .3s cubic-bezier(0.67, 0.88, 0.51, -0.38);
    z-index: 5;
}

.product-action ul li:last-child a {
    margin-bottom: 0;
}

.product-box:hover .product-action ul li:nth-of-type(1) {
    transform: translateY(0px);
    transition: .7s cubic-bezier(0.67, 0.88, 0.51, -0.38);
}

.product-box:hover .product-action ul li:nth-of-type(2) {
    transform: translateY(0px);
    transition: .5s cubic-bezier(0.67, 0.88, 0.51, -0.38);
}

.product-box:hover .product-action ul li:nth-of-type(3) {
    transform: translateY(0px);
    transition: .3s cubic-bezier(0.67, 0.88, 0.51, -0.38);
}

.product-box:hover .product-action ul {
    visibility: visible;
    opacity: 1;
    transition: .3s ease-in-out;
}

.bg-f2f2f2 {
    background: #f2f2f2;
}

.price-box .new-price {
    font-size: 35px !important;
    color: #000;
    font-family: 'Teko';
    line-height: 25px;
}

.price-box .doviz-icon {
    font-size: 18px;
}

.price-box .old-price span {
    color: #9e9e9e;
    position: relative;
}

.old-price span::after {
    background: rgba(0, 0, 0, .3);
    height: 1px;
    width: 100%;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
}

.price-box .prim_type {
    font-size: 15px;
    margin-left: 30px;
}

.product-list-price .new-price {
    font-size: 25px !important;
    color: #000;
    font-family: 'Teko';
    line-height: 0;
}

.product-list-price .doviz-icon {
    font-size: 16px;
}

.product-list-price .old-price span {
    color: #9e9e9e;
    position: relative;
}

.product-list-price .prim_type {
    font-size: 15px;
    margin-left: 30px;
}


.box-custom {
    padding: 35px 0;
    background: #F6F6F6;
    color: black;
    font-family: "Teko", sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

.fontCustom2 {
    font-family: "Teko", sans-serif;
    font-size: 26px;
    color: #393836;
    font-weight: 400;
    text-align: center;
}

.fontCustom {
    font-family: "Teko", sans-serif;
    font-size: 35px;
    color: #393836;
    font-weight: 400;
}

.customlist {
    margin: 0;
    padding: 0;
}

.customlist li {
    font-family: "Teko", sans-serif;
    display: table;
    list-style-type: none;
    text-align: center;
    padding: 10px 0;
    font-size: 24px;
    font-weight: 300;
    border-bottom: 1px solid #e5e5e5;
    margin: 0 auto;
}

.customlist li:last-child {
    border-bottom: none;
}

.fontTextCustom {
    font-size: 16px;
    color: #777777;
    text-align: justify;
    font-weight: 400;
}

.fontCustom {
    font-size: 38px;
    position: relative;
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 20px;

}
.fontCustom2 {
    font-size: 38px;
    position: relative;
    text-align: center;

}

.fontCustom::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: black;
    bottom: 20px;
}

.siteCustomBox {
    padding: 50px 0;
    background: #948156;
    font-size: 80px;
    line-height: 110px !important;
    font-weight: 300;
    font-family: "Teko", sans-serif;
    color: #ffffff;
}

.customImgHaklar img {
    height: 450px;
    object-fit: cover;
    background-attachment: fixed;
    background-position: center center;
}

.customImgHaklarCont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    width: 50%;
    shape-margin: 20px;
    text-shadow: 0 0 5px rgba(0, 0, 0, .5);
}

.yasamtarzi6 .swiper-slide {
    background: none;
    color: white;
    text-align: center;
    font-family: "Helvetica", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 18px;
}

.styee {
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0;
}

.customButton {
    padding: 20px 28px;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 2px;
    border: 1px solid #b79b58;
    color: #b79b58;
    transition: .3s ease-in-out;
    display: inline-block;
    font-family: "Helvetica", sans-serif;
    font-weight: 700;
}

.customButton:hover {
    color: white;
    transition: .3s ease-in-out;
    background: #b79b58;
}

.yasamtarzi3-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    padding: 20px;
}

.yasamtarzi3-arrows .yasamtarzi3-button-prev,
.yasamtarzi3-arrows .yasamtarzi3-button-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, .4);
    text-align: center;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.yasamtarzi4-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    padding: 20px;
}

.yasamtarzi4-arrows .yasamtarzi4-button-prev,
.yasamtarzi4-arrows .yasamtarzi4-button-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, .4);
    text-align: center;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.yasamtarzi5-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    padding: 20px;
}

.yasamtarzi5-arrows .yasamtarzi5-button-prev,
.yasamtarzi5-arrows .yasamtarzi5-button-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, .4);
    text-align: center;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;

}

.personell-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    padding: 20px;
}

.personell-arrows .personell-button-prev,
.personell-arrows .personell-button-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, .4);
    text-align: center;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;

}

.yasam-tarzi-img1 {
    height: 550px;
    object-fit: cover;
    object-position: bottom;
}

.yasam-tarzi-img2 {
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.yasam-tarzi-img3 {
    width: 100%;
    padding: 100px 0;
}

.yasam-tarzi-img4 {
    width: 100%;
    padding: 100px 0;
}

.yasam-tarzi-img5 {
    width: 100%;
    padding: 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.yasam-tarzi-img6 {
    width: 100%;
    padding: 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.yasamtarzi3-box {
    background: white;
    font-family: "Helvetica", sans-serif;
    font-size: 16px;
    line-height: 27px;
    color: #777777;
    font-weight: 400;
    padding: 20px 35px;
}

.fw300 {
    font-weight: 300;
}

.ffteko {
    font-family: "Teko", sans-serif;
}

.fz28 {
    font-size: 28px;
}

.c393836 {
    color: #393836;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 350px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    padding: 20px;

    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-back {
    background-color: #e0e0e0;
    color: #777777;
    transform: rotateY(180deg);
    font-size: 16px;
    font-weight: 400;
}

.activ6-img {
    width: 100%;
    height: 550px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.color-white {
    color: #ffffff;
}

.text-shadow {
    text-shadow: 0 0 15px rgba(0, 0, 0, 1);
}

.fz30 {
    font-size: 30px;
}

.bgB69B5D {
    background: #B69B5D;
}

.porsone-img {
    width: 100%;
    padding: 150px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.fz55 {
    font-size: 55px;
}

.personel_slide .swiper-slide {
    padding: 100px 30px;
}

.personel_slide-box {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
}

.fontCustom3 {
    font-family: "Teko", sans-serif;
    font-size: 22px;
    line-height: 20px;
}
.fz-22{
    font-size: 30px;
    letter-spacing: .3px;
}

.video___content{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.swiper-slide{
    background: transparent;
}

@media only screen and (min-width: 767px){

    .video__logo{
        position: absolute;
        top: 100px;
        right: 100px;
    }
    .video__logo img{
        width: 250px;
    }
}

@media only screen and (max-width: 767px){
    .video__logo{
        position: absolute;
        top: 15px;
        right: 15px;
    }
    .video__logo img{
        width: 100px;
    }
    .dc_video img{
        width: 250px !important;
    }
    video {
        width: 100% !important;
        height: auto !important;
    }
    .siteCustomBox{
        line-height: 40px !important;
    }

    .asddd video{
        height: 400px !important;
    }
}

.bg-black{
    background: black;
}


.headerAreaBottomBox {
    position: relative;
    z-index: 999;
    width: 45px;
    display: flex;
    justify-content: center;
    align-content: center
}

.headerAreaBottomBox a {
    font-size: 11px;
    line-height: 11px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerAreaBottomBox a i {
    font-size: 20px;
    line-height: 15px;
}

.headerAreaBottomBox a span i {
    font-size: 12px;
    line-height: 12px;
}

.headerAreaBottomLanguageBox {
    position: absolute;
    top: 45px;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px -5px 15px 3px;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    z-index: 9999;
}
.headerAreaBottomCountryBox {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px -5px 15px 3px;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    z-index: 9999;
}

.headerAreaBottomLanguageBox::after {
    content: "";
    position: absolute;
    top: -6px;
    right: 25px;
    transform: rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 3px;
}
.headerAreaBottomCountryBox::after {
    content: "";
    position: absolute;
    top: -6px;
    right: 25px;
    transform: rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 3px;
}

.headerAreaBottomLanguageBox ul {
    padding: 0;
    margin: 0;
}

.headerAreaBottomLanguageBox ul li {
    list-style: none;
    position: relative;
}

.headerAreaBottomLanguageBox ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 10px;
    border-bottom: 1px solid #e1e1e1;
    position: relative;
    z-index: 9;
    transition: 0.3s ease-in-out;
}
.headerAreaBottomCountryBox ul {
    padding: 0;
    margin: 0;
}

.headerAreaBottomCountryBox ul li {
    list-style: none;
    position: relative;
}

.headerAreaBottomCountryBox ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 10px;
    border-bottom: 1px solid #e1e1e1;
    position: relative;
    z-index: 9;
    transition: 0.3s ease-in-out;
}

.headerAreaBottomLanguageBox ul li a:hover {
    background: #f0f0f0;
    transition: 0.3s ease-in-out;
}

.headerAreaBottomLanguageBox ul li:last-child a {
    border-bottom: none;
}

.headerAreaBottomLanguageBox ul li a img {
    width: 35px;
    margin-right: 10px;
}
.headerAreaBottomCountryBox ul li a:hover {
    background: #f0f0f0;
    transition: 0.3s ease-in-out;
}

.headerAreaBottomCountryBox ul li:last-child a {
    border-bottom: none;
}

.headerAreaBottomCountryBox ul li a img {
    width: 35px;
    margin-right: 10px;
}

.openLanguageBox {
    visibility: visible;
    opacity: 1;
    transition: 0.3s ease-in-out;
}
.openCountryBox {
    visibility: visible;
    opacity: 1;
    transition: 0.3s ease-in-out;
}

.fz-20{
    font-size: 20px;
}


.customFooter{
    border-top: 1px solid #e1e1e1;
    background: white;
    font-size: 16px;
    text-align: center;
}

/* ==========================================================
   CUSTOM HEADER – YENİ TASARIM (2026)
   ========================================================== */
.customHeader {
    --ch-bg: #14161c;
    --ch-bg-2: #1d212b;
    --ch-gold: #c8992f;
    --ch-gold-soft: #e6c260;
    --ch-line: rgba(255, 255, 255, .09);
    --ch-text: #eef1f6;
    --ch-muted: #a4adbb;
    position: sticky;
    top: 0;
    z-index: 1030;
    background: linear-gradient(120deg, var(--ch-bg) 0%, var(--ch-bg-2) 55%, var(--ch-bg) 100%);
    border-bottom: 1px solid var(--ch-line);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .18);
}

.customHeader::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ch-gold), transparent);
    opacity: .75;
}

.customHeader-inner {
    gap: 1rem;
    min-height: 54px;
}

/* ---------- Logo ---------- */
.customHeader-logo {
    flex: 0 0 auto;
    max-width: 210px;
}

.customHeader-logo img {
    max-width: 100%;
    max-height: 46px;
    width: auto;
    height: auto;
    display: block;
    transition: .25s ease;
}

.customHeader-logo:hover img {
    transform: scale(1.03);
}

/* ---------- Sağ aksiyon alanı ---------- */
.customHeader-actions {
    gap: .5rem;
    flex: 0 1 auto;
}

.customHeader-sep {
    width: 1px;
    height: 24px;
    background: var(--ch-line);
    margin: 0 .35rem;
    display: inline-block;
}

/* ---------- Dil / Ülke seçici ---------- */
.customHeader .headerAreaBottomBox.chBox {
    width: auto;
    display: flex;
}

.customHeader .chBox-trigger {
    display: flex;
    align-items: center;
    gap: .4rem;
    height: 36px;
    padding: 0 .7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--ch-line);
    color: var(--ch-text);
    font-size: 12.5px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: .2s ease;
}

.customHeader .chBox-trigger:hover {
    background: rgba(200, 153, 47, .16);
    border-color: rgba(200, 153, 47, .5);
    color: #fff;
}

.customHeader .chBox-trigger img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 3px;
    display: block;
}

.customHeader .chBox-trigger i {
    font-size: 12px;
    line-height: 1;
    color: var(--ch-gold-soft);
}

.customHeader .chBox-trigger .chBox-ico {
    font-size: 15px;
}

.customHeader .chBox-label {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* açılır kutular */
.customHeader .chBox-drop {
    top: 46px;
    min-width: 210px;
    background: var(--ch-bg-2);
    border: 1px solid var(--ch-line);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
    overflow: hidden;
    transform: translateY(-6px);
}

.customHeader .chBox-drop.openLanguageBox,
.customHeader .chBox-drop.openCountryBox {
    transform: translateY(0);
}

.customHeader .chBox-drop::after {
    background: var(--ch-bg-2);
    border-top: 1px solid var(--ch-line);
    border-left: 1px solid var(--ch-line);
    border-radius: 2px;
}

.customHeader .chBox-drop ul li a {
    color: var(--ch-text);
    border-bottom: 1px solid var(--ch-line);
    padding: 10px 14px;
    font-size: 13px;
    text-decoration: none;
}

.customHeader .chBox-drop ul li a:hover {
    background: rgba(200, 153, 47, .16);
    color: var(--ch-gold-soft);
}

.customHeader .chBox-drop ul li a img {
    width: 26px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    margin-right: 10px;
}

/* ---------- İkon butonlar ---------- */
.customHeader .chIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--ch-line);
    color: var(--ch-text);
    font-size: 15px;
    text-decoration: none;
    transition: .2s ease;
}

.customHeader .chIcon:hover {
    background: var(--ch-gold);
    border-color: var(--ch-gold);
    color: #16120a;
    transform: translateY(-2px);
}

.customHeader .chIcon-out:hover {
    background: #c0392b;
    border-color: #c0392b;
    color: #fff;
}

/* ---------- Mobil ---------- */
@media (max-width: 575px) {
    .customHeader {
        padding-top: .6rem !important;
        padding-bottom: .6rem !important;
    }

    .customHeader-inner {
        gap: .5rem;
        min-height: 44px;
    }

    .customHeader-logo {
        max-width: 130px;
    }

    .customHeader-logo img {
        max-height: 34px;
    }

    .customHeader-actions {
        gap: .35rem;
    }

    .customHeader-sep {
        margin: 0 .15rem;
    }

    .customHeader .chBox-trigger {
        height: 32px;
        padding: 0 .5rem;
    }

    .customHeader .chIcon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .customHeader .chBox-drop {
        top: 42px;
        min-width: 180px;
    }
}
