
/* ==========================================
   STICKY ADD TO CART BAR
   Shows at bottom when main ATC is off-screen
   ========================================== */

.krumpld-sticky-atc {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: #fff !important;
    border-top: 1px solid #e5e5e5 !important;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.10) !important;
    padding: 12px 20px !important;
    transform: translateY(100%) !important;
    transition: transform 0.25s ease !important;
    box-sizing: border-box !important;
}

.krumpld-sticky-atc.is-visible {
    transform: translateY(0) !important;
}

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

.sticky-atc-product {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    min-width: 0 !important;
    flex: 1 !important;
}

.sticky-atc-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #000 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.3 !important;
}

.sticky-atc-price {
    font-size: 13px !important;
    color: #444 !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
}

.sticky-atc-btn {
    flex-shrink: 0 !important;
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 28px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    border-radius: 2px !important;
    white-space: nowrap !important;
    letter-spacing: 0.03em !important;
    transition: background 0.2s !important;
}

.sticky-atc-btn:hover {
    background: #222 !important;
}

.sticky-atc-btn:disabled {
    background: #999 !important;
    cursor: not-allowed !important;
}

/* Tighter padding on mobile */
@media (max-width: 480px) {
    .krumpld-sticky-atc {
        padding: 10px 16px !important;
    }
    .sticky-atc-btn {
        padding: 12px 20px !important;
        font-size: 13px !important;
    }
    .sticky-atc-title {
        font-size: 13px !important;
    }
}
