.product-block-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
}

.product-details {
    flex: 1;
}

.product-image {
    flex: 1;
    text-align: right;
}

.product-image img {
    max-width: 100%;
    max-height: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.product-description-opinion {
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #ddd; /* Add border to match product container */
    border-radius: 10px; /* Consistent with product container */
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
}

/* Purchase/Download Buttons */
.product-buttons-wrapper {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

/* Text for "Buy it here" */
.buy-it-here {
    margin-right: 20px; /* Space between text and buttons */
    font-family: "Abolition", sans-serif;
    font-size: 18px;
    color: #333;
}

.product-buttons {
    display: flex;
    gap: 10px; /* Space between each button */
}

.buy-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f07270;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: "Abolition", sans-serif;
    font-size: 22px;
}

.buy-button:hover {
    background-color: #e06161;
}

/* Headings */
h1, h2, h3 {
    font-family: "Abolition", sans-serif;
    color: #333;
}

/* --- MOBILE STYLES --- */
@media (max-width: 768px) {
    .product-block-container {
        flex-direction: column;
    }

    .product-image {
        text-align: center;
        margin-top: 20px;
    }

    /* Stack "Buy it here" and buttons vertically on mobile */
    .product-buttons-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-buttons {
        flex-direction: column;
        gap: 10px;
    }
}
