/* Základní styly pro sticky lištu - skrytá mimo obrazovku dole */
.custom-sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111111; /* Tmavý podklad */
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    box-sizing: border-box;
    z-index: 9999;
    transform: translateY(100%); /* Skryto pod hranou displeje */
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Čistá typografie */
}

/* Třída, která lištu vysune */
.custom-sticky-cart.is-visible {
    transform: translateY(0);
}

/* Obsah lišty - název a cena */
.custom-sticky-cart-info {
    display: flex;
    flex-direction: column;
}

.custom-sticky-cart-title {
    font-size: 12px;
    color: #aaaaaa;
    margin-bottom: 2px;
}

.custom-sticky-cart-price {
    font-size: 16px;
    font-weight: bold;
}

/* Tlačítko v liště */
.custom-sticky-cart-btn {
    background-color: #7AB800; /* Barva tlačítka ze screenshotu (lze změnit na brandovou) */
    color: #000000;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    cursor: pointer;
}

/* Skrýt na desktopech (zobrazí se jen na mobilech do 768px šířky) */
@media (min-width: 769px) {
    .custom-sticky-cart {
        display: none !important;
    }
}