/* ============================================================
 * Digital Vaccination Card
 * Public, no-auth pet vaccination viewer.
 * Locked to v2 dark theme. Explicit text colors throughout.
 * ============================================================ */

.vc-page {
    color: #e5e7eb;
    background: #0b0a1d;
    min-height: 100vh;
}

/* Ambient layer behind content */
.vc-ambient {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0.35;
}
.vc-ambient img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.vc-main {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 6rem;
}

/* ============================================================
 * Print-only header
 * ============================================================ */
.vc-print-header {
    display: none;
}
.vc-print-header__logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.vc-print-header__title {
    font-weight: 700;
    font-size: 16px;
}
.vc-print-header__sub {
    font-size: 13px;
    color: #444;
}

/* ============================================================
 * Identity header
 * ============================================================ */
.vc-identity {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-top: 1.5rem;
    backdrop-filter: blur(6px);
}

.vc-identity__photo-wrap {
    position: relative;
    width: 192px;
    height: 192px;
    flex-shrink: 0;
}
.vc-identity__iagd-ring {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 252px;
    height: 252px;
    z-index: 10;
    pointer-events: none;
}
.vc-identity__photo {
    width: 192px;
    height: 192px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5), 0 0 0 6px rgba(255, 255, 255, 0.06);
}

.vc-identity__meta {
    min-width: 0;
}
.vc-identity__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: #88bdf6;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.vc-identity__eyebrow i {
    margin-right: 4px;
}
.vc-identity__name {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 0.5rem 0;
    word-break: break-word;
}

.vc-identity__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}
.vc-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e5e7eb;
}
.vc-chip i {
    color: #88bdf6;
}

.vc-identity__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 0;
}
.vc-identity__facts > div {
    background: rgba(0, 0, 0, 0.25);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    border-left: 3px solid rgba(136, 189, 246, 0.5);
}
.vc-identity__facts dt {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    margin-bottom: 0.15rem;
}
.vc-identity__facts dd {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e5e7eb;
    margin: 0;
    word-break: break-word;
}

.vc-identity__seal {
    text-align: center;
    flex-shrink: 0;
}
.vc-seal {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffd86b, #c79b18);
    color: #1f1300;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(199, 155, 24, 0.45), inset 0 0 0 4px rgba(255, 255, 255, 0.35);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.vc-seal i {
    font-size: 1.6rem;
    margin-bottom: 2px;
}
.vc-seal__top {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.vc-seal__brand {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}
.vc-identity__timestamp {
    font-size: 0.72rem;
    color: #9ca3af;
}

/* ============================================================
 * Summary tiles
 * ============================================================ */
.vc-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}
.vc-tile {
    position: relative;
    padding: 1.25rem 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.2s ease;
}
.vc-tile:hover {
    transform: translateY(-2px);
}
.vc-tile > i {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    display: block;
}
.vc-tile__num {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.vc-tile__label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #e5e7eb;
}
.vc-tile__hint {
    font-size: 0.7rem;
    color: #9ca3af;
    margin-top: 0.2rem;
}

.vc-tile--total > i,
.vc-tile--total .vc-tile__num { color: #88bdf6; }
.vc-tile--total {
    background: linear-gradient(180deg, rgba(21, 164, 255, 0.14), rgba(21, 164, 255, 0.04));
    border-color: rgba(21, 164, 255, 0.3);
}

.vc-tile--current > i,
.vc-tile--current .vc-tile__num { color: #22c55e; }
.vc-tile--current {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.14), rgba(34, 197, 94, 0.04));
    border-color: rgba(34, 197, 94, 0.35);
}
.vc-tile--current.vc-tile--glow {
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.25), inset 0 0 16px rgba(34, 197, 94, 0.08);
}

.vc-tile--due > i,
.vc-tile--due .vc-tile__num { color: #f59e0b; }
.vc-tile--due {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.14), rgba(245, 158, 11, 0.04));
    border-color: rgba(245, 158, 11, 0.4);
}

.vc-tile--expired > i,
.vc-tile--expired .vc-tile__num { color: #ef4444; }
.vc-tile--expired {
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.14), rgba(239, 68, 68, 0.04));
    border-color: rgba(239, 68, 68, 0.4);
}

.vc-tile--pulse::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid currentColor;
    opacity: 0;
    animation: vc-pulse 2.2s ease-in-out infinite;
    pointer-events: none;
}
.vc-tile--pulse.vc-tile--due::after { color: #f59e0b; }
.vc-tile--pulse.vc-tile--expired::after { color: #ef4444; }

@keyframes vc-pulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.015); }
}

/* ============================================================
 * Action bar
 * ============================================================ */
.vc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}
.vc-actions__btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #e5e7eb;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.1s ease;
    cursor: pointer;
}
.vc-actions__btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: translateY(-1px);
}
.vc-actions__btn--ghost {
    margin-left: auto;
    background: transparent;
    border-color: rgba(136, 189, 246, 0.35);
    color: #88bdf6;
}
.vc-actions__btn--ghost:hover {
    background: rgba(136, 189, 246, 0.1);
    color: #cfe5ff;
}

/* ============================================================
 * Timeline
 * ============================================================ */
.vc-timeline {
    position: relative;
    margin-top: 2rem;
    padding-left: 3rem;
}
.vc-timeline__rail {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1.1rem;
    width: 2px;
    background: linear-gradient(180deg, #88bdf6, #22c55e 35%, #f59e0b 65%, #ef4444);
    border-radius: 1px;
    opacity: 0.5;
}

.vc-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left-width: 4px;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    padding: 1.25rem 1.25rem 1rem 1.25rem;
    page-break-inside: avoid;
}
.vc-card--current   { border-left-color: #22c55e; }
.vc-card--due_soon  { border-left-color: #f59e0b; }
.vc-card--expired   { border-left-color: #ef4444; }
.vc-card--no_expiry { border-left-color: #88bdf6; }

.vc-card__node {
    position: absolute;
    top: 1.25rem;
    left: -2.65rem;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: #14122b;
    border: 2px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 1;
}
.vc-card--current   .vc-card__node { color: #22c55e; border-color: rgba(34, 197, 94, 0.6); }
.vc-card--due_soon  .vc-card__node { color: #f59e0b; border-color: rgba(245, 158, 11, 0.6); }
.vc-card--expired   .vc-card__node { color: #ef4444; border-color: rgba(239, 68, 68, 0.6); }
.vc-card--no_expiry .vc-card__node { color: #88bdf6; border-color: rgba(136, 189, 246, 0.6); }

.vc-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}
.vc-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.2rem 0;
}
.vc-card__admin-date {
    font-size: 0.85rem;
    color: #9ca3af;
}
.vc-card__admin-date i {
    color: #88bdf6;
    margin-right: 4px;
}

/* Status badges */
.vc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    white-space: nowrap;
}
.vc-badge--current {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.4);
}
.vc-badge--due_soon {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.45);
}
.vc-badge--expired {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.45);
}
.vc-badge--no_expiry {
    background: rgba(136, 189, 246, 0.12);
    color: #88bdf6;
    border: 1px solid rgba(136, 189, 246, 0.4);
}

/* Card body grid */
.vc-card__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 1rem;
}
.vc-card__field--full {
    grid-column: 1 / -1;
}
.vc-card__field-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
    margin-bottom: 0.2rem;
    font-weight: 600;
}
.vc-card__field-value {
    color: #e5e7eb;
    font-size: 0.95rem;
}
.vc-card__field-value strong {
    color: #ffffff;
    font-weight: 700;
}
.vc-card__field-rel {
    display: block;
    font-size: 0.78rem;
    margin-top: 0.15rem;
}
.vc-card__field-rel--current { color: #22c55e; }
.vc-card__field-rel--due_soon { color: #f59e0b; }
.vc-card__field-rel--expired { color: #ef4444; }
.vc-card__field-value--mono {
    font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    color: #cfe5ff;
}
.vc-card__field-muted {
    color: #9ca3af;
}

/* Notes with show-more */
.vc-card__notes {
    position: relative;
}
.vc-card__notes-text {
    color: #e5e7eb;
    font-size: 0.92rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: pre-wrap;
}
.vc-card__notes--expanded .vc-card__notes-text {
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
}
.vc-card__notes-toggle {
    background: none;
    border: none;
    color: #88bdf6;
    font-size: 0.8rem;
    padding: 0.2rem 0;
    margin-top: 0.2rem;
    cursor: pointer;
    font-weight: 600;
}
.vc-card__notes-toggle:hover { color: #cfe5ff; }

/* Vet block */
.vc-card__vet {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 0.9rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    border-left: 3px solid rgba(136, 189, 246, 0.5);
    margin-bottom: 0.75rem;
}
.vc-card__vet--missing {
    color: #9ca3af;
    font-size: 0.9rem;
    border-left-color: rgba(255, 255, 255, 0.2);
}
.vc-card__vet-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}
.vc-card__vet-meta { min-width: 0; }
.vc-card__vet-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.vc-card__vet-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    color: #22c55e;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    background: rgba(34, 197, 94, 0.12);
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 197, 94, 0.35);
}
.vc-card__vet-license {
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 0.15rem;
}
.vc-card__vet-license i {
    color: #88bdf6;
    margin-right: 3px;
}

/* Attachments strip */
.vc-card__attachments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}
.vc-card__attachment {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #e5e7eb;
    text-decoration: none;
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    cursor: pointer;
}
.vc-card__attachment:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}
.vc-card__attachment--img {
    padding: 0;
    overflow: hidden;
    width: 64px;
    height: 64px;
}
.vc-card__attachment--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vc-card__attachment--doc i {
    color: #88bdf6;
    font-size: 1rem;
}

/* ============================================================
 * Empty state
 * ============================================================ */
.vc-empty {
    margin-top: 2rem;
    padding: 3rem 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}
.vc-empty__art {
    font-size: 4rem;
    color: rgba(136, 189, 246, 0.5);
    margin-bottom: 0.75rem;
}
.vc-empty__title {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.vc-empty__sub {
    color: #9ca3af;
    max-width: 460px;
    margin: 0 auto 1.25rem;
    line-height: 1.5;
}
.vc-empty__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    background: rgba(136, 189, 246, 0.14);
    border: 1px solid rgba(136, 189, 246, 0.4);
    border-radius: 10px;
    color: #88bdf6;
    text-decoration: none;
    font-weight: 600;
}
.vc-empty__cta:hover {
    background: rgba(136, 189, 246, 0.22);
    color: #cfe5ff;
}

/* ============================================================
 * Footer strip
 * ============================================================ */
.vc-footer-strip {
    margin-top: 2rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-align: center;
}
.vc-footer-strip__line {
    color: #e5e7eb;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}
.vc-footer-strip__line i {
    color: #22c55e;
    margin-right: 4px;
}
.vc-footer-strip__disclaimer {
    color: #9ca3af;
    font-size: 0.78rem;
    font-style: italic;
}

/* ============================================================
 * Attachment modal
 * ============================================================ */
.vc-attachment-modal {
    background: #14122b;
    color: #e5e7eb;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.vc-attachment-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.vc-attachment-modal .modal-title {
    color: #ffffff;
}

/* ============================================================
 * Responsive
 * ============================================================ */
@media (max-width: 992px) {
    .vc-identity {
        grid-template-columns: auto 1fr;
    }
    .vc-identity__seal {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    .vc-seal { width: 84px; height: 84px; }
    .vc-seal i { font-size: 1.2rem; }
    .vc-seal__brand { font-size: 0.9rem; }
    .vc-tiles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .vc-identity {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .vc-identity__photo-wrap {
        margin: 0 auto;
    }
    .vc-identity__chips { justify-content: center; }
    .vc-identity__facts { grid-template-columns: 1fr; }
    .vc-identity__name { font-size: 2rem; }
    .vc-card__body { grid-template-columns: 1fr; }
    .vc-card__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .vc-timeline {
        padding-left: 0;
    }
    .vc-timeline__rail { display: none; }
    .vc-card__node {
        position: static;
        margin-bottom: 0.75rem;
    }
    .vc-identity__name { font-size: 1.7rem; }
}

/* ============================================================
 * Demo banner (only on /vc/demo)
 * ============================================================ */
.vc-demo-banner {
    position: relative;
    margin-top: 1.5rem;
    padding: 1.5rem 1.5rem 1.25rem 1.5rem;
    background:
        radial-gradient(circle at top right, rgba(255, 215, 107, 0.16), transparent 60%),
        linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(34, 197, 94, 0.08));
    border: 1px solid rgba(255, 215, 107, 0.35);
    border-radius: 16px;
    overflow: hidden;
}
.vc-demo-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        135deg,
        transparent 0,
        transparent 22px,
        rgba(255, 255, 255, 0.025) 22px,
        rgba(255, 255, 255, 0.025) 24px
    );
    pointer-events: none;
}
.vc-demo-banner__ribbon {
    position: absolute;
    top: 0.9rem;
    right: -2.3rem;
    transform: rotate(35deg);
    background: linear-gradient(90deg, #ffd86b, #c79b18);
    color: #1f1300;
    padding: 0.3rem 3rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    z-index: 2;
}
.vc-demo-banner__ribbon i { margin-right: 4px; }
.vc-demo-banner__body {
    position: relative;
    z-index: 1;
    max-width: 760px;
}
.vc-demo-banner__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.4rem 0;
}
.vc-demo-banner__lede {
    color: #d6d8df;
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 1rem 0;
}
.vc-demo-banner__lede code {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cfe5ff;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-size: 0.85rem;
}
.vc-demo-banner__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
}
.vc-demo-banner__features li {
    color: #e5e7eb;
    font-size: 0.88rem;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.45rem;
}
.vc-demo-banner__features li strong { color: #ffffff; }
.vc-demo-banner__pill {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.vc-demo-banner__pill--current  { background: rgba(34, 197, 94, 0.18); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.45); }
.vc-demo-banner__pill--vet      { background: rgba(136, 189, 246, 0.18); color: #88bdf6; border: 1px solid rgba(136, 189, 246, 0.45); }
.vc-demo-banner__pill--privacy  { background: rgba(239, 68, 68, 0.16); color: #fca5a5; border: 1px solid rgba(239, 68, 68, 0.4); }
.vc-demo-banner__pill--share    { background: rgba(245, 158, 11, 0.18); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.45); }
.vc-demo-banner__pill--media    { background: rgba(168, 85, 247, 0.18); color: #c4b5fd; border: 1px solid rgba(168, 85, 247, 0.45); }
.vc-demo-banner__hint {
    color: #9ca3af;
    font-size: 0.82rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    padding-top: 0.7rem;
}
.vc-demo-banner__hint kbd {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom-width: 2px;
    color: #e5e7eb;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-size: 0.78rem;
    margin: 0 1px;
}
@media (max-width: 768px) {
    .vc-demo-banner__features { grid-template-columns: 1fr; }
    .vc-demo-banner__ribbon { right: -2.6rem; font-size: 0.65rem; }
}

/* ============================================================
 * Print
 * ============================================================ */
@media print {
    body, .vc-page {
        background: #ffffff !important;
        color: #111111 !important;
    }
    .vc-ambient,
    .iagd-circle-containers,
    .vc-actions,
    .offcanvas,
    #offcanvas-pet-profile-qr_code,
    nav,
    .vc-empty__cta,
    .vc-card__notes-toggle,
    .vc-demo-banner {
        display: none !important;
    }
    .vc-print-header {
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
        border-bottom: 2px solid #111;
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
        color: #111 !important;
    }
    .vc-main {
        max-width: 100%;
        padding: 0;
    }
    .vc-identity,
    .vc-tile,
    .vc-card,
    .vc-footer-strip,
    .vc-empty {
        background: #ffffff !important;
        border: 1px solid #999 !important;
        color: #111 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }
    .vc-identity__name,
    .vc-card__title,
    .vc-card__vet-name,
    .vc-identity__facts dd,
    .vc-empty__title,
    .vc-footer-strip__line strong {
        color: #000 !important;
        -webkit-text-fill-color: #000 !important;
        background: none !important;
    }
    .vc-identity__eyebrow,
    .vc-identity__facts dt,
    .vc-card__field-label,
    .vc-card__admin-date,
    .vc-card__vet-license,
    .vc-footer-strip__disclaimer {
        color: #555 !important;
    }
    .vc-chip {
        background: #f5f5f5 !important;
        border-color: #ccc !important;
        color: #111 !important;
    }
    .vc-seal {
        background: #f5f5f5 !important;
        color: #111 !important;
        box-shadow: none !important;
        border: 2px solid #c79b18 !important;
    }
    .vc-tile--total,
    .vc-tile--current,
    .vc-tile--due,
    .vc-tile--expired {
        border-left: 4px solid currentColor !important;
    }
    .vc-tile--total .vc-tile__num, .vc-tile--total > i { color: #15a4ff !important; }
    .vc-tile--current .vc-tile__num, .vc-tile--current > i { color: #128a3b !important; }
    .vc-tile--due .vc-tile__num, .vc-tile--due > i { color: #b87600 !important; }
    .vc-tile--expired .vc-tile__num, .vc-tile--expired > i { color: #b00020 !important; }
    .vc-badge--current { color: #128a3b !important; border-color: #128a3b !important; background: #e8f6ec !important; }
    .vc-badge--due_soon { color: #b87600 !important; border-color: #b87600 !important; background: #fff4dd !important; }
    .vc-badge--expired { color: #b00020 !important; border-color: #b00020 !important; background: #fde6ea !important; }
    .vc-badge--no_expiry { color: #15a4ff !important; border-color: #15a4ff !important; background: #e6f3ff !important; }
    .vc-card__notes-text {
        -webkit-line-clamp: unset !important;
        display: block !important;
        overflow: visible !important;
    }
    .vc-card__attachment--doc::after {
        content: " (" attr(href) ")";
        font-size: 0.7rem;
        color: #555;
    }
    .vc-card__attachment--img {
        page-break-inside: avoid;
    }
    .vc-card {
        page-break-inside: avoid;
    }
    a, a:visited {
        color: #111 !important;
        text-decoration: none !important;
    }
}
