.wd-woo-product-hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.wd-woo-product-hero-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wd-woo-product-hero-image-wrapper {
    padding: 0 2rem;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center
}

.wd-woo-product-hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.wd-woo-product-hero-title {
    width: 100%;
    text-align: center;
    display: block;
}

/* Mobile Layout */
@media (max-width: 767px) {
    .wd-woo-product-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .wd-woo-product-hero-info {
        width: 100%;
        align-items: center;
    }

    .wd-woo-product-hero-image-wrapper {
        width: 100%;
    }
}

/* Price and Cart Button specific styling */
.wd-woo-product-hero-price-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1.5rem;
    margin-top: 1rem;
}

.wd-woo-product-hero-price {
    font-weight: bold;
    font-size: 1.25rem;
    color: #e57e25;
    /* Fallback highlight color */
}

.wd-woo-product-hero-add-to-cart .button {
    background-color: #e57e25;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: bold;
    text-decoration: none !important;
    transition: background-color 0.3s ease;
    cursor: pointer;
    box-shadow: none !important;
}

/* Hide the "View Cart" link that appears after AJAX add */
.wd-woo-product-hero-add-to-cart .added_to_cart {
    display: none !important;
}

.wd-woo-product-hero-add-to-cart .button:hover {
    background-color: #d46b10;
}

/* Mobile Price/Cart adjustment */
@media (max-width: 767px) {
    .wd-woo-product-hero-price-cart {
        flex-direction: row;
        /* Keep them side-by-side on mobile as requested or stacked? Image suggests side-by-side or stacked depending on width. Let's stick to flex row but centered. */
        justify-content: space-between;
        width: 100%;
    }
}