/**
 * Songtastisch Plugin - Core Styles
 * Basis-Styles für das Songtastisch WordPress Plugin
 * Version: 2.0.0 - Optimiert und bereinigt
 * 
 * @package Songtastisch
 * @version 2.0.0
 */

/* ===== GENERAL PLUGIN STYLES ===== */

/* Hidden Source Elements */
.st-hidden-source {
    display: none !important;
}

/* ===== EDIT BUTTON STYLES ===== */

/* Desktop Edit Button Styles - nur ab 1025px (Farben werden dynamisch über PHP gesetzt) */
@media (min-width: 1025px) {
    .st-desktop-btn {
        display: inline-block;
        padding: 5px 12px;
        border-radius: 6px;
        color: #ffffff !important;
        font-weight: bold;
        text-decoration: none;
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.2;
    }

    .st-desktop-btn:hover {
        color: #ffffff !important;
    }
}

/* Mobile Button Styles - bis 1024px */
@media (max-width: 1024px) {
    .st-desktop-btn {
        display: none !important;
    }
    
    a.st-mobile-btn {
        display: inline-block !important;
        padding: 4px 8px !important;
        border-radius: 4px !important;
        font-size: 12px !important;
        line-height: 1.2;
        text-decoration: none !important;
    }
}

/* ===== FRONTEND SPECIFIC STYLES ===== */

/* Shop Page - Nothing Found ausblenden */
.post-type-archive-product .elementor-nothing-found.elementor-products-nothing-found {
    display: none !important;
}

/* Hide Product Restore Message in Checkout/Cart */
.wfacp_product_restore_wrap,
#wfacp_product_restore_wrap {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* ===== ADMIN STYLES ===== */

/* Admin Überschriften */
.songtastisch-admin-heading {
    margin-bottom: 8px;
}

.songtastisch-admin-subheading {
    margin-top: 0;
}
