.wpfront-notification-bar {
    visibility: hidden;
    position: fixed;
    overflow: hidden;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    background-color: #000;
    z-index: 99998
}

.wpfront-bottom-shadow {
    -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .75);
    -moz-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .75);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .75)
}

.wpfront-top-shadow {
    -webkit-box-shadow: 0 -5px 5px 0 rgba(0, 0, 0, .75);
    -moz-box-shadow: 0 -5px 5px 0 rgba(0, 0, 0, .75);
    box-shadow: 0 -5px 5px 0 rgba(0, 0, 0, .75)
}

.wpfront-notification-bar.wpfront-fixed {
    position: fixed;
    z-index: 99998;
    width: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: row
}

.wpfront-notification-bar.wpfront-fixed-position {
    z-index: 99999
}

.wpfront-notification-bar.wpfront-fixed.load {
    visibility: visible;
    position: relative
}

.wpfront-notification-bar.top {
    top: 0
}

.wpfront-notification-bar.bottom {
    bottom: 0
}

.wpfront-notification-bar.keep-closed,
.wpfront-notification-bar.max-views-reached {
    display: none
}

.wpfront-notification-bar div.wpfront-close {
    position: absolute;
    top: 3px;
    right: 5px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-weight: 700;
    line-height: 0;
    font-size: 10px;
    padding: 5px 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px
}

.wpfront-notification-bar table,
.wpfront-notification-bar tbody,
.wpfront-notification-bar tr {
    margin: auto;
    border: 0;
    padding: 0;
    background: inherit
}

/* ============================================================
   BARRA DE NOTIFICACIÓN CON BRILLO DORADO ANIMADO
   ============================================================ */

.wpfront-notification-bar td {
    /* --- 1. CONFIGURACIÓN ESTRUCTURAL ORIGINAL --- */
    vertical-align: middle;
    text-align: center;
    border: 0;
    margin: 0;
    padding: 0;
    line-height: 1em;

    /* --- 2. TEXTO NEGRO SEGURO --- */
    /* Forzamos que las letras y enlaces de la barra sean negros y legibles */
    color: #000000;
    text-shadow: none;

    /* --- 3. FONDO DORADO METÁLICO ANIMADO --- */
    /* Aplicamos el degradado original */
    background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    
    /* Escalamos el fondo para permitir el movimiento */
    background-size: 400% 400%;
    
    /* Ejecutamos la animación 'brilloOro' (reutiliza los mismos keyframes que ya guardaste) */
    animation: brilloOro 20s ease infinite;
}

/* --- Asegurar que los enlaces dentro de la barra también sean negros --- */
.wpfront-notification-bar td a {
    color: #000000 !important;
    text-decoration: underline; /* Mantiene el subrayado en los links si lo deseas */
    font-weight: bold; /* Les da un poco más de fuerza */
}
.wpfront-notification-bar div.wpfront-div {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 5px 0
}

.wpfront-notification-bar a.wpfront-button,
.wpfront-notification-bar-editor a.wpfront-button {
    display: inline-block;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
    cursor: pointer;
    padding: 5px 10px;
    margin-left: 5px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px
}

.wpfront-notification-bar-open-button {
    position: absolute;
    right: 10px;
    z-index: 99998;
    border: 3px solid #fff;
    width: 23px;
    height: 30px;
    cursor: pointer;
    background-repeat: no-repeat;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

.wpfront-notification-bar-open-button.hidden {
    display: none
}

.wpfront-notification-bar-open-button.top {
    top: 0;
    background-position: top center;
    border-top: 0;
    -webkit-border-top-right-radius: 0;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topright: 0;
    -moz-border-radius-topleft: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.wpfront-notification-bar-open-button.bottom {
    bottom: 0;
    background-position: bottom center;
    border-bottom: 0;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.wpfront-notification-bar-spacer {
    position: relative;
    z-index: 99998
}

.wpfront-notification-bar-spacer.wpfront-fixed-position {
    z-index: 99999
}

.wpfront-notification-bar-spacer.hidden {
    display: none
}

div.wpfront-message p {
    margin: 0
}