   /* scrollbar */
   
/* Webkit tarayıcılar: Chrome, Safari, Edge */
::-webkit-scrollbar {
  width: 16px;  /* Scrollbar kalınlığı arttırıldı */
  height: 16px; /* Yatay scrollbar için */
}

::-webkit-scrollbar-track {
  background: #ff5100; /* Toz turuncu (hafif şeffaf) */
  border-radius: 12px;
}

::-webkit-scrollbar-thumb {
  background: #ffffffcc; /* Tatlı beyaz, hafif şeffaf */
  border-radius: 12px;
  border: 3px solid #ff6f0020; /* Track ile uyumlu sınır */
}

::-webkit-scrollbar-thumb:hover {
  background: #ffffff; /* Hoverda tam beyaz */
}

/* Firefox */
* {
  scrollbar-width: auto; /* normal boyut */
  scrollbar-color: #ffffffcc #ff6f0020; /* thumb ve track */
}


   
   /* header */
        .navbar{
    padding: 0 ;
    }
        #admin-item{
            border: 3px solid #fff;
            text-align: center;
            background-color: rgb(235, 0, 60);
            border-radius: 7px;
            transition: .3s;
        }
        #admin-link{
            color: rgb(255, 190, 0)  !important;
        }
        #admin-item:hover{
            background-color: rgb(255, 190, 0) ;
        }
        #admin-item:hover #admin-link{
            color: rgb(235, 0, 60) !important;
        }
.nav-link{
    color: rgb(235, 0, 60)!important;
    font-weight: 500;
}
.navbar-brand{
    color: #fff !important;
    font-weight: 700;
}
.navbar{
    background: linear-gradient(to right, 
    rgb(235, 0, 60) 0%, 
    rgb(255, 190, 0) 40%,
    rgb(255, 190, 0) 100%) !important;
    padding: 0 ;
    margin-bottom: 50px;
}
#header{
    margin-bottom: 80px !important;
}
header a, footer .navbar-brand{
    letter-spacing: 2px !important;
    font-family: 'opet', curvise !important;
}  
.navbar-brand:hover, header a:hover{
    color: #f0f0f0 !important;
    transition: .3s;
}
    @media(max-width:991px){
        .navbar{
            background: linear-gradient(to right, 
            rgb(235, 0, 60) 0%, 
            rgb(255, 190, 0) 45%,
            rgb(255, 190, 0) 100%)!important;
        }
        .sidebar{
            background-color: rgba(248, 82, 76, 0.438) !important;
            backdrop-filter: blur(10px);
            width: 78% !important;
        }
        .nav-link{
            color: rgb(255, 190, 0) !important;
        }
        #admin-item{
            background-color: rgb(255, 190, 0);
        }
        #admin-link{
            color: rgb(235, 0, 60) !important;
        }
        #admin-item:hover{
            background-color: rgb(235, 0, 60) ;
        }
        #admin-item:hover #admin-link{
            color: rgb(255, 190, 0) !important;
        }
}
        @font-face {
            font-family: opet;
            src: url('../../Library/font/opet-tr/OpetTRA.ttf');
        }
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: url('../img/bg1.webp');
            background-size: cover;
            background-attachment: fixed;
        }
        h1 {
            text-align: center;
        }
        .sidebar{
            border-left: 3px solid #fff !important;
        }
        /* Kategori kutuları */
        .kategori-listesi {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-bottom: 30px;
        }
        .kategori-karti {
            display: inline-block;
            padding: 12px 20px;
            border: 1px solid #ccc;
            border-radius: 8px;
            text-decoration: none;
            color: #333;
            font-weight: bold;
            background-color: #fff;
            transition: all 0.2s;
        }
        .kategori-karti:hover {
            background-color: #f1f1f1;
            transform: scale(1.05);
        }
        .kategori-karti.aktif {
            background-color: #c0392b;
            color: #fff;
            border-color: #c0392b;
        }
        /* Ürün listesi */
        .urun-listesi {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 30px;
        }
        .urun-listesi .urun-bilgi h3{
            font-size: 25px;
        }
        .urun-karti {
            box-shadow: rgba(114, 114, 114, 0.25) 0px 14px 28px, rgba(125, 125, 125, 0.22) 0px 10px 10px !important;
            position: relative;
            width: 320px;
            height: 300px;
            border: 4px solid #ff6f00ff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.2s;
        }
        .urun-karti:hover  img{
            transform: scale(1.15);
            transition: .4s;
        }
        .urun-karti img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .urun-bilgi {
            border-top: 1px solid #fff;
            position: absolute;
            bottom: 0;
            background-color: #f1540b8b;
            width: 100%;
        }
        .urun-bilgi h3 {
            text-align: center;
            color: #fff;
            margin: 0 !important;
            padding: 0 !important;
        }
        .urun-bilgi p {
            text-align: center;
            font-size: 14px;
            color: #ffffffff;
            margin: 0 !important;
            padding: 0 !important;
        }
        .urun-fiyat {
            font-size: 16px;
            text-align: center;
            color: #ffffffff;
            font-weight: bold;
        }
		.urun-karti.aktif {
            display: none;
    border: 2px solid #c0392b;
    box-shadow: 0 0 10px rgba(192,57,43,0.5);
        }
        .header-wrap{
            display: flex;
            justify-content: center;
            padding-bottom: 50px;
        }
        .headerr{
            width: 100%;
            background-color: #000000c8;
            position: fixed;
            top: 0;
            z-index: 1;
        }
        h1{
            font-family: 'opet';
            font-weight: 500;
            color: #fff;
        }
        .geri{
            font-size: 18px;
            padding: 3px 6px;
            border: 2px solid #ffffffff;
            border-radius: 4px;
            display: none;
        }
        .geri a{
            text-decoration: none;
            color: #ffffffff;
        }
        .geri:hover{
            background-color: rgb(255, 190, 0);
            transition: .3s;
        }
        @media(max-width:991px){
            h1{
                font-size: 20px;
            }
            .headerr{
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 15px;
            }
            .urun-karti{
                width: 162px;
                height: 140px;
            }
            .urun-bilgi h3{
                margin: 5px;
                font-size: 16px;
            }
            .urun-liste{
                height: 300px;
                width: 90% !important;
            }
            .geri{
                display: block !important;
            }
        }
        /* footer */
        footer{
            border-top: 3px solid #fff;
            backdrop-filter: blur(7px);
            background-color: #00000029;
        }