#productContainer .carousel-container {
    height: 100vh;
    /* vagy bármennyi elérhető hely */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#productContainer .carousel-inner {
    margin: 0 auto;
    height: 300px;
    width: 300px;
}

@media (min-width: 992px) {
    /* ide jön, amit csak lg és afölött akarsz */
    #productContainer .carousel-inner {
        height: 400px;
        width: 400px;
        margin: 0 auto;
    }
}

#productContainer .carousel-image-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

#productContainer .carousel-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.product-title {
    color: #000;
    font-size: 32px;
    font-family: "HuntorHeading";
    text-align: center;
}