.page-container {
    display: flex;
    min-height: 100vh;
}

.image-section {
    flex: 1;
    display: inline-block;
    margin-left: 4.5rem;
}

.image-section img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 0px;
}

.info-section {
    font-family: "Newsreader", sans-serif;
    flex: 0.7;
    padding: 40px;
    position: sticky;
    display: inline-block;
    top: 80%;
    height: fit-content;
    background-color: white;
}

.brand {
    font-size: 14px;
    color: #888;
    margin-bottom: 26px;
}

.title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}

.desc {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.price {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}


.info-section button {
    font-family: "Newsreader", sans-serif;
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    color: black;
    background: #fff;
    border: 1px solid #000;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.info-section button:hover {
    color: #fff;
    background: black;
}

@media (max-width: 768px) {
.page-container {
flex-direction: column;
}
.image-section {
    margin-left: 0;
}
.image-section img {
    margin-bottom: 0px;
}

}