﻿/*:root {
    --hue: 200;*/ /* Renk tonu parametresi */
/*--ana-renk: hsl(119.6deg 93.99% 29.63%);
    --koyu-renk: hsl(200 100% 22% / 1);*/ /* Aynı tonun koyusu */
/*--footer-bg: #034e17;
    --color-white: white;
    --color-black: black;
    --color-gray: gray;
    --color-silver: silver;
    --color-topbar-bg: #0b500e;
    --color-footer-bg: #1e6a21;
    --color-breadcrumb-bg: transparent;
    --color-breadcrumb-title: #0b500e;
    --color-breadcrumb-subtitle: white;
    --color-btn-primary: green;
}*/

#homeSlider {
    width: 100%;
    /*top: 110px*/
}

.slider-item {
    height: 700px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding-left: 120px;
    color: white;
}


/*header {
    top: 54px;
}*/

.top-info {
    padding: 15px 0;
    background-color: dimgray;
    color: white;
}

    .top-info .info {
        display: flex;
        gap: 20px
    }

    .top-info .container {
        display: flex;
        justify-content: space-between;
    }


.btn.btn-sm {
    padding: 16px 46px;
    border-radius: 0;
}

.btn-primary {
    border: 1px solid var(--color-btn-primary);
    background-color: var(--color-btn-primary);
    opacity: 0.8;
    transition: .4s ease;
}

    .btn-primary:hover {
        opacity: 1;
    }

    .btn-primary:hover {
        background-color: var(--color-btn-primary);
    }

.btn-outline-primary {
    border: 1px solid var(--color-btn-primary);
    color: var(--color-btn-primary);
}

    .btn-outline-primary:hover {
        background-color: var(--color-btn-primary);
        color: white;
    }

a {
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;
    position: relative;
    min-height: 100vh;
    /*background-color: whitesmoke;*/
    font-weight: 200 !important;
}

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/assets/images/index-back-1.jpg');
        background-size: cover;
        background-position: center;
        opacity: 0.08; /* opacity burada kontrol edilir */
        z-index: -1;
    }

/* TOPBAR */
.topbar {
    transition: .4s ease;
    z-index: 1000;
    background-color: var(--color-topbar-bg);
}

    .topbar.scrolled {
        background: var(--color-topbar-bg);
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,.4);
        top: 0;
    }

/* Brand */
.logo-title {
    /* font-family: 'Montserrat', sans-serif; */
    /*letter-spacing: 2px;*/
    font-weight: bolder;
    font-size: 34px;
    letter-spacing: 0.0em;
    color: ghostwhite;
    line-height: 1;
}

.logo-subtitle {
    font-size: 18px;
    opacity: .8;
    color: ghostwhite;
    transition: all .35s ease;
    max-height: 40px;
    overflow: hidden;
}

.topbar.scrolled .logo-subtitle {
    max-height: 0;
    opacity: 0;
    margin-top: -6px;
}

.nav-link {
    /* font-family: 'Montserrat', sans-serif; */
    letter-spacing: 1.2px;
    font-size: 13px;
    position: relative;
    padding-bottom: 2px;
    text-transform: uppercase;
}

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0px;
        height: 2px;
        background: white;
        transition: width .35s ease;
    }

    /* hover’da 10px kadar açılır */
    .nav-link:hover::after {
        width: 30px;
    }


.hero-btn {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    padding: 14px 36px;
    letter-spacing: 2px;
    /* font-family: 'Montserrat', sans-serif; */
    transition: .3s;
    text-decoration: none;
    font-weight: bold
}

    .hero-btn:hover {
        background: #003663;
        border-color: white;
    }

.top-menu a {
    font-size: 18px;
}

/* Hamburger */
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin: 6px 0;
}

/* Slide Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -360px;
    width: 360px;
    height: 100vh;
    background: #111;
    padding: 80px 40px;
    transition: .4s cubic-bezier(.77,0,.18,1);
    z-index: 2000;
    text-align: center;
}

    .side-menu .profile-photo img {
        width: 60%
    }

    .side-menu.active {
        right: 0;
    }

    .side-menu .title {
        font-size: 1.3rem;
    }

    .side-menu .label {
        font-size: 0.8rem;
        color: yellow;
    }

    .side-menu .info-block {
        /*background-color:gray;*/
        padding: 5px 0 0px;
    }

    .side-menu a {
        display: block;
        /* font-family: 'Montserrat', sans-serif; */
        letter-spacing: 2px;
        color: #fff;
        text-decoration: none;
        margin-bottom: 28px;
    }

.section-contact-page .sidebar {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid gray;
}

.contact-profile-info .title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--ana-renk);
}

.contact-profile-info .label {
    font-size: 0.8rem;
    color: var(--ana-renk);
    margin-top: 20px;
    font-weight: bold;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 1500;
}

    .menu-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

.profile-photo img {
    width: 100%;
    border-radius: 6px;
}

.profile-info {
    color: #fff;
}

.footer-section {
    padding: 50px 0;
    background: var(--footer-bg);
    border-top: 1px solid rgba(255,255,255,.05);
    color: var(--footer-color);
}

    .footer-section small {
        color: #ccc;
        color: white;
    }

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    margin-left: 10px;
    transition: .3s;
}

    .social-btn:hover {
        background: #2f80ff;
        border-color: #2f80ff;
    }

/* Scroll To Top */
.scroll-top-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 44px;
    height: 44px;
    background: #2f80ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: .4s;
    z-index: 999;
}

    .scroll-top-btn.show {
        opacity: 1;
        pointer-events: auto;
    }


.breadcrumb {
    margin-top: 0px;
    padding: 40px 0;
    background-color: var(--color-breadcrumb-bg);
    border-bottom: 1px solid var(--color-topbar-bg)
}

    .breadcrumb .title {
        font-size: 2.2rem;
        color: var(--color-breadcrumb-title);
        font-weight: bold
    }

    .breadcrumb .subtitle {
        display: none;
        font-size: 36px;
        color: var(--color-breadcrumb-subtitle);
    }



.footer-section .logo img {
    width: 100%;
}

.footer-section .logo {
    margin-bottom: 30px;
}


.footer-menu .title {
    font-size: 18px;
    border-bottom: 1px solid silver;
    margin-bottom: 22px;
}

.footer-menu a {
    text-decoration: none;
    color: floralwhite;
    padding: 15px 0px;
}

    .footer-menu a:hover {
        color: yellow;
    }

.footer-section .contact {
    margin-bottom: 10px;
}

    .footer-section .contact .title {
        color: var(--color-silver);
    }

    .footer-section .contact a {
        color: yellow;
        text-decoration: underline;
    }

        .footer-section .contact a:hover {
            color: var(--color-white);
        }

    .footer-section .contact .address {
        margin-bottom: 10px;
    }

        .footer-section .contact .address .title {
            color: var(--color-white);
        }

    .footer-section .contact .phone {
        margin-bottom: 10px;
    }




.news-thumb-menu li {
    margin-bottom: 6px;
}

.news-thumb-menu a {
    font-size: 12px;
    color: gray;
    text-decoration: none;
}

.product-active .title {
    font-size: 1.2rem;
    font-weight: 500;
}

.product-active .subtitle {
    font-size: 1rem;
    color:dimgray;
    padding:15px 0;
    border-bottom:1px solid whitesmoke; 
}

.product-active .price {
    font-size: 2rem;
    color: black;
    padding: 30px 0;

   
}
.product-active .sale-price {
    font-size: 2rem;
    color: red;
    padding: 1px 0;
    font-weight:500;
}
.product-active .list-price {
    font-size: 1.2rem;
    color: gray;
    padding: 1px 0;
    font-weight: 500;
    position: relative;
    display: inline-block;
    background: linear-gradient(to bottom left, transparent 48%, #ff0000 48%, #ff0000 52%, transparent 52%);
    
}

.product-active .cat-info {
    font-size: 1rem;
    color: black;
    
    
}

.product-active .buttons {
    padding: 10px 0;
    border-top:1px solid whitesmoke
}

.product-active .buttons .quantity {
    width:175px;
}
    .product-active .buttons .quantity div {
        color:red;
    }

.product-active .btn-addbasket {
   padding: 10px 30px !important;
   
}


.product-active .cat-list {
    display:none;
}
.product-active .last-added-list {
    display: none;
}


.product-item {
    border: 1px solid var(--ana-renk);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    position: relative;
}

    .product-item .primary-image img {
        width: 100%;
        height: 200px;
    }

    .product-item .info {
        display:none;
    }
    .product-item .title {
        margin-top: 20px;
        font-size: 1rem;
        margin-bottom: 10px;
        color: var(--ana-renk)
    }

    .product-item .price {
        display:flex;
        gap:10px;
    }
    .product-item .price .sale-price {
        font-size:1.5rem;
        color:var(--ana-renk);
        font-weight:500;
    }
        .product-item .price .list-price {
            font-size: 0.8rem;
            color: gray;
            font-weight: 500;
            text-decoration:line-through;
        }

.product-item .footer {
    padding: 0px 0;
    position: xabsolute;
    bottom: 0;
}


.blog-item {
    border: 1px solid var(--ana-renk);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    position: relative;
}

    .blog-item .primary-image img {
        width: 100%;
        height: 250px;
    }

    .blog-item .cat-info {
        background-color: var(--ana-renk);
        color: white;
        padding: 4px 8px;
        border-radius: 6px;
    }

    .blog-item .info {
        font-size: 12px;
    }

.blog-title {
    margin-top: 20px;
    font-size: 1.3rem;
    /*font-weight:bold;*/
    margin-bottom: 10px;
    color: var(--ana-renk)
}

.blog-footer {
    padding: 0px 0;
    /*margin-top:50px;*/
    position: xabsolute;
    bottom: 0;
    /*height:170px;*/
}


    .blog-footer .blog-link {
        color: var(--ana-renk);
        font-weight: bold;
        cursor: pointer;
    }

        .blog-footer .blog-link::after {
            content: " >";
        }

.blog-subtitle {
    /*font-size:20px;*/
    /*font-weight:bold;*/
    margin-bottom: 20px;
    font-size: 0.9rem;
}


.blog-cat-list .title {
    font-size: 22px;
    /*font-weight: bold;*/
    border-bottom: 1px solid whitesmoke;
    padding: 10px 0;
    margin-bottom: 20px;
    color: black;
    position: relative;
}

    .blog-cat-list .title:after {
        position: absolute;
        content: "";
        left: 26px;
        bottom: 0;
        height: 2px;
        width: 63px;
        background: #6728ff;
    }

    .blog-cat-list .title:before {
        position: absolute;
        content: "";
        left: 0;
        bottom: 0;
        height: 2px;
        width: 20px;
        background: #001f4f;
    }

.blog-cat-list {
    /*border:1px solid silver;*/
    padding: 20px 40px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #f3f3f3
}

    .blog-cat-list a div {
        transition: var(--ana-renk, 0.5s);
    }

    .blog-cat-list a {
        text-decoration: none;
        color: #001F4F;
        display: flex;
        padding: 8px 10px;
        transition: var(--ana-renk, 0.5s);
    }

        .blog-cat-list a div:before {
            content: "- ";
        }

        .blog-cat-list a:hover {
            color: red;
            transition: var(--ana-renk, 0.5s);
        }

    .blog-cat-list .item {
        /*padding:2px 8px;*/
    }


        .blog-cat-list .item:hover {
            color: blue;
            background-color: white;
        }

.blog-last-added-list {
    border: 1px solid var(--ana-renk);
    padding: 20px 40px;
    margin-bottom: 20px;
    border-radius: 10px;
}

    .blog-last-added-list .item {
        margin-bottom: 5px;
    }

    .blog-last-added-list .title {
        font-size: 22px;
        /*font-weight: bold;*/
        padding: 10px 0;
        margin-bottom: 30px;
        color: black;
        position: relative;
    }

        .blog-last-added-list .title:after {
            position: absolute;
            content: "";
            left: 26px;
            bottom: 0;
            height: 2px;
            width: 63px;
            background: #6728ff;
        }

        .blog-last-added-list .title:before {
            position: absolute;
            content: "";
            left: 0;
            bottom: 0;
            height: 2px;
            width: 20px;
            background: #001f4f;
        }

    .blog-last-added-list .item-title {
        font-weight: bold;
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .blog-last-added-list .img {
        width: 70px;
        height: 70px;
        border: 1px solid silver;
    }

        .blog-last-added-list .img img {
            width: 70px;
            height: 70px;
        }

    .blog-last-added-list .item-title {
        font-weight: 500;
    }

    .blog-last-added-list a {
        font-size: 14px;
    }





.btmp-003 {
}

    .btmp-003 .title {
        font-size: 1.7rem;
        padding: 0 0 20px;
    }

    .btmp-003 .subtitle {
        padding: 0px 0px 20px;
    }


.btmp-001 {
}

    .btmp-001 img {
        width: 100%
    }

    .btmp-001 .title {
        margin-top: 20px;
        font-size: 2rem;
    }

    .btmp-001 .subtitle {
        margin-top: 10px;
    }

    .btmp-001 .buttons {
        display: flex;
        gap: 20px;
        margin-top: 50px;
    }

.btmp-002 {
    justify-content: center;
    text-align: center;
    position: relative;
}

    .btmp-002 img {
        width: 50%
    }

    .btmp-002 .title {
        margin-top: 20px;
        font-size: 2rem;
    }

    .btmp-002 .subtitle {
        margin-top: 10px;
    }

    .btmp-002 .buttons {
        display: block;
        gap: 20px;
        margin-top: 50px;
        justify-content: center;
        bottom: 0px;
    }

.btmp-003 {
    text-align: center;
    padding: 20px;
}

    .btmp-003 .title {
        margin-top: 20px;
        font-size: 1.2rem;
    }

    .btmp-003 .subtitle {
        margin-top: 10px;
        font-size: 0.9rem;
    }

    .btmp-003 .img {
        height: 40%;
    }

    .btmp-003 img {
        width: 50%;
    }

    .btmp-003 .buttons {
        margin-top: 20px;
        display: flex;
        text-align: center;
        justify-content: center;
    }



.btmp-004 {
    text-align: center;
}

    

    .btmp-004 .item {
        place-self: center;
        height: 100%;
        width: 100%;
        margin-bottom: 30px;
        position: relative;
        background-color: whitesmoke;
        padding: 30px;
        text-align: center;
        color: var(--ana-renk);
        border-radius: 5px;
        transition: background-color 0.5s ease, color 0.5s ease;
       
    }

        .btmp-004 .item:hover {
            background-color: var(--ana-renk);
            color: white;
        }

        .btmp-004 .item .img {
            height: 80%;
            /*position:relative;*/
        }

            .btmp-004 .item .img img {
                width: 100%;
                height:100%;
                
            }

        .btmp-004 .item .title {
            /*position: absolute;*/
            bottom: 20px;
            left: 0;
            right: 0;
            text-align: center;
            width: 100%;
            font-weight: bold;
            font-size: 1.1rem;
            /*background-color: color-mix(in srgb, var(--ana-renk), transparent 50%);*/
            /*padding:10px 10px;*/
            margin-top:20px;
        }

           

            .btmp-004 .item .subtitle {
                display: none;
            }

            .btmp-004 .item .buttons {
                display: none;
            }


            .btmp-005-1 {
            }

                .btmp-005-1 .img {
                    width: 100%;
                }

                    .btmp-005-1 .img img {
                        width: 100%;
                    }

                .btmp-005-1 .title {
                    font-size: 2rem;
                }

                .btmp-005-1 .subtitle {
                    font-size: 1rem;
                }

                .btmp-005-1 .link {
                }

            .btmp-005-2 {
            }

                .btmp-005-2 .img {
                    width: 100%;
                }

                    .btmp-005-2 .img img {
                        width: 100%;
                    }

                .btmp-005-2 .title {
                    font-size: 2rem;
                }

                .btmp-005-2 .subtitle {
                    font-size: 1rem;
                }

                .btmp-005-2 .link {
                }

            .btmp-005-4 {
                background-color: black;
                color: white;
                padding: 40px 0;
            }

                .btmp-005-4 .container {
                    position: relative;
                }

                .btmp-005-4 .info {
                    display: flex;
                }

                    .btmp-005-4 .info .link {
                        position: absolute;
                        right: 0;
                        color: white;
                    }

            .section .header {
                font-size: 2rem;
                border-bottom: 1px solid silver
            }

            .section .body {
                padding: 30px 0;
            }

            .section .header .title {
                font-size: 2rem;
                font-weight: 600;
                color: var(--ana-renk);
            }

            .section.c-1fc35d .body::before {
                content: "";
                position: absolute;
                inset: 0;
                background-color: hsl(119.6deg 100% 94.87%);
                clip-path: polygon(100% 0, 100% 100%, 0 100%);
                background-image: radial-gradient(silver 1px, transparent 1px);
                background-size: 10px 10px;
            }

            .section.c-1fc35d {
                position: relative
            }

            .thumb-img img {
                width: 60px;
            }

            .section {
                padding: 50px 0;
            }

            @media (max-width: 768px) {
                .section {
                    padding: 20px 0;
                }
            }

            .section .header {
                border-bottom: none;
            }

            .error-404 {
                height: 500px;
                color: var(--color-topbar-bg);
                padding: 200px 0;
            }

                .error-404 .title {
                    font-size: 3rem;
                    font-weight: bold;
                    padding: 0;
                }

                .error-404 .description {
                    font-size: 2rem;
                    padding: 0;
                }
