/* ════════════════════════════════════════════════════════════
   Enzo footer — single-line minimal bar
   ════════════════════════════════════════════════════════════ */
/* Page-spanning vertical guide lines — render on every page (doctor, KB,
   contact, about, etc). Use position: fixed so opaque section/template
   backgrounds (e.g. .doc-page { background: #fff }) can't cover them.
   z-index sits below the fixed header (z-100) but above all content. */
.enzo-page-vline {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(205, 160, 127, 0.5);
    z-index: 50;
    pointer-events: none;
}
.enzo-page-vline-l { left: 16px; }
.enzo-page-vline-r { right: 16px; }
@media (max-width: 767px) {
    .enzo-page-vline { display: none; }
}

.enzo-footer {
    position: relative;
    z-index: 5;
    width: 100%;
    background: #fff;
    border-top: 1px solid rgba(205, 160, 127, 0.4);
    color: #2a2a2a;
}
.enzo-footer-bar {
    max-width: 1320px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
@media (min-width: 768px) { .enzo-footer-bar { padding: 18px 48px; } }

.enzo-footer-l,
.enzo-footer-r {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.enzo-footer-logo { display: inline-flex; align-items: center; }
.enzo-footer-logo img { height: 24px; width: auto; }

.enzo-footer-divider {
    width: 1px;
    height: 16px;
    background: rgba(205, 160, 127, 0.45);
}

.enzo-footer-copy {
    font-size: 12.5px;
    color: rgba(42, 42, 42, 0.55);
    white-space: nowrap;
}
.enzo-footer-link,
.enzo-footer .enzo-footer-link-btn {
    font-family: inherit !important;
    font-size: 12.5px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    line-height: 1.4 !important;
    letter-spacing: 0 !important;
    color: rgba(42, 42, 42, 0.7) !important;
    text-decoration: none !important;
    text-transform: none !important;
    vertical-align: baseline;
    transition: color 0.18s;
}
.enzo-footer-link:hover,
.enzo-footer .enzo-footer-link-btn:hover { color: #e8347a !important; }

.enzo-footer .enzo-footer-link-btn {
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer;
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    text-align: inherit;
    display: inline;
}
.enzo-footer .enzo-footer-link-btn:focus { outline: none; }
.enzo-footer .enzo-footer-link-btn:focus-visible { outline: 1px dotted rgba(232, 52, 122, 0.5); outline-offset: 2px; }

/* Status pill */
.enzo-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #15803d;
    font-size: 11.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.enzo-status-pill:hover {
    background: rgba(34, 197, 94, 0.10);
    border-color: rgba(34, 197, 94, 0.5);
}
.enzo-status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: enzoStatusPing 1.8s ease-out infinite;
    flex-shrink: 0;
}
@keyframes enzoStatusPing {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
    70%  { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Social */
.enzo-footer-social-links { display: inline-flex; gap: 4px; }
.enzo-footer-social-links a {
    width: 28px; height: 28px;
    border-radius: 8px;
    color: rgba(42, 42, 42, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s ease;
    text-decoration: none;
}
.enzo-footer-social-links a svg { width: 14px; height: 14px; }
.enzo-footer-social-links a:hover {
    color: #e8347a;
    background: rgba(232, 52, 122, 0.08);
}

/* Ask AI — same style as socials, with a tiny label */
.enzo-footer-ai-links {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.enzo-footer-ai-label {
    font-size: 11px;
    color: rgba(42, 42, 42, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-right: 4px;
    white-space: nowrap;
}
.enzo-footer-ai-links a {
    width: 28px; height: 28px;
    border-radius: 8px;
    color: rgba(42, 42, 42, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s ease;
    text-decoration: none;
}
.enzo-footer-ai-links a svg { width: 14px; height: 14px; }
.enzo-footer-ai-links a:hover {
    color: #e8347a;
    background: rgba(232, 52, 122, 0.08);
}
@media (max-width: 640px) {
    .enzo-footer-ai-label { display: none; }
}

/* Mobile — let it wrap, hide one of the dividers if it's awkward */
@media (max-width: 640px) {
    .enzo-footer-bar { gap: 12px; }
    .enzo-footer-l, .enzo-footer-r { gap: 12px; }
    .enzo-footer-divider { display: none; }
}
