/* ---------------------------------------------------- */
/* Base e Tipografia */
/* ---------------------------------------------------- */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

/* ---------------------------------------------------- */
/* Cabeçalho */
/* ---------------------------------------------------- */
.header-store {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 3px solid #ddd;
    /*border-bottom: 3px solid #0d6efd; /* Azul Primário */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.store-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10%;
    border: 4px solid #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    margin-right: 15px;
}

/* ---------------------------------------------------- */
/* Produtos e Filtros */
/* ---------------------------------------------------- */
.product-card {
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    border: none;
    cursor: pointer;
    height: 100%; /* Garante altura uniforme */
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.product-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}
.product-card .card-body {
    flex-grow: 1; /* Permite que o corpo cresça para preencher o espaço */
}
.filter-button {
    border-radius: 50rem;
    margin-right: 8px;
    margin-bottom: 8px;
}
.filter-button.active {
    background-color: #0d6efd;
    color: white;
}

/* ---------------------------------------------------- */
/* Rodapé */
/* ---------------------------------------------------- */
.footer-store a {
    color: #adb5bd; /* Cinza claro */
    transition: color 0.3s;
}
.footer-store a:hover {
    color: #fff;
}
.footer-store .fs-4 {
    transition: color 0.3s, transform 0.3s;
}
.footer-store .fs-4:hover {
    color: #25d366 !important; /* Verde WhatsApp */
    transform: scale(1.1);
}

/* ---------------------------------------------------- */
/* Botões Flutuantes (WhatsApp e Carrinho) */
/* ---------------------------------------------------- */
.whatsapp-button, .cart-button {
    position: fixed;
    z-index: 1000;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}

.whatsapp-button {
    bottom: 20px;
    right: 20px;
    background-color: #25d366; /* WhatsApp Green */
}
.whatsapp-button:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}

.cart-button {
    bottom: 85px; /* Acima do WhatsApp */
    right: 20px;
    background-color: #4287f5; /* Azul */
    /*background-color: #dc3545; /* Vermelho/Danger para destaque */
}
.cart-button:hover {
    background-color: #3064b8;
    /*background-color: #c82333; */
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.7rem;
    padding: 0.3em 0.5em;
}

/* ---------------------------------------------------- */
/* Estilo do Carrinho (Modal) */
/* ---------------------------------------------------- */
.cart-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    align-items: center;
}
.cart-item:last-child {
    border-bottom: none;
}
.cart-item-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 0.5rem;
}
.quantity-control button {
    width: 30px;
    height: 30px;
    line-height: 1;
    padding: 0;
}
.quantity-control input {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
}
.cart-remove-btn {
    color: #dc3545;
    background: none;
    border: none;
    font-size: 1.2rem;
    padding: 0;
}

/* Estilo para a finalização (opcional) */
#checkoutForm {
    padding: 1rem;
    border: 1px dashed #0d6efd;
    border-radius: 0.5rem;
    background-color: #f7faff;
}
