/* ======================================================
   CARD – ESTRUTURA GERAL
====================================================== */
.featured__item {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.featured__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* ======================================================
   IMAGEM DO PRODUTO
====================================================== */
.featured__item__pic {
    position: relative;

    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    height: 180px;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* ======================================================
   TEXTO DO CARD
====================================================== */

.featured__item__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    min-height: 180px;
}

.preco-box{
    min-height: 60px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

/* ======================================================
   NOME DO PRODUTO (2 LINHAS + …)
====================================================== */
.featured__item__text h6 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;
    text-overflow: ellipsis;

    line-height: 1.4em;
    height: 2.8em;

    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* ======================================================
   BOTÃO
====================================================== */
.btn-produto {
    padding: 5px 25px;
    background: linear-gradient(135deg, #3470F3, #2458d6);
    color: #fff;
    border-radius: 9px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #ccc;

    display: inline-block;
    margin-top: auto;
    white-space: nowrap;
}

.btn-produto:hover {
   background: #1557f0;
    border-color: #7c7c7c;
}

#btn_ver_produto {
    position: relative;
    border-color: white;
    top: 2px;
    padding-top: 0px;
    height: 40px;
    width: 250px;
    color: white;
    background: linear-gradient(135deg, #3470F3, #2458d6);
    border-radius: 9px;
    border: solid 2px rgb(236, 236, 236);
	font-weight: bold;
	font-size: 20px;

}
#btn_ver_produto:hover {
    background: #1557f0;
	color: white; /* muda a cor do texto para amarelo claro */
    cursor: pointer; /* muda o cursor para apontar que é clicável */
	border: solid 3px #7c7c7c;
	border-radius: 9px;
}

/*------------------------------------------------------------------*/
.product__pagination{
    text-align: center;
    margin-top: 40px;
}

/* Botões padrão */
.product__pagination a{
    display: inline-block;
    min-width: 42px;
    height: 42px;
    line-height: 42px;
    margin: 5px;
    border-radius: 10px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    color: #374151;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Hover */
.product__pagination a:hover{
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
    transform: translateY(-2px);
}

/* Página ativa */
.product__pagination a.bg-primary{
    background: linear-gradient(135deg,#2563eb,#1e40af);
    border: none;
    color: white;
    font-weight: bold;
    box-shadow: 0 6px 14px rgba(37,99,235,0.4);
}

/*------------------------------------------------------------------*/
.price-badge{
    position:absolute;
    top:5px;
    right:5px;

    background:#ff4d4d;
    color:#fff;

    font-size:14px;
    font-weight:700;

    padding:5px 10px;
    border-radius:20px;

    z-index:10;
}

.preco-antigo{
    color:#999;
    text-decoration:line-through;
    font-size:12px;
    margin:0;
}

.preco-promocao{
    color:#000;
    font-size:18px;
    font-weight:700;
    margin-top:2px;
}
#bloco_descricao .nav-item{
    margin-bottom:10px;
}