/* ==========================================
   HEADER PRODUTO - MODERNO
========================================== */

.produto-header{
    width:auto;
    background:#18191a;
    border-bottom:1px solid #303136;
    padding:14px 20px;
    position:sticky;
    top:0;
    z-index:1000;
}

/* container */
.produto-header-container{
    max-width:1400px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* ==========================================
   LADO ESQUERDO (LOGO)
========================================== */

.produto-header-left{
    display:flex;
    align-items:center;
}

.produto-logo-link{
    display:flex;
    align-items:center;
}

.produto-logo{
    width:150px;
    height:auto;
    object-fit:contain;
    transition:.2s ease;
}

.produto-logo:hover{
    opacity:.85;
}

/* ==========================================
   LADO DIREITO
========================================== */

.produto-header-right{
    display:flex;
    align-items:center;
    gap:16px;
}

/* ==========================================
   BLOCO VENDEDOR
========================================== */

.produto-vendedor{
    display:flex;
    align-items:center;
    gap:12px;
    background:#242526;
    border:1px solid #303136;
    padding:8px 12px;
    border-radius:12px;
}

/* avatar */
.produto-avatar{
    width:52px;
    height:52px;
    min-width:52px;
    min-height:52px;
    border-radius:50%;
    overflow:hidden;
    background:#2374e1;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;
    border:2px solid #303136;
}

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

/* info */
.produto-vendedor-info{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:2px;
    min-width:0;
}

.produto-vendedor-label{
    font-size:11px;
    color:#b0b3b8;
    line-height:1;
}

.produto-vendedor-nome{
    font-size:14px;
    font-weight:700;
    color:#fff;
    display:flex;
    align-items:center;
    gap:6px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

/* badge plus */
.produto-badge-plus{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:2px 6px;
    border-radius:20px;
    background:#3d2f00;
    color:#ffd700;
    font-size:9px;
    font-weight:800;
    letter-spacing:.3px;
}

/* ==========================================
   BOTÃO VER MAIS
========================================== */

.produto-btn-anuncios{
    background:#2374e1;
    color:#fff;
    padding:10px 14px;
    border-radius:10px;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
    transition:.2s ease;
    white-space:nowrap;
}

.produto-btn-anuncios:hover{
    background:#1b66ca;
    transform:translateY(-1px);
}

/* ==========================================
   RESPONSIVO
========================================== */

@media (max-width:768px){

    .produto-header{
        padding:12px 14px;
    }

    .produto-logo{
        width:130px;
    }

    .produto-vendedor{
        padding:6px 10px;
    }

    .produto-avatar{
        width:46px;
        height:46px;
        min-width:46px;
        min-height:46px;
        font-size:18px;
    }

    .produto-vendedor-nome{
        font-size:13px;
    }

    .produto-btn-anuncios{
        padding:9px 12px;
        font-size:12px;
    }
}

/* mobile */
@media (max-width:576px){

    .produto-header-container{
        flex-direction:column;
        align-items:stretch;
        gap:10px;
    }

    .produto-header-right{
        justify-content:space-between;
        width:100%;
    }

    .produto-vendedor{
        flex:1;
    }

    .produto-btn-anuncios{
        flex-shrink:0;
    }
}