﻿body {
    font-family: 'Inter', sans-serif;
}

.bg-primary {
    background-color: #1f3c88 !important;
}

.slider-item {
    height: 420px;
    background: #0b132b;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section {
    padding: 80px 0;
}

.footer {
    background: #0b132b;
    color: #fff;
    padding: 20px 0;
}

.banner {
    height: 300px;
}



/*----------------------*/
/* ===== GENEL ===== */
.navbar {
    background-color: #0b132b;
    padding: 10px 0;
    position: fixed;
    z-index: 1000;
    top: 80px;
    width: 100%;
    /*height: 80px;*/
    transition: top 0.35s ease; /* ANİMASYON */
    color: white;
}

    .navbar.stick {
        top: 0;
    }

.logo {
    color: black;
    font-weight: 700;
    text-decoration: none;
}

.logo-top img {
    max-height: 50px;
}




/* ===== MENU ===== */
.menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
}

    .menu a {
        color: white;
        text-decoration: none;
    }

/* ===== SUBMENU DESKTOP ===== */
.submenu {
    position: absolute;
    background-color: floralwhite;
    display: none;
    list-style: none;
    padding: 10px;
    top: 49px;
}

    .submenu li {
        padding: 8px 20px;
    }

    .submenu a {
        color: gray
    }

.has-submenu:hover .submenu {
    display: block;
}

/* ===== TOGGLE ===== */
.menu-toggle {
    display: none;
    background: none;
    border: 0;
}

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: darkblue;
        margin: 5px 0;
    }

/* ===== OVERLAY ===== */
#menuOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

    .menu-toggle {
        display: block;
    }

    .menu {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        background-color: #0b132b;
        flex-direction: column;
        padding: 20px;
        transition: .3s ease;
        color: white;
    }

        .menu.active {
            left: 0;
        }

    #menuOverlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Submenu mobile */
    .submenu {
        position: static;
        display: none;
        padding-left: 15px;
    }

    .has-submenu.open .submenu {
        display: block;
    }

    /* Desktop hover iptal */
    .has-submenu:hover .submenu {
        display: none;
    }
}

ul {
    list-style: none;
    padding: 0px;
}

/*====================== FOOTER ========================*/

.footer .logo {
    /*border: 1px solid silver;*/
    width: 190px;
    height: 190px;
    align-items: center;
    align-content: center;
    text-align: center;
    align-self: center;
}

    .footer .logo img {
        max-width: 100%;
    }

.footer .slogan {
    margin-top: 20px;
    text-align: start;
}

.footer .menu-title {
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid silver;
    padding:
}

.footer .menu-area {
    text-align: start;
    padding: 20px;
}

.footer .menu-ul li {
    padding: 5px 0;
}

.bcolor-silver {
    background-color: #fbfbfb;
}

.footer .social-icon {
    font-size: 40px;
    padding: 10px;
}

/*--------------- SHOWCASE -------------------------*/

.b-showcase .b-card {
    /*border: 1px solid silver;*/
    border-radius: 10px;
    margin-bottom: 30px;
    transition: box-shadow .3s ease;
}

    .b-showcase .b-card:hover {
        /*border: 1px solid gray;*/
        box-shadow: 0 8px 20px rgba(0,0,0,.15);
    }

    .b-showcase .b-card .img-area {
        /*height: 300px;*/
        width: 100%;
        /*padding: 10px;*/
        overflow: hidden;
        border-radius: 10px;
    }

        .b-showcase .b-card .img-area img {
            height: auto;
            width: 100%;
            border-radius: 15px;
            display: block;
        }

.b-showcase .left-side {
    border: 1px solid #2e51ad;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    /*background-color: #2e51ad;*/
    color: #2e51ad;
}

    .b-showcase .left-side .category-list li {
        padding: 8px;
    }

        .b-showcase .left-side .category-list li a {
            color: #2e51ad;
            font-weight: 500;
            text-decoration: none;
        }

            .b-showcase .left-side .category-list li a:hover {
                text-decoration: underline;
            }

    .b-showcase .left-side h2 {
        font-size: 20px;
        font-weight: 600;
        /*border-bottom:1px solid silver;*/
    }

.b-showcase .info {
    padding: 20px 10px;
    /*background-color: antiquewhite*/
}

.b-showcase .title {
    font-weight: bold;
}

.b-showcase .price {
    font-size: 28px;
    font-weight: bold;
}

    .b-showcase .price span {
        font-size: 12px;
    }

    .b-showcase .price span {
        font-size: 12px;
    }

.b-showcase .foot {
    padding: 10px 20px;
    border-top: 1px solid silver;
    justify-items: end;
}

    .b-showcase .foot a {
        text-decoration: none;
        color: green;
    }

.b-showcase .info a {
    text-decoration: none;
}

/*------------------------------------------------*/


/*------------------------------------------------*/


.b-bloglist .b-card {
    /*border: 1px solid silver;*/
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: #f7f7f7;
}

    .b-bloglist .b-card:hover {
        /*border: 1px solid gray;*/
        background-color: #eff2ff;
    }

.b-bloglist .left-side {
    /*border: 1px solid #2e51ad;*/
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    background-color: #e9e9e9;
    color: #2e51ad;
}

    .b-bloglist .left-side .category-list li {
        padding: 8px;
    }

        .b-bloglist .left-side .category-list li a {
            color: #2e51ad;
            font-weight: 500;
            text-decoration: none;
        }

            .b-bloglist .left-side .category-list li a:hover {
                text-decoration: underline;
            }

    .b-bloglist .left-side h2 {
        font-size: 20px;
        font-weight: 600;
        /*border-bottom:1px solid silver;*/
    }

.b-bloglist .b-card .img-area {
    /*max-height: 300px;*/
    width: 100%;
    /*padding: 10px;*/
    overflow: hidden;
}

    .b-bloglist .b-card .img-area img {
        height: auto;
        width: 100%;
        border-radius: 15px 15px 0 0;
        display: block;
    }

.b-bloglist .info {
    padding: 20px 10px;
    /*background-color: antiquewhite*/
    text-align: start
}

    .b-bloglist .info a {
        text-decoration: none;
        color: darkblue;
    }

.b-bloglist .title {
    font-weight: 600;
    font-size: 24px;
}

.b-bloglist .price {
    font-size: 28px;
    font-weight: bold;
}

    .b-bloglist .price span {
        font-size: 12px;
    }

    .b-bloglist .price span {
        font-size: 12px;
    }

.b-bloglist .foot {
    padding: 10px 20px;
    /*border-top: 1px solid silver;*/
    justify-items: end;
}

    .b-bloglist .foot a {
        text-decoration: none;
        color: darkblue;
    }

    .b-bloglist .foot i {
        /*font-size:18px;*/
    }

    .b-bloglist .foot a:hover {
        /*text-decoration: underline;*/
        color: blue;
    }

/*----------------------------------------------*/

.b-blogcase .b-card {
    border: 1px solid silver;
    border-radius: 10px;
    margin-bottom: 20px;
}

    .b-blogcase .b-card:hover {
        border: 1px solid gray;
    }

    .b-blogcase .b-card .img-area {
        /*height: 300px;*/
        width: 100%;
        /*padding: 10px;*/
        overflow: hidden;
    }

        .b-blogcase .b-card .img-area img {
            height: auto;
            width: 100%;
            border-radius: 15px;
            display: block;
        }

.b-blogcase .info {
    padding: 20px;
    /*background-color: antiquewhite*/
    text-align: start
}

.b-blogcase .title {
    font-weight: bold;
}

.b-blogcase .price {
    font-size: 28px;
    font-weight: bold;
}

    .b-blogcase .price span {
        font-size: 12px;
    }

    .b-blogcase .price span {
        font-size: 12px;
    }

.b-blogcase .foot {
    padding: 10px 0;
    border-top: 1px solid silver;
}


/*------------------------------------------------*/
/*Product Page CSS*/
/*------------------------------------------------*/

.b-product .b-card {
    border: 1px solid silver;
    border-radius: 10px;
    margin-bottom: 20px;
}

    .b-product .b-card:hover {
        border: 1px solid gray;
    }

    .b-product .b-card .img-area {
        /*height: 300px;*/
        /*width: 100%;*/
        /*padding: 10px;*/
        overflow: hidden;
    }

        .b-product .b-card .img-area img {
            height: auto;
            width: 100%;
            /*border-radius: 15px;*/
            display: block;
            padding: 20px;
        }

.b-product .date-setting-area {
    padding:10px 35px;

}
.b-product .date-setting-area select {
    padding: 10px 35px;
}


.b-product .price-line {
    margin: 10px 20px;
    border:1px solid green;
    border-radius:15px;
    margin-top:20px;

}

.b-product .btn-day .subtitle {
    color: whitesmoke;
}

.b-product .btn-day.day-1 {
    background-color: green;
}
.b-product .btn-day.day-2 {
    background-color: limegreen;
}
.b-product .btn-day.day-3 {
    background-color: white;
    color:black;
}
.b-product .btn-day.day-3 .subtitle {
    background-color: white;
    color: black;
}

.b-product .btn-day {
    padding: 15px 25px;
    border: 1px solid green;
    border-radius: 5px;
    align-items: center;
    align-content: center;
    justify-items: center;
    background-color: green;
    color: white;
    cursor:pointer;
}

.b-product .info {
    padding: 20px;
    /*background-color: antiquewhite*/
    text-align: start
}

.b-product .title {
    font-weight: bold;
}

.b-product .subtitle {
    color: gray;
}

.b-product .price {
    font-size: 38px;
    font-weight: bold;
    align-content:center;
    /*margin-top: 20px;*/
}

.b-product .price-line {
    padding: 10px 20px;
}

.b-product .price span {
    font-size: 12px;
}

.b-product .price span {
    font-size: 12px;
}

.b-product .foot {
    padding: 10px 20px;
}

.b-product .green-border {
    padding: 10px 20px;
    border-top: 1px solid green;
    margin: 20px;
    /*border-radius: 10px;*/
}

.b-product .foot .ico-1 {
    font-size: 12px;
    color: green;
}

    .b-product .foot .ico-1 .i {
        font-size: 20px;
    }

.b-product .foot .ico-2 {
    font-size: 12px;
    color: green;
}

    .b-product .foot .ico-2 .i {
        font-size: 20px;
    }

.b-product .foot .ico-3 {
    font-size: 12px;
    color: green;
}

    .b-product .foot .ico-3 .i {
        font-size: 20px;
    }

.b-product .btn-order {
    padding: 10px 30px;
    border: 1px solid silver;
    border-radius: 5px;
    background-color:green;
    color:white;
}

.b-product .btn-order {
    padding: 10px 30px;
    border: 1px solid silver;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
}

    .b-product .btn-order:hover {
        border: 1px solid gray;
    }

.b-product .btn-fav {
    padding: 10px 20px;
    border: 1px solid silver;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    background-color:deeppink;
    color:white;
}

    .b-product .btn-fav:hover {
        border: 1px solid gray;
    }



.tab-content {
    border: 1px solid #e3e3e3;
    padding: 20px;
}


.b-breadcrumb {
    margin-top: 70px;
    padding: 40px;
    background-color: #1f3c88;
}

    .b-breadcrumb .title {
        color: white;
        font-size: 32px;
        font-weight: bolder;
    }

    .b-breadcrumb nav {
        display: flex;
        color: whitesmoke;
    }

    .b-breadcrumb ul li {
        margin-right: 8px;
    }

    .b-breadcrumb nav a {
        text-decoration: none;
        color: whitesmoke;
    }

        .b-breadcrumb nav a:hover {
            /*text-decoration: underline;*/
            color: yellow;
        }

    .b-breadcrumb a:not(:last-child)::after {
        content: "›"; /* >, ›, / gibi karakterler */
        margin: 0 8px;
        color: #999;
    }


.b-contact .form {
    padding: 30px;
    border: 1px solid silver;
    border-radius: 10px;
}

    .b-contact .form .title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .b-contact .form .field-area {
        margin-bottom: 10px;
    }

.b-contact .info {
    padding: 30px;
    /*border: 1px solid silver;*/
    border-radius: 10px;
}

    .b-contact .info .title {
        font-size: 20px;
    }

    .b-contact .info .field-area {
        margin-bottom: 20px
    }


.b-border-1 {
    border: 1px solid #f3f3f3;
    padding: 20px;
    border-radius: 15px;
}

/*====================== FIXED RIGHT BAR =========================*/

.fixed-contact {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    width: 48px;
    height: 48px;
    background: #1f2a8a;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,.2);
    padding: 30px;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .contact-item:hover {
        transform: translateX(6px);
        box-shadow: 0 10px 25px rgba(0,0,0,.3);
    }

    /* Özel renkler */
    .contact-item.whatsapp {
        background: white;
        border: 1px solid silver;
        color: green;
        font-size: 28px;
    }

    .contact-item.phone {
        background: white;
        border: 1px solid silver;
        color: blue;
        font-size: 28px;
    }

    .contact-item.truck {
        background: white;
        border: 1px solid silver;
        color: darkblue;
        font-size: 28px;
    }


.subscribe-area {
}

    .subscribe-area button {
        padding: 4px 20px;
        border-radius: 8px;
        font-weight: 600;
    }

.input-finder {
    position: relative;
    width: 280px;
}

    .input-finder input {
        width: 100%;
        padding: 5px 42px 5px 10px; /* sağda buton için boşluk */
        box-sizing: border-box;
        border-radius: 5px;
        border: 1px solid silver;
    }

.btn-finder {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #999;
    font-size: 16px;
}

    .btn-finder:hover {
        color: #000;
    }

/*.topbar-whatsapp{
    max-width:40px;
}*/
.topbar-whatsapp img {
    max-width: 40px;
}

.topbar-whatsapp .title {
    font-size: 11px;
    /*background-color:green;*/
    color: white;
    padding: 0 20px;
}


.form-area {
    border: 1px solid silver;
    padding: 20px;
    background-color: #e8e8f1;
    border-radius: 10px;
}

.form-area .title{
    font-weight:600;
    margin-bottom:15px;
}

.confirm-section{
    /*border:1px solid silver;*/
    margin-bottom:10px;
    /*padding:10px;*/
    border-radius:5px;
}

.confirm-section .confirm-line {
    display: flex;
    padding: 0 10px;
}
    .confirm-section .confirm-line div:first-child {
        width:110px;
        color:orangered
    }

    .confirm-section .title {
        font-weight: 600;
        background-color: #f9f9f9;
        margin-bottom: 8px;
        padding: 4px 8px;
        border-bottom:1px solid silver;
    }