/* Floating CTA Bar Styling */
.rahi-spx-floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #eef0f2;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 9999; 
    
    /* Layout */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    
    /* Default hidden */
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.rahi-spx-floating-cta.active {
    visibility: visible;
    opacity: 1;
    /* Agar niche se slide-in karna hai to transform: translateY(0); use karein */
}

.rahi-spx-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-right: 15px;
}

#spx-product-name {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#spx-product-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.rahi-spx-button-wrapper a.button {
    /* Existing button styles (Red, size) will be applied by rahi-whatsapp-btn class */
    height: auto;
    min-width: 120px;
    text-align: center;
}