.products_title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20pt;
    font-family: "Vollda", sans-serif;
    color: var(--text-color-primary)
}

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product {
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    color: var(--text-color-primary);
    transition: transform 0.2s;
}

.product img {
    width: 100%;
    border-radius: 8px;
}

.product p {
    margin-top: 10px;
    font-weight: bold;
    font-size: 14pt;
}

.product:hover {
    transform: scale(1.05);
    color: var(--color-highlight);
}

.discount {
    margin-top: -5%;
    color: var(--text-color-discount);
    font-weight: bold;
    white-space: nowrap;
}