.logo-899 {
    width: 150px;
}
.nav-899-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 20px;
    transition: transform .3s ease-in-out, opacity .3s ease-in-out, color .3s ease-in-out;
}

.nav-899-btn:hover {
    opacity: 1;
    color: #f1ad9c;
    transform: scale(1.1); /* Przykładowy efekt powiększenia */
}

.nav-899 {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform .3s ease-in-out;
}

.nav-899.visible-899 {
    transform: translateX(0);
}

.nav-899-black {
    background-color: #6b7280;
    width: 60%;
    max-width: 480px;
    min-width: 320px;
    transition-delay: 0.4s;
}

.nav-899-black.visible-899 {
    transition-delay: 0s;
}

.nav-899-red {
    background-color: rgb(241,173,156);
    width: 95%;
    max-width: 480px;
    min-width: 320px;
    transition-delay: 0.2s;
}

.nav-899-red.visible-899 {
    transition-delay: 0.2s;
}

.nav-899-white {
    background-color: #fff;
    width: 95%;
    padding: 25px;
    position: relative;
    transition-delay: 0s;
}

.nav-899-white.visible-899 {
    transition-delay: 0.4s;
}

.close-899-btn {
    color: #6b7280;
    opacity: 0.4;
    position: absolute;
    top: 40px;
    right: 30px;
}

.list-899 {
    list-style-type: none;
    padding: 0;
}

.list-899 li {
    margin: 20px 0;
}

.list-899 li a {
    color: #6b7280;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
}

.list-899 ul {
    list-style-type: none;
    padding-left: 20px;
}

.wish-iteam-899 {
    background: #fff;
    padding: 0;
    margin-bottom: 24px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.shopping-cart-content-wish {
    position: absolute;
    background: #fff;
    border: 0;
    border-radius: 0;
    padding-left: 16px !important;
    position: absolute;
    right: 0;
    top: 167%;
    width: auto;
    max-height: 85vh !important; /* Maksymalna wysokość */
    height: 100%;
    overflow-y: auto; /* Włącz przewijanie pionowe */
    overscroll-behavior: contain; /* Zapobiega propagacji przewijania na stronę */
    display: block; /* Upewnij się, że jest widoczny, gdy aktywny */
}

/* Stylowanie scrollbarów dla przeglądarek WebKit (Chrome, Safari, Edge) */
.shopping-cart-content-wish::-webkit-scrollbar {
    width: 8px; /* Szerokość scrollbaru, podobna do subtelnego stylu Tailwind */
}

.shopping-cart-content-wish::-webkit-scrollbar-track {
    background: #f1f5f9; /* Jasnoszary odcień, podobny do Tailwind gray-100 */
    border-radius: 4px; /* Zaokrąglone krawędzie toru */
}

.shopping-cart-content-wish::-webkit-scrollbar-thumb {
    background: #9ca3af; /* Szary odcień, podobny do Tailwind gray-400 */
    border-radius: 4px; /* Zaokrąglony thumb */
    border: 1px solid #f1f5f9; /* Subtelna granica dla kontrastu */
}

.shopping-cart-content-wish::-webkit-scrollbar-thumb:hover {
    background: #6b7280; /* Ciemniejszy szary na hover, podobny do Tailwind gray-500 */
}

/* Stylowanie scrollbarów dla Firefoksa */
.shopping-cart-content-wish {
    scrollbar-width: thin; /* Subtelna szerokość scrollbaru */
    scrollbar-color: #9ca3af #f1f5f9; /* Kolor thumb i track */
}

.shopping-cart-title h4 {
    margin: 8px !important;
    font-size: 14px;
    color: #6b7280;
}

.shopping-cart-content-wish .shopping-cart-delete {
    margin: 3px !important;
}

.shopping-cart-content-wish-header {
    color: #6b7280;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.enpty-cart-content p {
    margin-top: 40px;
    font-size: 16px !important;
}

/*serduszko*/
.td-user-wishlist-container {
    /*position: relative;*/
    min-width: 50px;
    text-align: center;
}

.wishlistHeartContainer, .wishlistHeartFullContainer {
    display: none; /* Domyślnie ukryte */
    position: static; /* Usuń position: absolute */
}

.wishlistHeartContainer.active, .wishlistHeartFullContainer.active {
    display: flex; /* Użyj flex dla aktywnego kontenera */
    justify-content: center; /* Centrowanie w poziomie */
    align-items: center; /* Centrowanie w pionie */
    z-index: 5; /* Zachowaj z-index dla warstw */
}

/* Styl dla pustego serca */
.wishlistHeartContainer .cart_heart_user_wish {
    margin-top: 0;
    font-weight: 200 !important;
    cursor: pointer;
}

/* Styl dla wypełnionego serca */
.wishlistHeartFullContainer .cart_heart_user_wish_full {
    margin-top: 0;
    font-weight: 600 !important;
    cursor: default;
    scale: 1.1;
    color: #f1ad9c !important;
}


/*@media (max-width: 768px) {*/
/*    .td-user-wishlist-container {*/
/*        min-width: 40px;*/
/*    }*/
/*    .wishlistHeartContainer i.fas,*/
/*    .wishlistHeartFullContainer i.fas {*/
/*        font-size: 14px;*/
/*    }*/
/*}*/


/*Obliczanie ilości dla serca*/
.nav-heart-a-899 {
    position: relative; /* Ustawia kontekst dla pozycjonowania absolutnego */
    display: inline-block;
}

.heart-count-user-wishlist {
    position: absolute;
    top: 10px; /* Przesunięcie w górę */
    right: 5px; /* Przesunięcie w prawo */
    background-color: #f1ad9c; /* Kolor tła kółka */
    color: white; /* Kolor tekstu */
    font-size: 12px; /* Rozmiar czcionki */
    font-weight: bold;
    width: 18px; /* Szerokość kółka */
    height: 18px; /* Wysokość kółka */
    border-radius: 50%; /* Zaokrąglenie do kształtu koła */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.continue-wishlist-go-to {
    display: inline-block;
    font-size: 12px; /* text-sm */
    color: #6b7280; /* text-gray-500 */
    text-decoration: underline;
    text-underline-offset: 4px; /* underline-offset-4 */
    transition: color 0.2s ease-in-out; /* transition */
}

.continue-wishlist-go-to-2 {
    display: inline-block;
    font-size: 12px; /* text-sm */
    color: #6b7280; /* text-gray-500 */
    text-decoration: none;
    text-underline-offset: 4px; /* underline-offset-4 */
    transition: color 0.2s ease-in-out; /* transition */
    margin-bottom: 10px;
}

.continue-wishlist-go-to:hover {
    color: #4b5563; /* hover:text-gray-600 */
}

.btn-wishlist-7812 {
    display: block;
    border-radius: 4px; /* rounded-sm */
    border: 1px solid #4b5563; /* border-gray-600 */
    padding-left: 1.25rem; /* px-5 */
    padding-right: 1.25rem;
    padding-top: 14px; /* py-3 */
    padding-bottom: 14px;
    font-size: 12px; /* zmienione z text-sm na 12px */
    color: #4b5563; /* text-gray-600 */
    transition: all 0.2s ease-in-out; /* transition */
}

.btn-wishlist-7812:hover {
    box-shadow: 0 0 0 1px #9ca3af; /* hover:ring-1 hover:ring-gray-400 */
}

