.navbar-wrapper-spacer {
    height: 0;
    transition: none;
    width: 100%;
}

@media (min-width: 992px) {
    .navbar-wrapper-spacer.active {
        height: 160px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #wrapper {
        padding-top: 65px;
        overflow-x: hidden;
    }
}




    /* Navbar başlangıçta normal konumda */
    .navbar-wrapper {
        position: relative;
        width: 100%;
        height: 139px;
        background: radial-gradient(circle at 23% 50%, #f1f1f1, #3cedf6, #3f87a6);
        display: flex;
        align-items: center;
        padding: 0 10%;
        box-sizing: border-box;
        box-shadow: 0 6px 18px rgba(0,0,0,0.2);
        transition: top 0.3s ease, transform 0.3s ease;
        z-index: 1041;
        margin-bottom: 10px;
    }

        /* Scroll sonrası navbar sabitlenir ve biraz yukardan yumuşak iner */
        .navbar-wrapper.fixed {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
        }

    /* Yumuşak geçiş sadece masaüstünde */
    @media (min-width: 901px) {
        .navbar-wrapper.fixed {
            transform: translateY(-100px);
        }

            .navbar-wrapper.fixed.show {
                transform: translateY(0);
            }
    }


    .babam {
        position: relative;
        width: 100%;
        height: 18px;
        background: radial-gradient(circle at 23% 50%, #f1f1f1, #3cedf6, #3f87a6);
        display: flex;
        align-items: flex-end;
        justify-content: center;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
        font-family: 'Poppins', sans-serif;
        padding: 0 15%;
        box-sizing: border-box;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
    }

    .menu-items {
        display: flex;
        gap: 10px; /* öğeler arası boşluk */
    }

    .servis-sorgula {
        color: rgba(0,0,0,0.4); /* Düz siyah yazı */
        padding: 5px 15px;
        border-radius: 5px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none; /* Eğer a etiketi ise alt çizgiyi kaldırır */
        transition: color 0.3s ease; /* Renk değişimini yumuşak yapar */
    }

        .servis-sorgula:hover {
            color: #4f4f4f; /* yeşil tonunda bir renk */
        }




    .ahmet {
        flex: 1;
        height: 135px;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        padding: 0;
        box-sizing: border-box;
        position: relative; /* submenu'nun absolute pozisyonuna referans olması için */
        overflow: visible; /* dropdown menünün kesilmesini önlemek için */
        z-index: 10000; /* üstte görünmesi için */
    }


        .ahmet a {
            display: flex;
            align-items: center;
        }

        .ahmet img.logo {
            position: relative;
            // top: -28px; /* Yukarı taşımak için negatif değer */
            height: 135px;
            width: auto;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            transition: transform 0.3s ease;
        }


            .ahmet img.logo:hover {
                transform: scale(1.05);
            }

    .zeynep {
        position: fixed; /* veya absolute */


        list-style: none;
        display: flex;
        padding: 5px;
        max-width: 837px;
        max-height: 50px;
        gap: 0;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(6px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        overflow: visible;
        border: 1px solid rgba(255, 255, 255, 0.3);
        transform: translateX(21%); /* Gerekirse kaldır */
        transition: transform 0.3s ease;
        z-index: 9999;
    }


        .zeynep li {
            position: relative;
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.1);
            transition: background 0.3s, transform 0.2s;
            border-right: 1px solid rgba(255, 255, 255, 0.3);
            z-index: 1;
            cursor: pointer;
        }

            .zeynep li:last-child {
                border-right: none;
            }

            .zeynep li:hover {
                background: rgba(255, 255, 255, 0.25);
                transform: translateY(-2px);
            }

            .zeynep li:nth-child(2):hover::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 150px;
                height: 100%;
                background-color: white;
                opacity: 0.2;
                pointer-events: none;
                border-radius: 12px 0 0 12px;
                z-index: 0;
            }

            .zeynep li a {
                color: #064d5c;
                text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
                font-size: 16px;
                font-weight: 600;
                text-decoration: none;
                transition: color 0.3s ease;
                display: block;
            }

                .zeynep li a:hover {
                    color: #049fbb;
                }

    /* === Dışarıda popup gibi açılan submenu === */

    .submenu {
        position: absolute;
        top: 95%;
        left: 0;
        width: 100%;
        background: linear-gradient(to bottom right, #2b6a8f, #3cedf6, #ffffff);
        padding: 30px 0;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        z-index: 100;
        box-sizing: border-box;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
    }

        .submenu.show {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }

    .submenu-inner {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        flex-wrap: wrap;
    }

        .submenu-inner > li {
            display: inline-block;
            background: #ffffff;
            padding: 15px 20px;
            border-radius: 12px;
            text-align: center;
            max-width: 165px;
            max-height: 200px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            list-style: none;
            flex-wrap: nowrap;
            flex-direction: row;
            justify-content: center;
        }

            .submenu-inner > li:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            }

        .submenu-inner img {
            width: 140px;
            height: 140px;
            object-fit: cover;
            border-radius: 14px;
            margin-bottom: 10px;
            transition: transform 0.3s ease;
        }

        .submenu-inner li:hover img {
            transform: scale(1.05);
        }

        .submenu-inner li a {
            display: flex;
            align-content: space-around;
            justify-content: center;
            align-items: baseline;
            flex-wrap: wrap;
        }

    #filtrelerSubmenu .submenu-inner img {
        width: 110px; /* istediğin genişlik */
        height: auto; /* orantılı küçülmesi için */
        display: block; /* taşma, boşluk sorunlarını önlemek için */
        margin: 0 auto; /* ortalamak istersen */
    }

    .submenu-title {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        white-space: nowrap; /* satır kırılmasını engeller */
        overflow: hidden; /* taşan kısmı gizler */
        text-overflow: ellipsis; /* ... ile gösterir */
    }


    /* Sağ üst hesap/sepet kutusu */
    .account-cart {
        position: absolute;
        top: 48%;
        right: 15%;
        z-index: 10000;
        transform: translateY(-50%);
        z-index: 10001;
        flex-direction: row; /* column yerine row yaptık */
        align-items: center; /* dikey ortalama */
        gap: 15px; /* aradaki boşluk */
        color: #ffffff;
        font-size: 16px;
    }

        .account-cart .account-button,
        .account-cart .cart-button {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            padding: 6px 12px;
            max-height: 38px;
            max-width: 172px;
            z-index: 10001;
            border-radius: 8px;
            transition: background 0.3s;
        }


        .account-cart .account-button {
            background: rgba(0, 0, 0, 0.15);
        }

            .account-cart .account-button:hover {
                background: rgba(0, 0, 0, 0.3);
            }


        .account-cart .cart-button {
            color: #fff;
            background: rgba(0, 0, 0, 0.15);
        }

            .account-cart .cart-button:hover {
                color: #fff;
                background: rgba(0, 0, 0, 0.3);
            }

        .account-cart div img {
            width: 26px;
            height: 26px;
            object-fit: contain;
        }


    /* Telefon alanı */
    .top-phone {
        position: absolute;
        top: 15%;
        left: 57%; /* Kenar boşluğuna göre */
        transform: translateX(0);
        color: white;
        font-size: 15px;
        font-weight: 600;
        z-index: 1000;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        background: rgba(0, 0, 0, 0.25);
        padding: 6px 12px;
        border-radius: 10px;
        backdrop-filter: blur(4px);
    }

        .top-phone img {
            width: 28px;
            height: 28px;
            object-fit: contain;
            margin-top: 2px;
        }

        .top-phone .phone-numbers {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

    .shopping_cart {
        padding: 10px;
        background-color: transparent;
        border-radius: 12px;
        z-index: 10500;
        position: relative;
        margin: 0 auto;
    }

        .shopping_cart .shoppingcart-box {
            background-color: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            padding: 10px 15px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .shopping_cart .cart-wrapper {
            position: relative;
            display: inline-block;
        }

        .shopping_cart .cart-icon {
            width: 32px;
            height: 30px;
            margin-right: 0px;
        }

        .shopping_cart .cart-count {
            position: absolute;
            top: 24px;
            right: -10px;
            min-width: 18px;
            height: 18px;
            background: #e53935;
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
            line-height: 1;
        }


        .shopping_cart .top_cart {
            display: flex;
            padding: 12px 15px;
            background-color: #007bff;
            border-radius: 12px;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            align-items: center;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

            .shopping_cart .top_cart:hover {
                background-color: #0056b3;
                transform: translateY(-3px);
            }

        .shopping_cart .shopcart {
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .shopping_cart .total-shopping-cart {
            font-size: 14px;
            color: #fff;
            font-weight: 600;
        }

        .shopping_cart .fa-turkish-lira {
            margin-left: 5px;
        }

        .shopping_cart .dropdown-menu {
            position: absolute;
            top: 85%;
            right: 0;
            z-index: 10500; /* navbar üstü */
            display: none;
            background-color: #fff;
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }

            .shopping_cart .top_cart:hover + .dropdown-menu,
            .shopping_cart .dropdown-menu:hover {
                display: block;
                z-index: 10600;
            }


        .shopping_cart .table-striped {
            width: 100%;
            margin-bottom: 15px;
            border-collapse: collapse;
        }

            .shopping_cart .table-striped tr:nth-child(odd) {
                background-color: #f9f9f9;
            }

            .shopping_cart .table-striped td, .shopping_cart .table-striped th {
                padding: 10px;
                color: black;
                text-align: center;
                border: 1px solid #ddd;
            }

            .shopping_cart .table-striped .cart_product_name {
                color: #333;
                font-weight: 600;
                text-decoration: none;
            }

                .shopping_cart .table-striped .cart_product_name:hover {
                    color: #007bff;
                }

        .shopping_cart .fa-delete {
            cursor: pointer;
            background-color: #eee;
            border-radius: 50%;
            padding: 5px;
            color: #555;
            font-size: 16px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

            .shopping_cart .fa-delete:hover {
                background-color: #dc3545;
                color: #fff;
            }

        .shopping_cart .btn.view-cart {
            background-color: #28a745;
            color: #fff;
            border-radius: 12px;
            padding: 12px;
            text-align: center;
            width: 100%;
            font-weight: 600;
            margin-top: 10px;
            transition: background-color 0.3s ease;
        }

            .shopping_cart .btn.view-cart:hover {
                background-color: #218838;
                text-decoration: none;
            }


    .account-cart.hide-on-mobile-menu {
        display: none !important;
    }

    body.no-scroll {
        overflow: hidden;
        height: 100vh;
        position: fixed;
        width: 100%;
    }

    @media (min-width: 991px) and (max-width: 1400px) {
        .nav-tabs > li {
            height: 40px;
        }
    }

    @media (min-width: 1701px) and (max-width: 1921px) {
        .navbar-wrapper {
            padding: 0 2%;
        }

        .account-cart {
            right: 2%;
        }

        .zeynep {
            transform: translateX(16%);
            max-width: 1400px;
        }

            .zeynep li {
                padding: 9px 20px;
            }

                .zeynep li a {
                    font-size: 19px;
                }
    }

    @media (min-width: 1405px) and (max-width: 1700px) {
        .account-cart {
            right: 0%;
        }

        .top-phone {
            left: 73%;
        }

        .navbar-wrapper {
            padding: 0 2%;
        }

        .zeynep {
            transform: translateX(25%);
            max-width: 1090px;
        }

            .zeynep li {
                padding: 9px 12px;
            }

                .zeynep li a {
                    font-size: 16px;
                }
    }

    @media (min-width: 992px) and (max-width: 1404px) {
        .account-cart {
            right: 0%;
            display: flex;
            top: 33%;
        }

        .top-phone {
            left: 47%;
        }

        .navbar-wrapper {
            padding: 0 2%;
        }

        .zeynep {
            transform: translateX(24%);
        }

            .zeynep li {
                padding: 7px 10px;
            }

                .zeynep li a {
                    font-size: 12px;
                }
    }



    /* mobil başlangıç*/
    @media (max-width: 991px) {
        .top-icons {
            position: absolute;
            top: 43px;
            right: -14px;
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .goBack {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 23px;
            text-decoration: none;
            font-weight: 560;
            font-size: 14px;
            width: 60%;
            color: #fff;
            border-radius: 30px;
            background: linear-gradient(90deg, #ff7eb9, #ff4e50);
            box-shadow: 0 6px 20px rgba(0,0,0,0.25);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

            .goBack .arrow {
                font-size: 20px;
                transition: transform 0.3s ease;
            }

        .top-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #ffffff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            text-decoration: none;
        }

            .top-icons a:hover {
                background: #f0f0f0;
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            }

        .top-icons img {
            width: 25px;
            height: 25px;
            pointer-events: none;
        }

        .mobile-overlay-menu {
            overflow-y: auto; /* uzun içerikte kaydırma */
            border-radius: 0 20px 20px 0;
        }

        .mobile-nav-links li a {
            line-height: 1.4;
            word-break: break-word; /* uzun kelimelerde taşmayı önler */
        }

        .navbar-wrapper {
            height: 60px;
            position: fixed;
        }


        .mobile-nav-links {
            padding: 10px;
        }

        .menu-box {
            list-style: none;
            border: 1px solid #ddd;
            border-radius: 12px;
            padding: 12px;
            margin: 10px 0;
            background-color: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

            .menu-box:hover {
                transform: translateY(-3px);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }

            .menu-box a {
                text-decoration: none;
                color: #333;
                display: flex;
                align-items: center;
            }

            .menu-box .menu-icon {
                border-radius: 8px;
                margin-right: 12px;
                width: 100px;
                height: auto;
            }

        .menu-text {
            font-weight: 600;
            font-size: 19px;
        }

        /* YAN MENÜ (zeynep) + MOBİL OVERLAY İÇİN İÇ KAYDIRMA */
        .zeynep,
        .mobile-overlay-menu {
            max-height: 100vh; /* Tüm görünür alan kadar olsun */
            overflow‑y: auto; /* Dikey kaydırma aktive */
            -webkit-overflow-scrolling: touch; /* iOS’ta momentum kaydırma */
        }

            /* İnce, şık bir scrollbar (isteğe bağlı) */
            .zeynep::-webkit-scrollbar,
            .mobile-overlay-menu::-webkit-scrollbar {
                width: 6px;
            }

            .zeynep::-webkit-scrollbar-thumb,
            .mobile-overlay-menu::-webkit-scrollbar-thumb {
                background: #c5c5c5;
                border-radius: 3px;
            }

        .nav-tabs > li {
            height: 36px;
        }




        .dropdown-menu {
            z-index: 11000;
        }

        .babam {
            display: none !important;
        }

        .ahmet img.logo {
            display: none;
        }

        .mobile-left {
            display: flex;
            align-items: center;
            gap: 10px;
            position: absolute;
            top: 16px;
            left: 15px;
            z-index: 11001;
        }

        .mobile-logo img {
            position: absolute;
            height: 70px;
            top: 17px;
            left: 5px;
            width: auto;
        }

        .hamburger {
            position: absolute;
            top: 39px; /* daha aşağı */
            right: 105%;
            z-index: 11001;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 39px; /* daha büyük */
            height: 28px;
            background: none;
            border: none;
            cursor: pointer;
        }

            .hamburger span {
                display: block;
                width: 100%;
                height: 5px; /* daha kalın */
                background-color: #064d5c;
                border-radius: 3px;
                transition: 0.4s;
            }


        .mobile-overlay-menu {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100dvh; /* Yeni nesil viewport birimi */
            background: radial-gradient(circle at 23% 50%, #f1f1f1, #3cedf6, #3f87a6);
            transition: left 0.3s ease;
            z-index: 13000;
            padding: calc(35px + env(safe-area-inset-top)) 20px 20px 20px;
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
        }


            .mobile-overlay-menu.active {
                left: 0;
            }

        .mobile-overlay-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 11000;
            display: none;
        }

            .mobile-overlay-bg.active {
                display: block;
            }

        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .mobile-nav-links li {
                margin: 15px 0;
            }

                .mobile-nav-links li a {
                    display: block;
                    padding: 12px 16px;
                    border-radius: 14px;
                    font-size: 17px;
                    font-weight: 600;
                    letter-spacing: 0.2px;
                    color: #064d5c;
                    text-decoration: none;
                    background: linear-gradient(135deg, #ffffff, #eafafb);
                    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
                    transition: all 0.3s ease;
                }


        .mobile-servis-sorgula {
            margin-top: 40px;
            border-top: 1px solid #ccc;
            padding-top: 20px;
        }

            .mobile-servis-sorgula .mobile-nav-links li a {
                padding: 8px 12px;
                font-size: 14px;
                font-weight: 500;
                border-radius: 10px;
                background: linear-gradient(135deg, #ffffff, #f3fbfd);
                box-shadow: 0 2px 6px rgba(0,0,0,0.06);
            }

        .zeynep, .submenu, .top-phone {
            display: none !important;
        }

        .account-cart {
            position: absolute;
            top: 60px;
            right: 15px;
            display: flex;
            flex-direction: column; /* dikey hizalama */
            align-items: flex-end; /* sağa hizalama */
            gap: 10px;
            z-index: 10001;
            max-width: 85%;
            max-height: 85%;
        }




        .account-button, .shopping_cart {
            padding: 5px 10px;
            z-index: 5;
            border-radius: 8px;
            left: 4%;
            max-width: 85%;
        }
    }

    .mobile-servis-sorgula a {
        display: block;
        margin: 10px 0; /* Yukarı aşağı boşluk */
        font-size: 16px;
        color: #064d5c;
        text-decoration: none;
    }

    @media (min-width: 992px) {
        .mobile-overlay-menu,
        .mobile-overlay-bg {
            display: none !important;
        }

        .hamburger {
            display: none !important;
        }

        .mobile-logo {
            display: none !important;
        }
    }


    .mobile-menu-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 2%;
        width: 100%;
    }

        .mobile-menu-logo .logo-circle {
            background: #fff;
            border-radius: 50%;
            padding: 15px; /* beyaz alan kalınlığı */
            display: flex;
            justify-content: center;
            align-items: center;
        }


        .mobile-menu-logo img {
            width: 165px;
            height: auto;
        }

    .mobile-social {
        bottom: 30px;
        left: 20px;
        right: 20px;
        display: flex;
        justify-content: center;
        gap: 9px;
        list-style: none;
    }

        .mobile-social a {
            color: #064d5c;
            font-size: 22px;
            transition: color 0.3s ease;
        }

            .mobile-social a:hover {
                color: #049fbb;
            }

    /*mobil son */

    //slider.css
    /* Genel Slider Stili */
    .container-slider {
        position: relative;
        width: 100%;
        overflow: hidden;
        background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    /* Slider İçindeki Öğeler */
    .container-slider .slider .item {
        transition: transform 0.5s ease-in-out;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        background: linear-gradient(135deg, #ff758c, #ff7eb3);
    }

        .container-slider .slider .item img {
            width: 100%;
            border-radius: 20px;
            transition: transform 0.4s ease-in-out;
        }

        .container-slider .slider .item:hover img {
            transform: scale(1.08);
            filter: brightness(1.1);
        }

    /* Navigasyon Butonları */
    .container-slider .owl2-nav .owl2-next,
    .container-slider .owl2-nav .owl2-prev {
        background: linear-gradient(90deg, #ff416c, #ff4b2b);
        color: white;
        cursor: pointer;
        font-size: 22px;
        font-weight: bold;
        height: 45px;
        width: 45px;
        line-height: 45px;
        text-align: center;
        border-radius: 50%;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }

        .container-slider .owl2-nav .owl2-next:hover,
        .container-slider .owl2-nav .owl2-prev:hover {
            background: linear-gradient(90deg, #ff7eb3, #ff758c);
            transform: scale(1.15);
        }

    /* Sayfalama Noktaları */
    .container-slider .page-button ul li {
        width: 14px;
        height: 14px;
        display: inline-block;
        background: white;
        border-radius: 50%;
        margin: 6px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

        .container-slider .page-button ul li:hover {
            background: #ff416c;
            transform: scale(1.3);
        }

    /* Başlık ve İçerik Alanı */
    .container-slider .page-title-categoryslider {
        font-size: 22px;
        font-weight: bold;
        text-transform: uppercase;
        color: white;
        text-align: center;
        padding-bottom: 12px;
        letter-spacing: 1px;
    }

        .container-slider .page-title-categoryslider span {
            display: inline-block;
            position: relative;
            padding-bottom: 5px;
        }

            .container-slider .page-title-categoryslider span:before {
                content: "";
                position: absolute;
                bottom: -6px;
                left: 0;
                width: 100%;
                height: 4px;
                background: #ffde59;
                border-radius: 2px;
            }

    /* Animasyonlar */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in {
        animation: fadeIn 0.8s ease-in-out;
    }

    //slider.css bitti


    //mağaza detay için
    .kargo-mesaj {
        font-size: 18px; /* büyütüldü */
        font-family: "Segoe UI", Arial, sans-serif;
        font-weight: 600; /* biraz daha kalın */
        color: #1e293b; /* koyu gri-mavi */
        line-height: 1.8; /* satır aralığı artırıldı */
        margin: 10px 0;
        animation: fadeIn 1s ease-in-out;
    }

    .kargo-mesaj b {
        color: #e11d48; /* canlı kırmızı/pembe tonu */
        font-weight: 550; /* daha güçlü vurgulama */
        font-size: 17px; /* kalın yazı biraz daha büyük */
    }

    .kargo-mesaj::before {
        content: "🚚 ";
        font-size: 18px; /* emoji de biraz büyüdü */
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(3px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }






















