/**
 * MUSTER-PDF BUTTONS - DISKRET & MIT ABSTAND
 * Deployed: 16.10.2025
 *
 * Macht Muster-PDF Links dezenter und schafft mehr Abstand zum Kaufen-Button
 */

/* Muster-PDF Links - Dezentes Design */
.muster-pdf-link,
a[href*="muster-pdf"] {
    display: inline-block !important;
    margin-top: 30px !important; /* Mehr Abstand zum Kaufen-Button (vorher 10px) */
    padding: 8px 16px !important; /* Kleiner als Hauptbutton */
    font-size: 0.9rem !important; /* Kleiner Text */
    font-weight: 400 !important; /* Nicht bold */
    text-decoration: none !important;
    color: #666 !important; /* Grauer Text statt Navy */
    background: transparent !important; /* Kein weißer Hintergrund */
    border: 1px solid #CCC !important; /* Dünner grauer Rand */
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    opacity: 0.8 !important;
}

.muster-pdf-link:hover,
a[href*="muster-pdf"]:hover {
    color: #1A365D !important;
    border-color: #1A365D !important;
    opacity: 1 !important;
    background: rgba(26, 54, 93, 0.05) !important;
}

/* Icon (falls vorhanden) - Dezenter */
.muster-pdf-link svg,
a[href*="muster-pdf"] svg {
    width: 14px !important;
    height: 14px !important;
    margin-right: 6px !important;
    opacity: 0.7 !important;
}

/* Hauptbutton (Kaufen) behält seine Prominenz */
.btn[data-checkout],
.btn[data-tier] {
    margin-bottom: 0 !important;
}

/* Pricing Cards - Sicherstellen dass Abstände korrekt sind */
.price-card .btn,
.pricing-card .btn {
    margin-top: 0 !important;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .muster-pdf-link,
    a[href*="muster-pdf"] {
        margin-top: 25px !important;
        font-size: 0.85rem !important;
        padding: 6px 12px !important;
    }
}
