/* ================= ESTILOS EXCLUSIVOS DA LOJA (OTROS) ================= */
.store-page {
    background-color: white;
    padding: 60px 40px;
    border-radius: 0;
}

.store-main-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.store-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

/* ================= FILTROS DE CATEGORIA (ESTILO P&B) ================= */
.store-filters {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 15px; 
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #000000;
    color: #000000;
    padding: 10px 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 25px;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: #000000;
    color: white;
}

/* ================= GRADE DE PRODUTOS ================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card do Produto */
.product-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Caixa de Imagem (AQUI ESTAVA O PROBLEMA) */
.product-image-box {
    width: 100%;
    height: 250px; 
    background-color: #ffffff; /* MUDOU AQUI: De Preto (#000000) para Branco (#ffffff) */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px; /* Espaço para a imagem não colar na borda */
}

/* Imagem do Produto (Mantém ela inteira) */
.real-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Garante que a imagem apareça inteira, sem cortes */
    transition: transform 0.4s ease;
}

.product-card:hover .real-product-img {
    transform: scale(1.05); /* Zoom leve ao passar o mouse */
}

/* Informações do Produto */
.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 20px;
    font-weight: 800;
    color: #000000; 
    margin-bottom: 10px;
}

.product-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Linha de Preço e Botão */
.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.product-price {
    font-size: 22px;
    font-weight: 800;
    color: #333;
}

/* Botão de Comprar */
.btn-add-cart {
    background-color: #000000;
    color: white;
    border: 2px solid #000000;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-add-cart:hover {
    background-color: #111111;
    color: #00d9ff;
    transform: translateY(-2px);
}

.btn-add-cart i {
    font-size: 16px;
}