#content {
    align-items: flex-start;
    flex-direction: column;
    padding: 1vh 0.5vw;
    width: 80%;
}

.product-info {
    width: 100%;
    min-height: 60vh;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.sliding-image {
    width: 400px !important;
    height: 400px !important;
    overflow: hidden;
    position: relative;
    display: inline-block;
    border: 3px solid white;
}

.image-container {
    display: flex;
    transition: transform 1s ease-in-out;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
}
.product-details h1 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1vh;
}
form.dodaj p.price {
    font-size: 1.5rem;
    font-weight: 500;
    color: #00aeff;
    margin-bottom: 1vh;
}
form.dodaj p.description {
    font-size: 90%;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2vh;
}

.product-info form.dodaj {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 60vh;
}

form.dodaj button {
    width: 30%;
    height: 6vh;
    font-size: 1.2rem;
    padding: 1vh 0.5vw;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease-in-out;
}

form.dodaj button:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

@media only screen and (max-width: 950px) {
    .product-info {
        flex-direction: column;
        align-items: center;
    }

    .product-details {
        width: 100%;
        text-align: center;
    }

    .product-details h1 {
        font-size: 1.5rem;
    }

    form.dodaj {
        width: 100% !important;
        align-items: center !important;
        height: auto !important;
    }

    form.dodaj button {
        width: 80%;
    }
}