/* Sticky Add To Cart Styles */
.mitoterapia-sticky-atc-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    z-index: 9999;
    padding: 10px 20px;
    transform: translateY(110%);
    transition: transform 0.3s ease-in-out;
    visibility: hidden;
}

.mitoterapia-sticky-atc-wrapper.visible {
    transform: translateY(0);
    visibility: visible;
}

.sticky-atc-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Product Info */
.sticky-product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-img img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.sticky-details {
    display: flex;
    flex-direction: column;
}

.sticky-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-color, #333);
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-price {
    font-size: 14px;
    color: var(--primary, #000);
}

/* Actions */
.sticky-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.sticky-qty-btn {
    background: #f5f5f5;
    border: none;
    padding: 0 12px;
    height: 40px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    transition: background 0.2s;
}

.sticky-qty-btn:hover {
    background: #e0e0e0;
}

.sticky-qty-input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    height: 40px;
    padding: 0;
    margin: 0;
    -moz-appearance: textfield;
}

.sticky-qty-input::-webkit-outer-spin-button,
.sticky-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.sticky-add-to-cart-btn {
    background-color: var(--primary, #000);
    color: #fff;
    border: none;
    padding: 0 24px;
    height: 40px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.sticky-add-to-cart-btn:hover {
    background-color: var(--primary-dark, #333);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mitoterapia-sticky-atc-wrapper {
        padding: 10px 15px;
        padding-bottom: max(10px, env(safe-area-inset-bottom));
    }

    .sticky-atc-content {
        flex-direction: column;
        gap: 10px;
    }

    .sticky-product-info {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 8px;
        display: none; /* Ukrywamy detale na bardzo małych ekranach, żeby nie zasłaniać */
    }

    .sticky-actions {
        width: 100%;
        justify-content: space-between;
    }

    .sticky-add-to-cart-btn {
        flex-grow: 1;
    }
}
