/**
 * glulando.de — Sales CTA Button Styles v1.0
 * Styling fuer Checkout-Links im Community-Feed.
 * Mobil-optimiert, touch-friendly, auffaellig aber nicht aufdringlich.
 */

.sales-cta-btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 8px 0 4px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}
.sales-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}
.sales-cta-btn:active {
    transform: scale(0.97);
}
/* Dark Mode */
[data-theme="dark"] .sales-cta-btn,
.dark .sales-cta-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.35);
}
/* Branding-Farbe uebernehmen wenn vorhanden */
.sales-cta-btn[style*="--brand"] {
    background: var(--brand-primary, linear-gradient(135deg, #6366f1, #8b5cf6));
}
/* Mobil: volle Breite */
@media (max-width: 480px) {
    .sales-cta-btn {
        display: block;
        text-align: center;
        padding: 12px 20px;
        font-size: 15px;
    }
}
