/* TZ Single Product Priority Layout */
.tz-single-product-page {
    width: min(1200px, calc(100% - 32px));
    margin: 40px auto;
}

.tz-product-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 48px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 100% !important;
}

.tz-product-gallery-col,
.tz-product-summary-col {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: none !important;
}

.tz-product-gallery-col .woocommerce-product-gallery {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}

.tz-product-summary-col .product_title {
    margin: 0 0 16px !important;
}

.tz-product-summary-col .price {
    display: block;
    margin: 0 0 18px !important;
    font-size: 1.35rem;
    font-weight: 700;
}

.tz-product-summary-col .woocommerce-product-details__short-description {
    margin: 0 0 24px !important;
}

.tz-product-summary-col form.cart {
    margin-top: 24px !important;
}

.tz-product-summary-col .single_add_to_cart_button {
    cursor: pointer;
}

@media (max-width: 768px) {
    .tz-single-product-page {
        width: min(100% - 24px, 1200px);
        margin: 24px auto;
    }

    .tz-product-layout {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
}
