/* ==========================================
   ECOLIVROS - UI PRODUTO FINAL ESTÁVEL
========================================== */


/* ==========================================
   PREÇO
========================================== */

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-size: 30px;
    font-weight: 700;
    color: #1e7e34;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 20px;
    background: #f3f9f4;
    padding: 12px 18px;
    border-radius: 10px;
}

/* Remove fundo se preço não tiver texto */

.woocommerce div.product .price:empty {
    display: none !important;
}

.woocommerce div.product .price span:empty {
    display: none !important;
}


/* ==========================================
   STOCK (MESMO ESTILO DO PREÇO)
========================================== */

.ecolivros-stock-badge {
    font-size: 16px;
    font-weight: 600;
    color: #155724;
    background: #f3f9f4;
    padding: 12px 18px;
    border-radius: 10px;
    display: inline-block;
}


/* ==========================================
   ESCONDER STOCK EXTRA DO TEMA
========================================== */

.stock,
.woocommerce div.product .stock,
.woocommerce div.product p.stock {
    display: none !important;
}


/* ==========================================
   ESPAÇO ENTRE PAINÉIS E BOTÃO
========================================== */

.woocommerce div.product form.cart {
    margin-top: 35px;
}


/* ==========================================
   BOTÃO ADICIONAR AO CARRINHO (FLEX FIXO)
========================================== */

.single_add_to_cart_button {
    background-color: #1e7e34 !important;
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    padding: 18px 32px !important;
    border-radius: 12px !important;
    text-transform: uppercase;
    width: 100% !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    border: none !important;

    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 14px;
}


/* Hover */

.single_add_to_cart_button:hover {
    background-color: #155d27 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}


/* ==========================================
   ÍCONE SVG (DESKTOP 44px)
========================================== */

.single_add_to_cart_button::before {
    content: "";
    width: 44px;
    height: 44px;
    background-image: url("../icons/carrinho.svg");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    flex-shrink: 0;
}


/* ==========================================
   RESPONSIVO MOBILE
========================================== */

@media (max-width: 768px) {

    .woocommerce div.product p.price,
    .woocommerce div.product span.price {
        font-size: 24px;
    }

    .single_add_to_cart_button {
        font-size: 16px !important;
        padding: 16px 20px !important;
        gap: 10px;
    }

    .single_add_to_cart_button::before {
        width: 24px;
        height: 24px;
    }
}

/* ==========================================
   ESGOTADO (VERMELHO)
========================================== */

.ecolivros-outofstock-badge {
    font-size: 16px;
    font-weight: 700;
    color: #842029;
    background: #f8d7da;
    padding: 12px 18px;
    border-radius: 10px;
    display: inline-block;
}


/* ==========================================
   BLOCO SUGESTÃO ALTERNATIVA CASO ESGOTADO
========================================== */

.ecolivros-alternative {
    margin-top: 25px;
    padding: 18px;
    background: #f8f9fa;
    border-left: 4px solid #1e7e34;
    border-radius: 8px;
    font-size: 15px;
}

.ecolivros-alt-link {
    font-weight: 600;
    color: #1e7e34;
    text-decoration: none;
}

.ecolivros-alt-link:hover {
    text-decoration: underline;
}
/* ==========================================
   BLOCO MESMO AUTOR
========================================== */

.ecolivros-mesmo-autor {
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.ecolivros-mesmo-autor h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.ecolivros-mesmo-autor ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ecolivros-mesmo-autor li {
    margin-bottom: 8px;
}

.ecolivros-mesmo-autor a {
    text-decoration: none;
    font-weight: 600;
    color: #1e7e34;
}

.ecolivros-mesmo-autor a:hover {
    text-decoration: underline;
}