/* ============================================
   INLINE BUTTONS - Slide + Glow احترافي
   ============================================ */

.inline-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(188, 148, 75, 0.2);
}

.inline-btn {
    position: relative;
    width: 100%;
    min-height: 54px;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
    border: 1px solid #2A2A2A;
    border-radius: 12px;
    color: #FFFFFF;
    font-family: 'IBM Plex Sans Arabic', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Slide from Left Effect */
.inline-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #bc944b 0%, #8b6914 100%);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 12px;
}

.inline-btn:hover::before {
    left: 0;
}

/* Glow Effect on Hover */
.inline-btn:hover {
    border-color: #bc944b;
    box-shadow: 
        0 0 20px rgba(188, 148, 75, 0.4),
        0 0 40px rgba(188, 148, 75, 0.2),
        inset 0 0 20px rgba(188, 148, 75, 0.1);
}

/* Active */
.inline-btn:active {
    transform: scale(0.98);
}

/* WhatsApp */
.inline-btn.whatsapp-btn::before {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.inline-btn.whatsapp-btn:hover {
    border-color: #25D366;
    box-shadow: 
        0 0 20px rgba(37, 211, 102, 0.4),
        0 0 40px rgba(37, 211, 102, 0.2),
        inset 0 0 20px rgba(37, 211, 102, 0.1);
}

/* Focus */
.inline-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(188, 148, 75, 0.5);
}

.inline-btn.whatsapp-btn:focus {
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.5);
}

/* Disabled */
.inline-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Mobile */
@media (max-width: 768px) {
    .inline-buttons {
        gap: 0.6rem;
        margin-top: 1rem;
        padding-top: 1rem;
    }
    .inline-btn {
        min-height: 50px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    .inline-btn::before {
        border-radius: 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .inline-btn {
        padding: 0.85rem 1.15rem;
        font-size: 0.925rem;
    }
}
