/**
 * MeatEK Demo Buttons Styles
 * 
 * WooCommerce ürün sayfaları için canlı demo ve yönetim paneli butonları.
 */

.meatek-demo-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
    align-items: center;
}

.meatek-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Canlı Demo Butonu - Yeşil */
.meatek-btn-demo {
    background-color: #28a745;
    color: #ffffff;
}

.meatek-btn-demo:hover,
.meatek-btn-demo:focus {
    background-color: #218838;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

/* Yönetim Paneli Butonu - Mor */
.meatek-btn-panel {
    background-color: #7b2cbf;
    color: #ffffff;
}

.meatek-btn-panel:hover,
.meatek-btn-panel:focus {
    background-color: #6a1fa8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(123, 44, 191, 0.3);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .meatek-demo-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .meatek-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .meatek-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

