.container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-top: 13%;
    gap: 5%;
}

.image-container {
    height: auto;
    width: 50%;
    margin-top: 15%;
}

.main-image {
    width: 100%;
    margin-bottom: 20px;
}

.thumbnails {
    display: flex;
    justify-content: start;
    gap: 10px;
}

.thumbnail {
    width: 100px;
    cursor: pointer;
    transition: border-color 0.3s, transform 0.3s;
}

.thumbnail:hover {
    border-color: #666;
    transform: scale(1.1);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #f2e5e5;
}

.quantity-buttons {
    display: flex;
    align-items: center;
}

#quantity-input {
    width: 50px;
    text-align: center;
    font-size: 16px;
    -moz-appearance: textfield;
    margin: 0;
}

.btn {
    background-color: rgba(206, 206, 206, 1);
    color: #000000;
    border: none;
    font-size: 25px;
    cursor: pointer;
    width: 50px;
    height: 55px;
}

.btn:hover {
    background-color: #9b9b9b;
}


#quantity-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 1rem;
    -moz-appearance: textfield;
}

#quantity-input::-webkit-outer-spin-button,
#quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.button-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10%;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: auto;
}

.paragraph-container {
    margin-bottom: 30px;
}

.right-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    height: auto;
    margin-top: 15%;
}

.product-item {
    width: 100%;
    height: auto;
    flex: 1 1 20%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


.product-item-content {
    display: flex;
    justify-content: flex-start;
    margin-top: -15px;
    box-sizing: border-box;
    width: 100%;
    word-wrap: break-word;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
    gap: 20px;
    margin-bottom: 5%;
    overflow: hidden;
}

.content-alignment {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
    gap: 50px;
    margin-bottom: 100px;
}

.font-body h1,
h1.font-body {
    display: flex;
    justify-content: center;
    margin: 5% 0;

}

.font-body h6,
h6.font-body {
    font-size: clamp(16px, 3vw, 20px);
    margin: 0;
    font-weight: 400;
}


.line {
    width: 100%;
    height: 1px;
    background-color: white;
}


.font-body {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
}

.font-body .price {
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 650;
}

.font-body .tax {
    font-size: clamp(18px, 3.5vw, 22px);
    font-weight: 300;
}

@media screen and (max-width:1024px) {

    .container {
        display: flex;
        flex-direction: column;
        margin-top: 10%;
    }

    .right-container {
        width: 100%;
        margin-top: 5%;
    }

    .text-container {
        width: 100%;
    }

    .image-container {
        width: 100%;
        margin-top: 10%
    }

    .quantity-control {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        color: #f2e5e5;
        margin-top: 30px;
    }

    .quantity-buttons {}
}

@media screen and (max-width:800px) {
    .image-container {
        width: 100%;
        margin-top: 18%
    }

    .content-alignment {
        margin-bottom: 50px;
    }
}