.etiketlerBox{max-height:52px; overflow: auto;}
.etiketlerBox::-webkit-scrollbar {width: 15px;} 
.etiketlerBox::-webkit-scrollbar-track {background: #ffffff;} 
.etiketlerBox::-webkit-scrollbar-thumb {background-color: #041e42; border-radius: 50px; border: 5px solid #ffffff;}
.product-cart-add {padding: 8px 50px!important}
#scrollTopBtn {
    display: none; /* JavaScript ile gösterilene kadar gizli */
    position: fixed; /* Sayfa kaysa bile sabit kalmasını sağlar */
    bottom: 70px; /* Sayfanın altından 20px yukarıda */
    right: 40px; /* Sayfanın sağından 30px solda */
    z-index: 100; /* Diğer tüm elementlerin üstünde görünür */
    
    /* Buton Stilleri */
    background-color: #E65842; /* Site renkleri */
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 18px; /* Ok simgesinin boyutunu ayarlar */
    
    /* Yumuşak bir geçiş efekti */
    transition: background-color 0.3s, opacity 0.3s;
}

#scrollTopBtn:hover {
    background-color: #59bdcd; /* Sitenizdeki hover renkleri */
}

/* Sayfa genelinde metin seçimini engeller */
body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Standart */
}