/* ============================================
   TOP BAR FIJA
   ============================================ */

.top-bar-fija {
    width: 100%;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--button-bg);
    color: #ffffff;

    overflow: hidden;
}


/* ============================================
   CONTENIDO
   ============================================ */

.top-bar-fija__contenido {
    width: 100%;
    max-width: 1400px;

    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 0 20px;

    white-space: nowrap;
    overflow: hidden;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}


/* ============================================
   TEXTOS
   ============================================ */

.top-bar-fija__texto {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;

    line-height: 1;
}


/* ============================================
   SEPARADORES
   ============================================ */

.top-bar-fija__separador {
    flex-shrink: 0;

    opacity: 0.45;

    font-weight: 400;
}


/* ============================================
   CUPÓN
   ============================================ */

.top-bar-fija__cupon {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 26px;

    padding: 0 16px;

    background: var(--color-warning);
    color: #111111;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;

    position: relative;

    /*
     * Forma de etiqueta / cupón
     */
    clip-path: polygon(
        8px 0,
        calc(100% - 8px) 0,
        100% 50%,
        calc(100% - 8px) 100%,
        8px 100%,
        0 50%
    );
}


/* ============================================
   DESCUENTO
   ============================================ */

.top-bar-fija__descuento {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;

    color: var(--color-warning);

    font-weight: 800;
    letter-spacing: 0.3px;
}


/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 768px) {

    .top-bar-fija {
        height: 38px;

        justify-content: flex-start;
    }

    .top-bar-fija__contenido {
        justify-content: flex-start;

        gap: 10px;

        padding: 0 12px;

        font-size: 10px;

        overflow-x: auto;
        overflow-y: hidden;

        /*
         * Mantiene absolutamente todo
         * en una sola línea
         */
        flex-wrap: nowrap;

        scrollbar-width: none;
    }

    .top-bar-fija__contenido::-webkit-scrollbar {
        display: none;
    }

    .top-bar-fija__separador {
        font-size: 10px;
    }

    .top-bar-fija__cupon {
        height: 23px;

        padding: 0 13px;

        font-size: 10px;
    }

    .top-bar-fija__descuento {
        font-size: 10px;
    }
}
