/* ─── Sticky Add-to-Cart Bar (mobile only) ───── */

.sh-sticky-cart {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1a1a1a;
    border-top: 1px solid #d8d3cb;
    padding: 12px 16px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sh-sticky-cart.is-visible {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .sh-sticky-cart {
        display: flex;
        align-items: center;
        gap: 12px;
    }
}

.sh-sticky-cart__info {
    flex: 1;
    min-width: 0;
    font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
}

.sh-sticky-cart__title {
    font-size: 0.75rem;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.sh-sticky-cart__meta {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.06em;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.sh-sticky-cart__price {
    font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    flex-shrink: 0;
}

.sh-sticky-cart__btn {
    font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a1a1a;
    background: #FFC200;
    border: none;
    border-radius: 0;
    padding: 12px 20px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.sh-sticky-cart__btn:hover {
    opacity: 0.85;
}

.sh-sticky-cart__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
