.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top:40px;
}

.title {
    text-align: center;
    margin: 20px 0 40px 0;
    font-size: 24px;
}


.content {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.box {
    background-color: var(--card-background);
    border: 2px solid var(--card-border-color);
    border-radius: 15px;
    width: auto;
    width: 23%;
    max-width: 400px;
    min-width: 250px;
    text-align: center;
    margin: 10px 5px;
    cursor: pointer !important;
}

.box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.box p {
    text-align: left;
    padding: 0 15px;
}

.prod-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding-right: 15px;
}

.box p.prod-title {
    font-weight: bold;
}

.prod-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-bottom: 1em;
    color: var(--card-border-color);
    pointer-events: none;
}

.prod-labels {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
    flex: 1;
}

.box p.prod-label {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.7rem;
}