#sticky-cart-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    padding: 10px 20px;
    z-index: 9998;
    justify-content: space-between;
    align-items: center;
}

#sticky-cart-bar.is-visible {
    display: flex;
}

.sticky-bar-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
    margin-right: 12px;
}

.sticky-product-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-product-price {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.sticky-add-to-cart {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #ea9a19;
    color: #fff;
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.sticky-add-to-cart:hover {
    background-color: #d48a12;
    color: #fff;
}

.sticky-cart-icon {
    font-size: 16px;
}

@media (max-width: 768px) {
    #sticky-cart-bar {
		bottom:100px;
        padding: 8px 12px;
		z-index:2;
    }

    .sticky-product-name {
        font-size: 12px;
    }

    .sticky-product-price {
        font-size: 11px;
    }

    .sticky-add-to-cart {
        padding: 10px 16px;
        font-size: 12px;
    }

    .sticky-cart-text {
        display: none;
    }
	
	body:has(.pk-mobile-bottom-panel:not(.hidden)) #sticky-cart-bar.is-visible, body:has(.pk-mobile-bottom-panel) #sticky-cart-bar.is-visible {
		bottom: 72px;
	}
}
