.egyedi-termekek-container {
    display: grid;
    gap: 30px;
        font-family: "Urbanist", Sans-serif;
    justify-content: center;
}

.egyedi-termek {
    width: 100%;
    background: #e3d9e1;
    display: flex;
    flex-direction: column;
}

.termek-kep img {
    width: 100%;
    height: 450px;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.termek-info {
    text-align: center;
    background-color: #ffffff;
    padding: 15px;
    display: flex;
    flex-direction: column;

}

a.tovabbi-info-link {
    color: #636363;
    margin-top: 13px;
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
}

.termek-nev {
    font-family: "Urbanist", Sans-serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 30px;
    color: #131313;
    margin-bottom: 3px;
}

.termek-ar {
    font-size: 16px;
    font-weight: 800;
    color: #131313;
    margin-bottom: 25px;
}

.termek-ar .eredeti-ar {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    display: block;
}

.termek-ar .akcios-ar {
    font-size: 20px;
    color: #d60a0a;
    font-weight: bold;
}

.kosarba-gomb .button {
      background-color: #824e8b;
    color: #fff;
    font-family: "Urbanist", Sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    font-size: 15px;
    width: 100%;
    height: 45px;
    display: flex
;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.kosarba-gomb .button:hover {
    background-color: #008c86;
}

.egyedi-termekek-container.oszlopok-1 {
    grid-template-columns: 1fr;
}

.egyedi-termekek-container.oszlopok-2 {
    grid-template-columns: repeat(2, 1fr);
}

.egyedi-termekek-container.oszlopok-3 {
    grid-template-columns: repeat(3, 1fr);
}

.egyedi-termekek-container.oszlopok-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 767px) {
    .egyedi-termekek-container.oszlopok-2,
    .egyedi-termekek-container.oszlopok-3,
    .egyedi-termekek-container.oszlopok-4 {
        grid-template-columns: 1fr;
    }
}