/* --- PRODUCT LP IMAGES LAYOUT --- */

/* Centers the landing page container to your site standard width */
.product-lp-full-width {
    max-width: 1000px;
    margin: 50px auto !important;
    /* Spacing between top info and related items */
    line-height: 0;
    /* Kills any unwanted gaps or lines between stacked images */
    clear: both;
}

/* Image resets to ensure full responsiveness */
.product-lp-full-width img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

/* Adds soft spacing above the Related Products section */
section.related.products {
    clear: both;
    padding-top: 40px !important;
}

/* Remove default paragraph margins inside the LP container */
.product-lp-full-width p {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}


/* Custom utility spacer for your team */
.product-lp-spacer {
    display: block !important;
    clear: both !important;
    width: 100% !important;
    height: 30px !important; /* Adjust this number to change the gap thickness */
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
}


img {
   
    border-radius: unset !important;
}













/* --- Single Product Summary Layout Reflow --- */

/* 1. Turn the summary column into a flex container and stack items vertically */
.woocommerce-div.product .summary.entry-summary,
.site-main div.product .summary {
    display: flex !important;
    flex-direction: column !important;
}

/* 2. Force the Add to Cart block to move up to position 3 */
.site-main div.product form.cart {
    order: 3 !important;
    margin-bottom: 25px !important;
}

/* 3. Force the Full Text block to move down below the cart button to position 4 */
.site-main div.product .woocommerce-product-details__short-description {
    order: 4 !important;
    margin-top: 15px !important;
    padding-top: 20px !important;
    border-top: 1px solid #EAEAEA; /* Clean divider line above text */
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: #444444 !important;
}

/* 4. Ensure the Meta details (SKU, Category) stay at the very bottom */
.site-main div.product .product_meta {
    order: 5 !important;
}









