/* ==========================================================================
   Quote Share – kuehn-social
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Overlay
   -------------------------------------------------------------------------- */

.kuehn-quote-share {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.kuehn-quote-share[hidden] {
    display: none;
}

/* --------------------------------------------------------------------------
   2. Panel
   -------------------------------------------------------------------------- */

.kuehn-quote-share__panel {
    display: grid;
    gap: 6px;
    width: min(360px, calc(100vw - 32px));
    padding: 20px;
    border-radius: 14px;
    border: none;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------------------------------------
   3. Action Buttons
   -------------------------------------------------------------------------- */

.kuehn-quote-share__action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    padding: 11px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: transparent;
    color: #1c2024;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.kuehn-quote-share__action:hover,
.kuehn-quote-share__action:focus-visible {
    background: #f3f4f6;
    border-color: #d1d5db;
    outline: none;
}

/* --------------------------------------------------------------------------
   4. Status message
   -------------------------------------------------------------------------- */

.kuehn-quote-share__status:empty {
    display: none;
}

.kuehn-quote-share__status {
    padding: 8px 12px;
    border-radius: 8px;
    background: #f3f4f6;
    font-size: 13px;
    text-align: center;
    color: #374151;
}

/* --------------------------------------------------------------------------
   5. Dark Mode
   -------------------------------------------------------------------------- */

[data-site-theme-resolved="dark"] .kuehn-quote-share__panel {
    background: var(--kuehn-site-surface, #1a1f28);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

[data-site-theme-resolved="dark"] .kuehn-quote-share__action {
    border-color: var(--kuehn-site-border, #2b3340);
    color: var(--kuehn-site-text, #e7eaf0);
}

[data-site-theme-resolved="dark"] .kuehn-quote-share__action:hover,
[data-site-theme-resolved="dark"] .kuehn-quote-share__action:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

[data-site-theme-resolved="dark"] .kuehn-quote-share__status {
    background: rgba(255, 255, 255, 0.06);
    color: var(--kuehn-site-muted, #a1a8b5);
}
