@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --cor-primaria: #c22d45;
    /* vermelho */
    --cor-secundaria: #600000;
    /* bordô */
    --cor-destaque: #b87b7d;
    /* rosa claro */
    --cor-texto-suave: #9e7b64;
    /* bege claro */
    --cor-fundo-claro: #ffffff;
    /* branco */
    --header-height: 60px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cor-fundo-claro);
}

.menu-item {
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.sidebar {
    transition: transform 0.3s ease;
}

.category-btn.active {
    background-color: var(--cor-secundaria);
    color: var(--cor-fundo-claro);
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--cor-secundaria);
    color: var(--cor-fundo-claro);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.fornada-timer {
    background: linear-gradient(135deg, #FEE2D7, #F7C7B3);
}

.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#product-modal .product-image-container{
    height: 160px;
}

.product-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}