/**
 * Styles for Analytics - Phone/Email Reveal
 * 
 * Subtle design that matches the existing site style.
 * Shows masked contact info with a simple "Vis" link.
 */

/* =========================================
   REVEAL LINK STYLES (Subtle, matches site)
   ========================================= */

.ud-phone-reveal-btn,
.ud-email-reveal-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #335cf2 !important;
    text-decoration: none !important;
    font-size: inherit;
    font-weight: normal;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.15s ease;
}

.ud-phone-reveal-btn:hover,
.ud-email-reveal-btn:hover {
    color: #1e3a8a !important;
    text-decoration: underline !important;
}

/* =========================================
   MASKED/FULL TEXT
   ========================================= */

.ud-phone-masked,
.ud-email-masked {
    font-family: inherit;
    color: inherit;
}

.ud-phone-full,
.ud-email-full {
    display: none;
    color: inherit;
}

/* =========================================
   REVEAL TEXT ("Vis" badge) - Subtle style
   ========================================= */

.ud-reveal-text {
    display: inline-block;
    background: #f3f4f6;
    color: #374151;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 4px;
    transition: background 0.15s ease;
}

.ud-phone-reveal-btn:hover .ud-reveal-text,
.ud-email-reveal-btn:hover .ud-reveal-text {
    background: #e5e7eb;
}

/* =========================================
   CONTACT ITEM - Match existing layout
   ========================================= */

.ud-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ud-contact-item:last-child {
    margin-bottom: 0;
}

.ud-contact-item svg {
    flex-shrink: 0;
}

/* =========================================
   AFTER REVEAL - Just a normal link
   ========================================= */

.ud-phone-reveal-btn[href^="tel:"] .ud-reveal-text,
.ud-email-reveal-btn[href^="mailto:"] .ud-reveal-text {
    display: none;
}

/* =========================================
   WEBSITE LINK - Just add tracking class
   ========================================= */

.ud-website-link {
    color: #335cf2 !important;
    text-decoration: none !important;
}

.ud-website-link:hover {
    text-decoration: underline !important;
}

/* =========================================
   SEARCH RESULTS - Phone/Email in cards
   ========================================= */

.box .ud-phone-reveal-btn,
.box .ud-email-reveal-btn,
.boosted .ud-phone-reveal-btn,
.boosted .ud-email-reveal-btn {
    font-size: 14px;
}

.box .ud-reveal-text,
.boosted .ud-reveal-text {
    font-size: 11px;
    padding: 1px 6px;
}
