/* Global styles for paragraphs and lists */
p, ul, li {
    font-family: Arial, sans-serif;
    font-size: 17px; /* Consistent font size */
    line-height: 1.2; /* Consistent line spacing */
    color: #333;
    margin: 0 0 10px; /* Consistent spacing */
    padding: 0;
}

ul {
    padding-left: 20px; /* Indent lists */
}

li {
    list-style-type: disc; /* Use bullet points */
}

/* Main container for product page */
.product-page {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 100px);
    padding: 20px;
    overflow: hidden;
    box-sizing: border-box;
}

/* Fixed image panel */
.image-panel {
    flex: 1;
    max-width: 50%;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    padding-right: 20px;
    height: calc(100vh - 140px);
    box-sizing: border-box;
    overflow: hidden;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

/* Scrollable info panel */
.info-panel {
    flex: 1;
    max-width: 50%;
    overflow-y: auto;
    padding-left: 40px;
    box-sizing: border-box;
    height: calc(100vh - 140px);
}

.product-info {
    padding-bottom: 20px;
}

.product-title {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}

.category {
    font-size: 16px;
    color: #888;
    margin-top: 10px;
}

.product-price {
    font-size: 28px;
    color: black;
    margin-top: 15px;
}

.product-description {
    font-size: 17px;
    margin-top: 15px;
    line-height: 1.2;
}

.buy-button {
    padding: 15px 30px;
    font-size: 17px;
    background-color: #e74c3c;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.buy-button:hover {
    background-color: #c0392b;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    p, ul, li {
        font-size: 16px; /* Adjust for smaller screens */
        line-height: 1.3;
    }

    .product-page {
        flex-direction: column;
        height: auto;
        padding-bottom: 20px;
    }

    .image-panel {
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .info-panel {
        max-width: 100%;
        padding: 0 20px;
    }

    .product-title {
        font-size: 28px;
        margin-top: 20px;
    }

    .product-price {
        font-size: 24px;
    }

    .product-description {
        font-size: 16px;
    }

    .buy-button {
        font-size: 16px;
        padding: 12px 25px;
    }
}
