/* HERO */
.hero {
    height: 80vh;
    background: url('../imagens/hero.jpg') center/cover no-repeat;
}

/* Categorias */
.category-box {
    background: #fff;
    border: 2px solid #f8f0e8;
    transition: .3s;
}
.category-box:hover {
    background: #ffeccc;
    cursor: pointer;
}

/* Cards */
.product img {
    height: 220px;
    object-fit: cover;
}
.card.product {
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s;
}
.card.product:hover {
    transform: scale(1.03);
}


/* Carrinho */

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.25); }
        100% { transform: scale(1); }
    }

    .cart-badge {
        animation: pulse 1.6s infinite ease-in-out;
        background:#f97316 !important;
    }

    .cart-btn:hover {
        color: #f97316 !important;
        transform: scale(1.1);
        transition: 0.2s;
    }

    .dropdown-cart {
        width: 300px;
        max-height: 350px;
        overflow-y: auto;
        border-radius: 12px;
    }


    .btn-orange {
    background: #c75b12;
    color: #fff;
    border-radius: 10px;
}
.btn-orange:hover {
    background: #a0520e;
}
.card .border-bottom { border-bottom: 1px solid #eee; }



/* Footer */
.footer {
    background: #1a1a1a;
}
.footer-link {
    color: #ccc;
    text-decoration: none;
}
.footer-link:hover {
    color: #fff;
}

/* Estilo quando o campo de pesquisa está expandido */
    .search-open {
        width: 200px !important;
        opacity: 1 !important;
    }
