/* ===== ESTILOS GENERALES DEL HEADER ===== */


.header {
    background: linear-gradient(135deg, white 0%, #b9d7b1 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    margin: 0;
    left: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: transparent;
    height: 80px;
}

/* ===== LADO IZQUIERDO ===== */
.header-left {
    display: flex;
    align-items: center;
    flex: 1;
    margin: 0;
    padding: 0;
}

.logo {
    margin-right: 20px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.categorias {
    position: relative;
    margin-right: 15px;
}

.dropdown-btn {
    background-color: transparent;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.dropdown-btn:hover {
    background-color: #f5f5f5;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 200px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1001;
    padding: 10px 0;
    display: none;
}

.dropdown-content a {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.2s;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

.vender-btn {
    background-color: green;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.vender-btn:hover {
    background-color: #2968c8;
}

/* ===== CENTRO: Barra de búsqueda ===== */
.header-center {
    display: flex;
    align-items: center;
    flex: 2;
    max-width: 600px;
    position: relative;
    margin: 0;
    padding: 0;
}

.search-input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: #3483fa;
}

.search-icon {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: #666;
    padding: 8px;
}

/* ===== LADO DERECHO ===== */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    margin: 0;
    padding: 0;
}

.menu-item {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.menu-item:hover {
    color: #3483fa;
}

.notificacion-icono {
    position: relative;
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.notificacion-icono:hover {
    color: #3483fa;
}

.contador-notificaciones {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #f44;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon {
    margin-left: 10px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.icon:hover {
    color: #3483fa;
}

.contador-carrito {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #3483fa;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== PERFIL DE USUARIO ===== */
.user-profile-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    margin: 0 10px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.user-profile-link:hover {
    background-color: #f5f5f5;
    text-decoration: none;
}

.user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    flex-shrink: 0;
}

.user-profile-link:hover .user-avatar {
    border-color: #3483fa;
}

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

.user-avatar:not([has-img]) {
    background-color: #3483fa;
    color: white;
    font-weight: bold;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-text {
    font-size: 14px;
    white-space: nowrap;
    color: #333;
}

/* ===== CATEGORÍA SELECCIONADA ===== */
.dropdown-content a.active {
    background-color: #e8f5e9;
    font-weight: bold;
    color: #2e7d32;
}

.dropdown-btn.categoria-activa {
    background-color: #e8f5e9;
    color: #2e7d32;
    font-weight: 500;
}

/* ===== FILTROS POR TIPO DE VENTA ===== */
.filtros-tipo-venta {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    border-top: 1px solid #dee2e6;
    padding: 12px 0;
    width: 100%;
    display: block;
}

.filtros-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.filtros-titulo {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
    white-space: nowrap;
}

.filtros-botones {
    display: flex;
    gap: 8px;
    /* Reducido de 10px */
}

.filtro-btn {
    padding: 6px 12px;
    /* Reducido de 8px 16px */
    border: 2px solid #4CAF50;
    background: white;
    color: #4CAF50;
    border-radius: 20px;
    font-size: 12px;
    /* Reducido de 14px */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: auto;
    flex-shrink: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filtro-btn svg {
    width: 16px;
    /* Reducido de 24px */
    height: 16px;
    margin-right: 4px;
    /* Reducido de 5px */
}

.filtro-btn:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

.filtro-btn.active {
    background: #4CAF50;
    color: white;
}

/* ✅ NUEVO: Estilos específicos para el botón de mensajes */
.filtro-btn.mensajes-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    /* ✅ No permitir que se encoja */
}

.filtro-btn.mensajes-btn:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px) scale(1.1);
}

/* Ocultar el contador cuando está vacío */
#contador-carrito:empty,
.contador-notificaciones:empty {
    display: none !important;
}

/* =========================================================
  RESPONSIVE - HEADER MÓVIL
  ========================================================= */

@media (max-width: 768px) {

    /* Header móvil - layout vertical */
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 10px 15px;
        gap: 10px;
    }

    .header-left {
        width: 100%;
        justify-content: space-between;
        order: 1;
    }

    .logo {
        margin-right: 0;
    }

    .logo-img {
        height: 40px;
    }

    /* Ocultar botón vender del HEADER en móvil (pero permitir el botón .vender-btn dentro de .mobile-top-controls) */
    .header .vender-btn {
        display: none !important;
    }

    .header-center {
        width: 100%;
        max-width: 100%;
        margin: 0;
        order: 3;
    }

    .search-input {
        padding: 12px 15px;
        font-size: 16px;
    }

    /* Dropdown de categorías visible en móvil (solo en header) */
    .header-center .categorias {
        display: block !important;
        width: 100%;
        margin: 10px 0 0 0;
        order: 4;
    }

    .dropdown-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
        background: #f8f9fa;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
    }

    .header-right {
        order: 2;
        justify-content: flex-end;
        width: 100%;
    }

    /* Ocultar elementos del header derecho en móvil */
    .header-right .menu-item,
    .header-right .user-profile-link .profile-text {
        display: none !important;
    }

    /* Mostrar solo íconos en móvil */
    .header-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .user-profile-link {
        margin: 0;
    }

    .user-avatar {
        width: 32px;
        height: 32px;
        margin-right: 0;
    }

    /* Filtros de tipo de venta - ajustes móvil */
    .filtros-tipo-venta {
        padding: 10px 0;
    }

    .filtros-container {
        padding: 0 15px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .filtros-botones {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
        /* Reducido de 8px */
    }

    .filtro-btn {
        flex: 1 1 auto;
        min-width: 0;
        text-align: center;
        padding: 6px 10px;
        /* Reducido de 8px 12px */
        font-size: 11px;
        /* Reducido de 12px */
        max-width: calc(33.333% - 6px);
    }

    .filtro-btn svg {
        width: 14px;
        /* Reducido para móvil */
        height: 14px;
        margin-right: 3px;
    }

    /* ✅ NUEVO: Estilos específicos para botón de mensajes en móvil */
    .filtro-btn.mensajes-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
        flex: 0 0 auto;
        /* ✅ No crecer ni encoger */
        /* order: 4; REMOVED to avoid conflict */
    }
}

/* ===== Mostrar/ocultar elementos entre Desktop y Móvil ===== */
/* El header mantiene todos sus items en desktop. En móvil ocultamos algunos elementos
     y mostramos el bloque `.mobile-top-controls` (añadido en index.html). */
@media (max-width: 768px) {

    /* Ocultar en el header los controles que queremos solo en desktop */
    .header .categorias {
        display: none !important;
    }

    .header-right .user-profile-link {
        display: none !important;
    }

    .header-right .notificacion-icono {
        display: none !important;
    }

    .header-right .icon {
        display: none !important;
    }

    .header .menu-item {
        display: none !important;
    }

    /* Reducir gaps en header para móvil */
    .header-container {
        padding: 8px 12px;
    }
}

/* Estilos para pantallas muy pequeñas */
@media (max-width: 480px) {
    .header-container {
        padding: 8px 10px;
    }

    .search-input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .logo-img {
        height: 35px;
    }

    .user-avatar {
        width: 28px;
        height: 28px;
    }

    .filtro-btn {
        padding: 5px 8px;
        /* Reducido de 6px 10px */
        font-size: 10px;
        /* Reducido de 11px */
        max-width: calc(50% - 6px);
    }

    .filtro-btn svg {
        width: 12px;
        /* Reducido para pantallas pequeñas */
        height: 12px;
        margin-right: 2px;
    }

    .filtro-btn.mensajes-btn {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    /* ✅ NUEVO: Reorganizar botones en pantallas muy pequeñas */
    .filtros-botones {
        gap: 5px;
        /* Reducido de 6px */
    }
}

/* Estilos de debug temporal */
.contador-carrito-mobile:empty {
    border: 2px solid red !important;
}

.user-avatar-mobile:not([has-img]) {
    background-color: #ffeb3b !important;
    color: #333 !important;
}

/* Floating label input styles for header search */
.form-control {
    position: relative;
    width: 100%;
}

.form-control input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    background: white;
}

.form-control input:focus {
    border-color: green;
}

.form-control label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #80868b;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 4px;
}

.form-control input:focus+label,
.form-control input:valid+label {
    transform: translateY(-40px) scale(0.8);
    color: green;
    background-color: #f4f4f4;
    padding: 0 4px;
}

.form-control .search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    padding: 8px;
}

/* Responsive adjustments for floating label input */
@media (max-width: 768px) {
    .form-control input {
        padding: 12px 15px;
        font-size: 16px;
    }

    .form-control label {
        font-size: 15px;
        left: 12px;
    }

    .filtros-container {
        padding: 0 15px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        /* ✅ CAMBIO: Reducir gap */
    }

    .filtros-titulo {
        font-size: 14px;
        /* ✅ CAMBIO: Título más pequeño */
        text-align: center;
    }
}

@media (max-width: 480px) {
    .form-control input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .form-control label {
        font-size: 14px;
        left: 10px;
    }
}

/* Estilos mejorados para el avatar */
.user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 12px;
}

.user-avatar[has-img] {
    border: 2px solid #e0e0e0;
}

.user-avatar:not([has-img]) {
    background-color: #3483fa;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-profile-link:hover .user-avatar {
    border-color: #3483fa;
}

.user-profile-link:hover .user-avatar:not([has-img]) {
    background-color: #2968c8;
}

/* Estilos para contador de notificaciones en desktop (header) */
.notificacion-icono {
    position: relative;
}

.contador-notificaciones {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    font-weight: bold;
    border: 2px solid white;
    z-index: 10;
}

.contador-notificaciones:not(:empty) {
    display: flex;
}