/* ============================================================
   Zavvi — logo como componente (símbolo em imagem + wordmark em texto).
   O texto real recebe anti-aliasing subpixel do browser em qualquer DPI;
   um path SVG a 1x fica serrilhado. Uso: <x-brand-logo />
   ============================================================ */
@font-face {
    font-family: "Zavvi Brand";
    src: url("/fonts/outfit-900-brand.woff2") format("woff2"),
         url("/fonts/outfit-900-brand.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: block;   /* evita flash com fallback antes da fonte (1KB) chegar */
}

.zv-logo {
    display: inline-flex;
    align-items: center;
    gap: .42em;                 /* proporcional ao tamanho */
    font-size: 26px;            /* altura visual do wordmark; ajuste por contexto */
    line-height: 1;
    text-decoration: none;
    color: #141414 !important;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
}
.zv-logo__mark {
    height: 1.45em;             /* símbolo ≈ 1.45× o font-size (proporção da arte) */
    width: auto;
    display: block;
    flex-shrink: 0;
}
.zv-logo__word {
    font-family: "Zavvi Brand", "Outfit", "Bricolage Grotesque", Inter, system-ui, sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    position: relative;
    top: -0.03em;               /* alinhamento óptico ao centro do balão */
}
.zv-logo--light { color: #ffffff !important; }
