/* Araç Gereç - Sipariş Ver Butonları */

/* WhatsApp Butonu */
.ag-whatsapp-button {
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
}

.ag-whatsapp-button:hover {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.ag-whatsapp-button:focus {
    outline-offset: 2px;
}

/* Telefon Butonu */
.ag-phone-button {
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
}

.ag-phone-button:hover {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.ag-phone-button:focus {
    outline-offset: 2px;
}

/* Container'lar */
.ag-whatsapp-container,
.ag-phone-container {
    display: inline-block;
}

.ag-buttons-container {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 480px) {
    .ag-buttons-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .ag-whatsapp-button,
    .ag-phone-button {
        width: 100%;
        max-width: 280px;
    }
}
