#cart-trigger {
    position: fixed;
    z-index: 9990; /* Below fixed-button */
    bottom: 30px;
    right: 20px;
    background-color: #fff;
    color: #333;
    border: 2px solid #333;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

#cart-trigger:hover {
    transform: scale(1.1);
}

#cart-trigger img {
    width: 70%;
}

#cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

#cart-dialog {
    overflow-y: auto;
}

#cart-dialog img {
    width: 80px;
}

.cart-item {
    display: flex;
    width: 100%;
    gap: 1em;
    align-items: center
}

.cart-item fieldset {
    display: flex;
    align-items: center;
    width: 100%;
    gap: .5em
}

.shipping-progress-container {
    margin: 1em 0;
    background-color: #e9ecef;
    border-radius: .35rem;
    overflow: hidden;
    height: 24px;
    position: relative;
}

.shipping-progress-container:before {
    content: 'Darmowa wysyłka od 149 zł (bez darowizny)';
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 1;
}

.shipping-progress-bar {
    background-color: #ffc107;
    height: 100%;
    width: 0;
    overflow: hidden;
    transition: width 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    position: absolute;
    z-index: 2;
}
