	/* ==============================
   HEADER CLIENTES
============================== */

body.clientes-area {
    background: var(--fondo-sitio);
    color: var(--texto-general);
}

/* Header base */
.header-clientes {
    width: 100%;
    background: var(--fondo-sitio);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
}

/* Contenedor */
.header-clientes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.notification-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.7rem;
    margin-top: 6px;
	color: var(--texto-general);
}
/* LOGO */
.header-logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

.header-logo span {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

/* DERECHA */
.header-cliente-accion {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* BOTÓN REGISTRO / LOGIN */
.btn-cliente {
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff4d4d, #ff0055);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
}

.btn-cliente:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,0,85,0.35);
}

/* ICONO USUARIO */
.user-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.15);
    transition: all .25s ease;
}

.user-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-icon:hover {
    border-color: #ff0055;
    box-shadow: 0 0 0 4px rgba(255,0,85,0.25);
}
		.regpag, .loginpagoo {display:none}
/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 600px) {

    .header-clientes-container {
        padding: 12px 15px;
    }

    .header-logo img {
        max-height: 32px;
    }

    .btn-cliente {
        padding: 7px 14px;
        font-size: 13px;
    }
}
