/* ==========================================================================
   LEXORA CUSTOM FIXES - Shop & Single Product Page
   ========================================================================== */

/* ==========================================================================
   1. SHOP PAGE - Product Image Fixes
   ========================================================================== */

/* Remove gray background from product images */
.woocommerce-product-header {
    background-color: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    min-height: auto !important;
    max-height: none !important;
}
.woocommerce-product-header a {
    display: block !important;
}
.woocommerce-product-header img {
    width: 100% !important;
    max-width: 100% !important;
    max-height: none !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 12px !important;
}

/* ==========================================================================
   2. SHOP PAGE - Add to Cart Icon for All Product Types
   ========================================================================== */

.woocommerce-add-to-cart a.button:before,
.woocommerce-add-to-cart a.button.product_type_bundle:before,
.woocommerce-add-to-cart a.button.product_type_grouped:before,
.woocommerce-add-to-cart a.button.product_type_variable:before,
.woocommerce-add-to-cart a.button.product_type_external:before {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    content: "\f07a" !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* ==========================================================================
   3. SINGLE PRODUCT - Gallery (Image Area) Fix
   ========================================================================== */

/* Remove gray background from gallery viewport */
.single-product .woocommerce-gallery-inner .flex-viewport,
.single-product .woocommerce-gallery-inner .flex-viewport {
    min-height: auto !important;
    background-color: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid #e8e8e8 !important;
    overflow: hidden !important;
}

/* Gallery wrapper - remove fixed height, let image fill naturally */
.single-product .woocommerce-product-gallery__wrapper,
.single-product div.product .woocommerce-product-gallery__wrapper {
    height: auto !important;
    display: block !important;
    align-items: initial !important;
    transform: none !important;
}

/* Gallery image - ALWAYS full size, no zoom/shrink */
.single-product .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image,
.single-product .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a {
    display: block !important;
    width: 100% !important;
}
.single-product .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img,
.single-product .woocommerce-product-gallery__wrapper .zoomimg {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: cover !important;
    background-color: #fafafa !important;
    transform: none !important;
}

/* Disable WooCommerce zoom behavior completely */
.single-product .woocommerce-product-gallery--with-images .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a {
    pointer-events: none !important;
    cursor: default !important;
}
.single-product .woocommerce-product-gallery .zoomImg,
.single-product .woocommerce-product-gallery .zoomimg {
    display: none !important;
}

/* Gallery container */
.single-product .woocommerce-product-gallery {
    margin-bottom: 30px !important;
}

/* Hide zoom trigger icon */
.single-product .woocommerce-product-gallery__trigger {
    display: none !important;
}

/* Gallery column spacing */
.single-product .woocommerce-gallery {
    padding-right: 25px !important;
}

/* ==========================================================================
   4. SINGLE PRODUCT - Summary (Right Side) Styling
   ========================================================================== */

/* Product Title */
.single-product .product_title,
.single-product .woocommerce-sg-product-title .product_title {
    font-size: 30px !important;
    font-weight: 700 !important;
    color: var(--secondary-color) !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
}

/* Price */
.single-product .woocommerce-sg-product-price .price,
.single-product .entry-summary .price {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    margin-bottom: 20px !important;
}
.single-product .woocommerce-sg-product-price .price del {
    opacity: 0.5 !important;
    font-size: 20px !important;
}
.single-product .woocommerce-sg-product-price .price ins {
    text-decoration: none !important;
}

/* Short Description / Excerpt */
.single-product .woocommerce-sg-product-excerpt,
.single-product .woocommerce-product-details__short-description {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #555 !important;
    margin-bottom: 25px !important;
}

/* ==========================================================================
   5. SINGLE PRODUCT - Quantity & Add to Cart
   ========================================================================== */

/* Quantity Label */
.single-product .quantity-label {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    color: var(--secondary-color) !important;
}

/* Cart form layout */
.single-product div.product form.cart {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 25px !important;
}

/* Quantity input wrapper */
.single-product div.product form.cart .quantity {
    margin-right: 5px !important;
}

/* Quantity input */
.single-product div.product form.cart .quantity .qty,
.single-product div.product form.cart .quantity input[type="number"] {
    width: 100px !important;
    height: 55px !important;
    text-align: center !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 10px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    background: #fff !important;
    padding: 0 10px !important;
    -moz-appearance: textfield !important;
}

/* +/- buttons if present */
.single-product div.product form.cart .quantity .minus,
.single-product div.product form.cart .quantity .plus {
    width: 36px !important;
    height: 36px !important;
    font-size: 18px !important;
    line-height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.single-product div.product form.cart .quantity input::-webkit-outer-spin-button,
.single-product div.product form.cart .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

/* Add to Cart Button */
.single-product .entry-summary .single_add_to_cart_button {
    height: 55px !important;
    line-height: 55px !important;
    padding: 0 30px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-transform: capitalize !important;
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
    border: none !important;
}
.single-product .entry-summary .single_add_to_cart_button:hover {
    background-color: var(--primary-color) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}
.single-product .entry-summary .single_add_to_cart_button i {
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    border-radius: 8px !important;
    background-color: rgba(255,255,255,0.2) !important;
    margin-left: 15px !important;
}

/* ==========================================================================
   6. SINGLE PRODUCT - Info Product / Meta
   ========================================================================== */

.single-product .woocommerce-sg-product-meta {
    padding-top: 20px !important;
    border-top: 1px solid #eee !important;
    margin-top: 5px !important;
    margin-bottom: 15px !important;
}
.single-product .woocommerce-sg-product-meta .label-info-product {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--secondary-color) !important;
    margin-bottom: 10px !important;
}
.single-product .product_meta {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.8 !important;
}
.single-product .product_meta a {
    color: var(--primary-color) !important;
    transition: color 0.2s ease !important;
}
.single-product .product_meta a:hover {
    color: var(--secondary-color) !important;
}

/* ==========================================================================
   7. SINGLE PRODUCT - Social Share
   ========================================================================== */

.single-product .woocommerce-social-share {
    padding-top: 15px !important;
    border-top: 1px solid #eee !important;
    margin-top: 15px !important;
}

/* ==========================================================================
   8. SINGLE PRODUCT - Tabs MAJOR FIX
   ========================================================================== */

/* Tabs container */
.single-product .woocommerce-tabs {
    margin-top: 40px !important;
    clear: both !important;
}

/* Tab navigation */
.single-product #pxl-content-area div.product .woocommerce-tabs ul.wc-tabs,
.single-product > div.product .woocommerce-tabs ul.wc-tabs,
.single-product .woocommerce-tabs ul.wc-tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 25px 0 !important;
    border-bottom: none !important;
    gap: 10px !important;
}

/* Tab items */
.single-product #pxl-content-area div.product .woocommerce-tabs ul.wc-tabs li,
.single-product > div.product .woocommerce-tabs ul.wc-tabs li,
.single-product .woocommerce-tabs ul.wc-tabs li {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

/* Tab links - pill style but properly sized */
.single-product #pxl-content-area div.product .woocommerce-tabs ul.wc-tabs li a,
.single-product > div.product .woocommerce-tabs ul.wc-tabs li a,
.single-product .woocommerce-tabs ul.wc-tabs li a {
    display: inline-block !important;
    border: 1px solid #dadee2 !important;
    border-radius: 1000px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 0px 24px !important;
    margin-right: 0 !important;
    line-height: 46px !important;
    height: 46px !important;
    color: #555 !important;
    text-decoration: none !important;
    text-transform: capitalize !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
    background-color: transparent !important;
}
.single-product #pxl-content-area div.product .woocommerce-tabs ul.wc-tabs li a:hover,
.single-product > div.product .woocommerce-tabs ul.wc-tabs li a:hover,
.single-product .woocommerce-tabs ul.wc-tabs li a:hover {
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    background-color: transparent !important;
}

/* Active tab */
.single-product #pxl-content-area div.product .woocommerce-tabs ul.wc-tabs li.active a,
.single-product > div.product .woocommerce-tabs ul.wc-tabs li.active a,
.single-product .woocommerce-tabs ul.wc-tabs li.active a {
    color: #fff !important;
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}
.single-product .woocommerce-tabs ul.wc-tabs li.active > a:before,
.single-product .woocommerce-tabs ul.wc-tabs li a:hover:before {
    display: none !important;
}

/* Tab Panel / Content - REMOVE BORDER BOX */
.single-product #pxl-content-area div.product .woocommerce-tabs .woocommerce-Tabs-panel,
.single-product > div.product .woocommerce-tabs .woocommerce-Tabs-panel,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel,
.single-product #pxl-content-area div.product .woocommerce-tabs .woocommerce-Tabs-panel.panel,
.single-product > div.product .woocommerce-tabs .woocommerce-Tabs-panel.panel,
.single-product #pxl-content-area div.product .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--description,
.single-product > div.product .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--description,
.single-product #pxl-content-area div.product .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--reviews,
.single-product > div.product .woocommerce-tabs .woocommerce-Tabs-panel.woocommerce-Tabs-panel--reviews {
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    color: #444 !important;
}

/* Tab panel text visibility fix */
.single-product .woocommerce-tabs .woocommerce-Tabs-panel p,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel div,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel span,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel li,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel td,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel th,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel label,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel a {
    color: #444 !important;
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel a {
    color: var(--primary-color) !important;
    text-decoration: underline !important;
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel a:hover {
    color: var(--secondary-color) !important;
}

/* Tab panel headings */
.single-product .woocommerce-tabs .woocommerce-Tabs-panel h2,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel h3,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel h4,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel h5 {
    color: var(--secondary-color) !important;
    font-weight: 700 !important;
    margin-top: 25px !important;
    margin-bottom: 12px !important;
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel h2:first-child,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel h3:first-child {
    margin-top: 0 !important;
}

/* Tab panel paragraph styling */
.single-product .woocommerce-tabs .woocommerce-Tabs-panel p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    margin-bottom: 15px !important;
}

/* Tab panel lists */
.single-product .woocommerce-tabs .woocommerce-Tabs-panel ul,
.single-product .woocommerce-tabs .woocommerce-Tabs-panel ol {
    padding-left: 20px !important;
    margin-bottom: 15px !important;
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel li {
    font-size: 15px !important;
    line-height: 1.8 !important;
    margin-bottom: 5px !important;
}

/* Hide default > h2 inside panel (redundant) */
.single-product .woocommerce-tabs .woocommerce-Tabs-panel > h2 {
    display: none !important;
}

/* ==========================================================================
   9. SINGLE PRODUCT - Elementor Content Inside Tabs Fix
   ========================================================================== */

/* If tabs use Elementor content - fix visibility */
.elementor-page.single-product .woocommerce-Tabs-panel > .elementor,
.single-product .woocommerce-Tabs-panel .elementor-widget-container {
    color: #444 !important;
}
.single-product .woocommerce-Tabs-panel .elementor-widget-container p,
.single-product .woocommerce-Tabs-panel .elementor-widget-container span,
.single-product .woocommerce-Tabs-panel .elementor-widget-container div,
.single-product .woocommerce-Tabs-panel .elementor-widget-container li {
    color: #444 !important;
}
.single-product .woocommerce-Tabs-panel .elementor-widget-container h1,
.single-product .woocommerce-Tabs-panel .elementor-widget-container h2,
.single-product .woocommerce-Tabs-panel .elementor-widget-container h3,
.single-product .woocommerce-Tabs-panel .elementor-widget-container h4,
.single-product .woocommerce-Tabs-panel .elementor-widget-container h5,
.single-product .woocommerce-Tabs-panel .elementor-widget-container h6 {
    color: var(--secondary-color) !important;
}

/* ==========================================================================
   10. SINGLE PRODUCT - PayPal Button Cleanup
   ========================================================================== */

.single-product .entry-summary #ppc-button,
.single-product .entry-summary .ppc-button-wrapper {
    max-width: 280px !important;
    margin-top: 10px !important;
}

/* ==========================================================================
   11. SINGLE PRODUCT - Related Products
   ========================================================================== */

.single-product section.related {
    margin-top: 50px !important;
    padding-top: 40px !important;
    border-top: 1px solid #eee !important;
}
.single-product section.related h2 {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: var(--secondary-color) !important;
    text-align: center !important;
    margin-bottom: 30px !important;
}

/* ==========================================================================
   12. SINGLE PRODUCT - Breadcrumb Area Cleanup
   ========================================================================== */

.single-product .pxl-breadcrumb-wrap {
    padding: 15px 0 !important;
}

/* ==========================================================================
   13. SINGLE PRODUCT - Overall Layout Polish
   ========================================================================== */

/* Summary section width */
.single-product .entry-summary {
    margin-bottom: 30px !important;
}

/* Summary inner padding */
.single-product .woocommerce-summary-inner {
    padding-left: 15px !important;
}

/* ==========================================================================
   14. RESPONSIVE - Tablet & Mobile
   ========================================================================== */

/* ==========================================================================
   14. RESPONSIVE - handled in section 16 below
   ========================================================================== */

@media (max-width: 767px) {
    .single-product div.product form.cart {
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }
    .single-product .woocommerce-tabs ul.wc-tabs {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .single-product .woocommerce-tabs ul.wc-tabs li a {
        display: block !important;
        text-align: center !important;
        white-space: normal !important;
    }
    .single-product .product_title {
        font-size: 22px !important;
    }
    .single-product section.related h2 {
        font-size: 22px !important;
    }
}

@media (max-width: 575px) {
    .single-product .woocommerce-gallery-inner .flex-viewport {
        min-height: auto !important;
    }
}

/* ==========================================================================
   15. BUNDLE PRODUCTS - Styling
   ========================================================================== */

/* Bundle form container */
.single-product .bundle_form {
    margin-top: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

/* Each bundled product item - EQUAL WIDTH */
.single-product .bundled_product {
    display: flex !important;
    align-items: flex-start !important;
    gap: 20px !important;
    padding: 20px !important;
    margin-bottom: 15px !important;
    background: #fafafa !important;
    border-radius: 14px !important;
    border: 1px solid #eee !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}
.single-product .bundled_product:hover {
    border-color: #ddd !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04) !important;
}

/* Bundled product image */
.single-product .bundled_product_images {
    flex-shrink: 0 !important;
    width: 90px !important;
    min-width: 90px !important;
}
.single-product .bundled_product_images figure {
    margin: 0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}
.single-product .bundled_product_images img {
    width: 90px !important;
    height: 90px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    display: block !important;
}

/* Bundled product details */
.single-product .bundled_product .details {
    flex: 1 !important;
    min-width: 0 !important;
}

/* Bundled product title */
.single-product .bundled_product_title.product_title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--secondary-color) !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.4 !important;
}
.single-product .bundled_product_title .item_title {
    font-size: 16px !important;
}
.single-product .bundled_product_title .bundled_product_title_link a {
    font-size: 0 !important;
}

/* Bundled product price */
.single-product .bundled_product .bundled_item_cart_details .price {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
}
.single-product .bundled_product .bundled_item_cart_details .price del {
    opacity: 0.5 !important;
    font-size: 13px !important;
    margin-right: 5px !important;
}
.single-product .bundled_product .bundled_item_cart_details .price ins {
    text-decoration: none !important;
    color: var(--primary-color) !important;
}

/* Optional checkbox label styling */
.single-product .bundled_product_optional_checkbox {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 14px !important;
    color: #555 !important;
    cursor: pointer !important;
    margin: 5px 0 !important;
    padding: 0 !important;
}
.single-product .bundled_product_optional_checkbox input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    accent-color: var(--primary-color) !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
}
.single-product .bundled_product_optional_checkbox .price {
    font-weight: 600 !important;
    color: var(--primary-color) !important;
}

/* Bundled item variations / select dropdown */
.single-product .bundled_product .variations {
    width: 100% !important;
    margin-top: 8px !important;
    border: none !important;
}
.single-product .bundled_product .variations tr {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}
.single-product .bundled_product .variations td.label {
    padding: 0 !important;
    width: auto !important;
}
.single-product .bundled_product .variations td.label label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #555 !important;
}
.single-product .bundled_product .variations td.value {
    padding: 0 !important;
}
.single-product .bundled_product .variations select {
    width: 100% !important;
    max-width: 300px !important;
    height: 42px !important;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    padding: 0 15px !important;
    font-size: 14px !important;
    color: #333 !important;
    background-color: #fff !important;
    cursor: pointer !important;
    appearance: auto !important;
    -webkit-appearance: auto !important;
    transition: border-color 0.2s ease !important;
}
.single-product .bundled_product .variations select:focus {
    border-color: var(--primary-color) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb, 234, 185, 56), 0.15) !important;
}

/* Reset variations link */
.single-product .bundled_product .reset_variations,
.single-product .bundled_product .reset_bundled_variations_fixed a {
    font-size: 12px !important;
    color: #999 !important;
    margin-top: 4px !important;
    display: inline-block !important;
}

/* Bundle error / info messages */
.single-product .bundle_error .woocommerce-info {
    background: #fff8e5 !important;
    border: 1px solid #f0d968 !important;
    border-radius: 10px !important;
    padding: 12px 18px !important;
    font-size: 13px !important;
    color: #666 !important;
    margin: 10px 0 !important;
}
.single-product .bundle_error .woocommerce-info::before {
    color: var(--primary-color) !important;
}

/* Bundle total price */
.single-product .bundle_price {
    margin: 15px 0 10px !important;
}
.single-product .bundle_price .price {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--secondary-color) !important;
}
.single-product .bundle_price .price del {
    opacity: 0.5 !important;
    font-size: 17px !important;
    margin-right: 8px !important;
}
.single-product .bundle_price .price ins {
    text-decoration: none !important;
    color: var(--primary-color) !important;
}

/* Bundle add to cart button area */
.single-product .bundle_button {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 10px !important;
}
.single-product .bundle_button .quantity-label {
    width: 100% !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--secondary-color) !important;
}
.single-product .bundle_button .bundle_add_to_cart_button {
    height: 55px !important;
    line-height: 55px !important;
    padding: 0 30px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

/* Bundle responsive */
@media (max-width: 575px) {
    .single-product .bundled_product {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        padding: 15px !important;
    }
    .single-product .bundled_product_images {
        width: 70px !important;
        min-width: 70px !important;
    }
    .single-product .bundled_product_images img {
        width: 70px !important;
        height: 70px !important;
    }
    .single-product .bundled_product .variations select {
        max-width: 100% !important;
    }
}

/* ==========================================================================
   16. MOBILE / RESPONSIVE - Overflow & Padding Fix
   ========================================================================== */

/* Prevent horizontal overflow on single product page */
.single-product #pxl-main,
.single-product #pxl-content-area,
.single-product div.product,
.single-product .woocommerce-summary-wrap {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Entry summary overflow */
.single-product .entry-summary,
.single-product .woocommerce-summary-inner {
    max-width: 100% !important;
    overflow-x: hidden !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* Tabs overflow */
.single-product .woocommerce-tabs {
    max-width: 100% !important;
    overflow-x: hidden !important;
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
    max-width: 100% !important;
    overflow-x: auto !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* Bundle form overflow */
.single-product .bundle_form,
.single-product .bundle_data,
.single-product .bundle_wrap {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

@media (max-width: 991px) {
    /* Add side padding on tablet */
    .single-product #pxl-content-area {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .single-product .woocommerce-gallery {
        padding-right: 0 !important;
    }
    .single-product .woocommerce-summary-inner {
        padding-left: 0 !important;
        margin-top: 20px !important;
    }
    .single-product .product_title {
        font-size: 26px !important;
    }
    .single-product .woocommerce-sg-product-price .price {
        font-size: 22px !important;
    }
}

@media (max-width: 767px) {
    /* More padding on mobile */
    .single-product #pxl-content-area {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .single-product .woocommerce-summary-wrap.row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .single-product .woocommerce-summary-wrap.row > [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    /* Related products padding */
    .single-product section.related {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media (max-width: 575px) {
    .single-product #pxl-content-area {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .single-product .woocommerce-gallery-inner .flex-viewport {
        min-height: auto !important;
    }
    /* Tabs panel table overflow on mobile */
    .single-product .woocommerce-tabs .woocommerce-Tabs-panel table {
        display: block !important;
        overflow-x: auto !important;
    }
}