@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200;400;500;600;700&display=swap');
@import url('app-variables.css');
@import url('app-media.css?v1');


/* BASE */
::selection {
    background-color: #181a1b;
    color: #fff;
}


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #939393;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #939393;
    :: -ms-input-placeholder
}

{ /* Microsoft Edge */
    color: #939393;
}

*,
*::before,
*::after {
    border: none;
    outline: none;
    list-style: none;
    box-sizing: border-box;
    border-collapse: inherit;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    scroll-behavior: smooth;
    /* overflow-x: hidden; */
    height: 100%;
}

    html.js-hidden-layout {
        overflow-y: hidden;
    }

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.6667;
    background-color: #fff;
    color: #222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        color: inherit;
        text-decoration: none;
    }

h1, h2, h3,
h4, h5, h6 {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    line-height: inherit;
}

p {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}

button, input {
    box-shadow: none;
    outline: none !important;
    margin: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

[type="button"], [role="button"] {
    -webkit-appearance: none;
    border-radius: 0;
}

.btn {
    padding: 8px 36px;
    border-radius: 8px;
    transition: .15s background-color ease, .15s color ease, .15s transform ease, .15s border-color ease;
    will-change: background-color, color, transform, border-color;
}

.btn-xs {
    padding: 6px 12px
}

.btn-sm {
    padding: 6px 16px !important
}

.btn-main {
    font-weight: 600;
}

.btn-white {
    background-color: var(--light-100)
}

    .btn-white:hover {
        background-color: var(--light-200)
    }

.btn-blue {
    background-color: var(--primary);
    color: #fff;
}

    .btn-blue:hover {
        background-color: var(--primary-darker);
        color: #fff;
    }

    .btn-blue.btn-bordered {
        background: transparent;
        border: 1px solid var(--primary);
        color: var(--primary);
    }

        .btn-blue.btn-bordered:hover {
            background-color: var(--primary);
            color: #fff;
        }

ul, ol, li {
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
}

p {
    margin: 0
}

textarea {
    resize: none;
}

img[data-image-type="icon"] {
    width: 100%;
    height: auto;
    cursor: pointer
}

img[data-layout-type="cover-w"] {
    width: 100%;
    height: auto
}

img[data-layout-type="cover-h"] {
    width: auto;
    height: 100%
}

img[data-layout-type="cover-f"] {
    width: 100%;
    height: 100%;
    object-fit: cover
}

img[data-layout-type="contain-w"] {
    width: 100%;
    object-fit: contain
}

img[data-layout-type="contain-h"] {
    height: 100%;
    object-fit: contain
}

img[data-layout-type="contain-f"] {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.p10 {
    padding: 10px;
}

.glightbox-open {
    height: 100% !important;
}

.hide-scroll {
    overflow-y: hidden; /* Hide vertical scrollbar */
    overflow-x: hidden; /* Hide horizontal scrollbar */
}

body.hidescroll {
    overflow: hidden;
}

.invalid-feedback-custom {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 1em;
    color: var(--bs-form-invalid-color);
}

.formHata {
    background: #e98484;
    padding: 10px 20px;
    color: #fff;
}

h2#swal2-title {
    font-size: 1.3em !important;
}

.swal2-icon {
    font-size: 0.8em !important;
}

.container{
    max-width:1440px !important;
}

.pt-25 {
    padding-top: 25px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-100 {
    padding-bottom: 100px;
}
.mt-25 {
    margin-top: 25px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-100 {
    margin-bottom: 100px;
}
/* END BASE*/

/* MASTER */
header  {
    position:fixed;
    width:100%;
}

header .top {
    height: 100px;
}

    header .top .container .logo {
        height: 100%;
        display: flex;
        align-items: center;
    }

        header .top .container .logo img {
            height: 80%;
            display: block;
        }

    header .top .container .right-container {
        display: flex;
        gap: 40px;
    }

        header .top .container .right-container .user-account-container {
            display: flex;
            align-items: center;
        }


            header .top .container .right-container .user-account-container .user-box {
                color: #fff;
                font-size: 13px;
                padding: 10px 55px 10px 65px;
                border: 1px solid #ffffff52;
                position: relative;
                font-family: "Arial", sans-serif;
                border-radius: 5px;
                cursor: pointer;
            }

                header .top .container .right-container .user-account-container .user-box::before {
                    content: "\f007"; /* Font Awesome user */
                    font-family: "Font Awesome 7 Free";
                    font-weight: 900;
                    position: absolute;
                    left: 18px;
                    top: 50%;
                    transform: translateY(-50%);
                    font-size: 26px;
                }

                header .top .container .right-container .user-account-container .user-box::after {
                    content: "\f078"; /* Font Awesome chevron-down */
                    font-family: "Font Awesome 7 Free";
                    font-weight: 700;
                    position: absolute;
                    right: 15px;
                    top: 50%;
                    transform: translateY(-50%);
                    font-size: 16px;
                }

                header .top .container .right-container .user-account-container .user-box .title {
                    font-weight: 700;
                    font-size: 14px;
                }


        header .top .container .right-container .basket-container {
            position: relative;
            display: flex;
            align-items: center;
        }

            header .top .container .right-container .basket-container .basket-box {
                background: #2D637B;
                color: #fff;
                padding: 9px 11px;
                border-radius: 6px;
                font-size: 17px;
            }

            header .top .container .right-container .basket-container .count {
                position: absolute;
                top: 16px;
                right: -11px;
                background: #fff;
                color: #222;
                font-size: 11px;
                min-width: 22px;
                height: 22px;
                line-height: 22px;
                text-align: center;
                border-radius: 50%;
                font-weight: bold;
            }

    header .nav-bar {
        width: 100%;
        border-bottom: 1px solid var(--light-grey);
        /* background: #72e4e9; */
        /* padding: 15px 0; */
        height: 55px;
        display: flex;
        align-items: center;
    }

    header .nav-bar ul{
        display:flex;
        gap:30px;
    }
/* END MASTER */

.page-home{
    margin-top: 155px;
    display: inline-block;
    width: 100%;
}

.page-home section.banner{padding:50px 0;}
.page-home section.banner .container{
    display:flex;
    gap: 50px;
}
.page-home section.banner .container .left {
    width: calc((100% - 50px) / 2);
    aspect-ratio: 1.6;
}

    .page-home section.banner .container .left .swiper .swiper-wrapper .swiper-slide {
        border-radius: 10px;
        overflow: hidden;
    }

        .page-home section.banner .container .left .swiper .swiper-wrapper .swiper-slide a {
            display: block; 
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
            width: 100%;
        }

            .page-home section.banner .container .left .swiper .swiper-wrapper .swiper-slide a img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: top left;
                border-radius: 10px; 
                -webkit-border-radius: 11px;
                -moz-border-radius: 10px;
            }

    .page-home section.banner .container .right {
        width: calc((100% - 50px) /2);
    }

        .page-home section.banner .container .right .wrapper {
            display: flex;
            flex-direction: column;
            gap: 20px;
            height: 100%;
        }

            .page-home section.banner .container .right .wrapper .item {
                height: calc((100% - 40px) /3);
                background: #f7f7f7;
                border-radius: 10px;
                display: flex;
                width: 100%;
                flex-direction: column;
                border: 1px solid var(--light-grey);
                justify-content: center;
                padding: 30px;
            }