/* =============================================
   🍪 COOKIE NOTICE (FRONTEND)
   ============================================= */
#flowlatin-cookie-notice {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(10, 10, 20, 0.95);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    z-index: 99999;
    font-size: 13px;
}
.flowlatin-cookie-notice__content {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    flex-wrap: wrap;
}
.flowlatin-cookie-notice__accept {
    background: #f96352;
    border: none;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}
.flowlatin-cookie-notice__accept:hover {
    background: #dc3232;
}
#flowlatin-cookie-notice a {
    color: #f9d71c;
    text-decoration: underline;
}

/* =============================================
   🆕 NEW/UNSEEN BADGE (FRONTEND)
   ============================================= */
.new-badge-container {
    position: relative;
    width: 0;
    height: 0;
}
.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0;
    color: #000;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 11px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    white-space: nowrap;
}
