/* ═══════════════════════════════════════════
   TOPBAR — Barra de anuncios superior
   Costuras Creativas Child Theme
═══════════════════════════════════════════ */

.cc-topbar {
    background-color: var(--cc-ink);
    color: var(--cc-white);
    width: 100%;
    position: relative;
    z-index: 9999;
}

.cc-topbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 9px 5%;
    text-align: center;
    font-family: var(--cc-font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* Negrita rosa para destacar valores clave */
.cc-topbar__inner strong,
.cc-topbar__inner b {
    color: var(--cc-rose);
    font-weight: 700;
}

/* Links dentro del topbar */
.cc-topbar__inner a {
    color: var(--cc-rose);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity var(--cc-transition);
}
.cc-topbar__inner a:hover { opacity: 0.8; }

/* Separadores visuales */
.cc-topbar__sep {
    display: inline-block;
    margin: 0 10px;
    opacity: 0.3;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .cc-topbar__inner {
        font-size: 0.68rem;
        padding: 7px 4%;
        /* En mobile mostrar menos items */
    }
    /* Ocultar el tercer punto en mobile para no saturar */
    .cc-topbar__inner .cc-topbar__hide-mobile {
        display: none;
    }
}
