.preview-tag {
    background: #d9c4eb;
    color: #9e4f99;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 500;
}

.preview-badge {
    background: #fad9cc;
    color: #7a3f2a;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    width: 120px;
}

.produtos-wrapper {
    display: flex;
    gap: 24px;
    padding: 24px 16px;
    align-items: flex-start;
}

.filtros-sidebar {
    width: 200px;
    min-width: 200px;
    background: white;
    border-radius: 16px;
    border: 1.5px solid #f0eaef;
    padding: 16px;
    position: sticky;
    top: 150px;
}

.filtros-titulo {
    font-size: 1rem;
    font-weight: 600;
    color: #9e4f99;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #f0eaef;
}

.filtros-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filtro-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.filtro-item:hover {
    background-color: #f0eaef;
}

.filtro-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1.5px solid #bfb0be;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.15s;
    position: relative;
}

.filtro-item input[type="checkbox"]:checked {
    background-color: #c677c1;
    border-color: #c677c1;
}

.filtro-item input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.filtro-item label {
    font-size: 0.82rem;
    color: #454343;
    cursor: pointer;
    user-select: none;
}

.produtos-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.produto-card {
    background: white;
    border-radius: 16px;
    border: 1.5px solid #f0eaef;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.produto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(198, 119, 193, 0.15);
}

.produto-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f0eaef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bfb0be;
    font-size: 2rem;
}

.produto-footer {
    background-color: #f0eaef;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.produto-nome {
    font-size: 0.82rem;
    font-weight: 600;
    color: #454343;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.produto-categoria {
    font-size: 0.72rem;
    color: #bfb0be;
}
.produto-preco{
    font-size: 0.9rem;
    color:#000000;
}

@media (max-width: 1100px) {
    .produtos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .produtos-wrapper {
        flex-direction: column;
    }

    .filtros-sidebar {
        width: 100%;
        min-width: unset;
        position: static;
    }

    .filtros-lista {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .filtro-item {
        background-color: #f0eaef;
        border-radius: 20px;
        padding: 4px 12px;
    }

    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}