/*
Theme Name: Intex Child
Theme URI: https://world-intex.com
Description: Child theme for Intex site, based on GeneratePress.
Author: H.Pezeshki - h.peseshki@gmail.com
Author URI: https://hpezeshki.ir
Template: generatepress
Version: 1.0.0
Text Domain: intex-child
*/

:root {
    /* Primary brand colors from design guide */
    --brand-primary: #08BFED;
    --brand-secondary: #2596BE;
    --brand-accent: #FFC107;

    /* Base Typography */
    --font-primary: 'Vazirmatn', sans-serif;
    --font-secondary: 'Vazirmatn', sans-serif;

    /* Search/Filter System Mappings */
    --sb-brand: var(--brand-primary);
    --sb-purple: var(--brand-primary);
    --sb-accent: var(--brand-accent);
    --sb-cta: var(--brand-accent);
    --sb-dark: #333;
    --sb-text: #333;
    --sb-gray: #f5f5f5;
    --sb-border: #eee;
    --sb-bg: #fff;
}

/* ==========================================================================
   Day 4: WooCommerce Custom AJAX Filter Styling - Intex Store Scoped
   ========================================================================== */

/* Scoped under body.intex-child or the wrapper .intex-filter-wrapper */
body.intex-child .sbpf-container,
.intex-filter-wrapper .sbpf-container {
    font-family: var(--font-primary, sans-serif);
    color: var(--sb-text, #333333);
}

/* Category drilldown: clean, industrial, text-based */
body.intex-child .sbpf-section-category .sbpf-list,
.intex-filter-wrapper .sbpf-section-category .sbpf-list {
    list-style: none;
    padding-left: 15px;
    margin: 10px 0;
    border-right: 2px solid var(--sb-border, #eeeeee); /* RTL border hierarchy indicator */
}

body.intex-child .sbpf-section-category .sbpf-item,
.intex-filter-wrapper .sbpf-section-category .sbpf-item {
    font-size: 0.9rem;
    padding: 6px 0;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

body.intex-child .sbpf-section-category .sbpf-item:hover,
.intex-filter-wrapper .sbpf-section-category .sbpf-item:hover {
    color: var(--primary-color);
}

/* Stacking for Size and Material attributes */
body.intex-child .sbpf-section-pa_size .sbpf-list,
body.intex-child .sbpf-section-pa_material .sbpf-list,
.intex-filter-wrapper .sbpf-section-pa_size .sbpf-list,
.intex-filter-wrapper .sbpf-section-pa_material .sbpf-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0;
}

/* Checkboxes and radio buttons: corporate clean borders */
body.intex-child .sbpf-item input[type="checkbox"],
body.intex-child .sbpf-item input[type="radio"],
.intex-filter-wrapper .sbpf-item input[type="checkbox"],
.intex-filter-wrapper .sbpf-item input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--sb-border, #dee2e6);
    border-radius: 4px; /* Sharp corners */
    outline: none;
    cursor: pointer;
    vertical-align: middle;
    margin-left: 8px;
    position: relative;
    transition: border-color 0.2s, background-color 0.2s;
}

body.intex-child .sbpf-item input[type="checkbox"]:checked,
body.intex-child .sbpf-item input[type="radio"]:checked,
.intex-filter-wrapper .sbpf-item input[type="checkbox"]:checked,
.intex-filter-wrapper .sbpf-item input[type="radio"]:checked {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

body.intex-child .sbpf-item input[type="checkbox"]:checked::after,
.intex-filter-wrapper .sbpf-item input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Price Slider fills */
body.intex-child .noUi-connect,
.intex-filter-wrapper .noUi-connect {
    background: var(--primary-color) !important;
}

body.intex-child .noUi-handle,
.intex-filter-wrapper .noUi-handle {
    border: 2px solid var(--primary-color) !important;
    border-radius: 4px !important; /* Sharp corners */
    background: #ffffff !important;
    cursor: pointer;
}

/* Dismissible Active Filter Chips: sharp borders */
body.intex-child .sbpf-active-chips,
.intex-filter-wrapper .sbpf-active-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

body.intex-child .sbpf-chip,
.intex-filter-wrapper .sbpf-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background-color: #ffffff;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px; /* Sharp corners */
    cursor: pointer;
    transition: all 0.2s ease;
}

body.intex-child .sbpf-chip:hover,
.intex-filter-wrapper .sbpf-chip:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Slide-out Mobile Off-canvas drawer: sharp margins & male corporate style */
body.intex-child .sbpf-mobile-drawer,
.intex-filter-wrapper .sbpf-mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    border-left: 2px solid var(--primary-color);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.intex-child .sbpf-mobile-drawer.open,
.intex-filter-wrapper .sbpf-mobile-drawer.open {
    right: 0;
}

/* ==========================================================================
   Day 5: WooCommerce SPA Cart & Checkout Layout - Intex Store Scoped
   ========================================================================== */

body.intex-child .woocommerce-checkout .col2-set,
body.intex-child .woocommerce-cart .woocommerce-cart-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

body.intex-child .woocommerce-checkout .col2-set .col-1,
body.intex-child .woocommerce-checkout .col2-set .col-2 {
    width: 100%;
    float: none;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--sb-border);
}

@media (min-width: 992px) {
    body.intex-child .woocommerce-checkout .col2-set {
        flex-direction: row;
    }
}

/* Modern Input Styling */
body.intex-child .woocommerce-checkout .form-row label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--sb-dark);
    font-size: 0.95rem;
}

body.intex-child .woocommerce-checkout .form-row input.input-text,
body.intex-child .woocommerce-checkout .form-row textarea,
body.intex-child .woocommerce-checkout .form-row select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--sb-border);
    border-radius: 8px;
    background-color: var(--sb-gray);
    transition: all 0.3s ease;
    font-size: 1rem;
}

body.intex-child .woocommerce-checkout .form-row input.input-text:focus,
body.intex-child .woocommerce-checkout .form-row select:focus,
body.intex-child .woocommerce-checkout .form-row textarea:focus {
    border-color: var(--brand-primary);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(8, 191, 237, 0.1);
    outline: none;
}

/* Clean Order Review Table */
body.intex-child .woocommerce-checkout-review-order-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--sb-border);
}

body.intex-child .woocommerce-checkout-review-order-table th,
body.intex-child .woocommerce-checkout-review-order-table td {
    padding: 15px;
    border-bottom: 1px solid var(--sb-border);
}

body.intex-child .woocommerce-checkout-review-order-table tr:last-child th,
body.intex-child .woocommerce-checkout-review-order-table tr:last-child td {
    border-bottom: none;
}

/* ==========================================================================
   Day 5: Custom WooCommerce Template Override Layouts - Intex
   ========================================================================== */
.custom-cart-wrapper,
.custom-checkout-wrapper {
    font-family: var(--font-primary, sans-serif);
    direction: rtl;
    text-align: right;
    margin-top: 20px;
    margin-bottom: 50px;
}

/* Cart Styles */
.custom-cart-wrapper .items {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.custom-cart-wrapper .item {
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--sb-border);
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.custom-cart-wrapper .item .btn-remove {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #e94343;
    font-size: 1.2rem;
    transition: opacity 0.2s;
}
.custom-cart-wrapper .item .btn-remove:hover {
    opacity: 0.7;
}
.custom-cart-wrapper .item .preview {
    width: 80px;
    height: 80px;
    margin-left: 15px;
}
.custom-cart-wrapper .item .preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.custom-cart-wrapper .item .details {
    flex: 1;
    min-width: 200px;
}
.custom-cart-wrapper .item .details h3 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 700;
}
.custom-cart-wrapper .item .details h3 a {
    color: var(--sb-dark);
    text-decoration: none;
}
.custom-cart-wrapper .item .details h3 a:hover {
    color: var(--brand-primary);
}
.custom-cart-wrapper .item .details .meta-desc {
    font-size: 0.85rem;
    color: #777;
}
.custom-cart-wrapper .item .inner_container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 150px;
}
.custom-cart-wrapper .quantity-picker-controls {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--sb-border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--sb-gray);
}
.custom-cart-wrapper .btn-quantity {
    padding: 8px 12px;
    color: var(--sb-dark);
    text-decoration: none;
    font-size: 0.8rem;
    transition: background 0.2s;
}
.custom-cart-wrapper .btn-quantity:hover {
    background: #e2e6ea;
}
.custom-cart-wrapper .quantity-text {
    padding: 0 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border-left: 1px solid var(--sb-border);
    border-right: 1px solid var(--sb-border);
    text-align: center;
    min-width: 70px;
}
.custom-cart-wrapper .coupon {
    margin-top: 25px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--sb-border);
}
.custom-cart-wrapper .coupon h3 {
    font-size: 0.95rem;
    margin: 0 0 12px 0;
}
.custom-cart-wrapper .coupon-form-row {
    display: flex;
    gap: 10px;
    max-width: 400px;
}
.custom-cart-wrapper .coupon-input {
    flex: 1;
    padding: 10px 15px;
    border: 1.5px solid var(--sb-border);
    border-radius: 6px;
    font-size: 0.9rem;
}
.custom-cart-wrapper .coupon-form-row button {
    padding: 10px 20px;
    background: var(--brand-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}
.custom-cart-wrapper .summary {
    margin-top: 25px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--sb-border);
}
.custom-cart-wrapper .summary-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}
.custom-cart-wrapper .summary-content .amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-primary);
}
.custom-cart-wrapper .btn-summary {
    display: flex;
    justify-content: flex-end;
}
.custom-cart-wrapper .btn-checkout {
    display: inline-block;
    padding: 12px 35px;
    background: var(--brand-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s;
}
.custom-cart-wrapper .btn-checkout:hover {
    background: var(--brand-secondary);
}

/* Checkout Layout */
.checkout-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 992px) {
    .checkout-layout-grid {
        grid-template-columns: 3fr 2fr;
    }
}
.custom-checkout-wrapper .card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--sb-border);
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.custom-checkout-wrapper .title {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid var(--sb-border);
    font-weight: 700;
    font-size: 1rem;
    color: var(--sb-dark);
}
.custom-checkout-wrapper .steps {
    padding: 20px;
}
.custom-checkout-wrapper .checkout-review-items-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}
.custom-checkout-wrapper .checkout-review-items-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.custom-checkout-wrapper .promo-form-inline {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
.custom-checkout-wrapper .coupon-code-field {
    flex: 1;
    padding: 8px 12px;
    border: 1.5px solid var(--sb-border);
    border-radius: 6px;
    background: var(--sb-gray);
}
.custom-checkout-wrapper .apply-coupon-btn {
    padding: 8px 15px;
    background: var(--brand-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}
.custom-checkout-wrapper .payments .details {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-top: 10px;
    font-size: 0.9rem;
}
.custom-checkout-wrapper .payments .details span:nth-child(even) {
    font-weight: 700;
    text-align: left;
}
.custom-checkout-wrapper .payment-methods-section {
    margin-top: 15px;
}
.custom-checkout-wrapper .payment-methods-section span {
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.custom-checkout-wrapper .checkout-button-card .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--sb-gray);
    border-radius: 0 0 8px 8px;
}
.custom-checkout-wrapper .checkout-button-card .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-primary);
}
.custom-checkout-wrapper .checkout-btn {
    padding: 12px 30px;
    background: var(--brand-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.custom-checkout-wrapper .checkout-btn:hover {
    background: var(--brand-secondary);
}

/* Out of stock product degradation desaturation styling (Day 8 Task 4.1) Scoped to Intex */
.intex-child .products .product.outofstock,
.intex-child .products li.outofstock {
    filter: grayscale(100%) !important;
    opacity: 0.5 !important;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Sticky ATC Intex Theme Styles (Day 8 Task 4.2) */
.sticky-atc-intex {
    background: #ffffff !important;
    border-top: 2px solid #eeeeee !important;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05) !important;
}
.sticky-atc-intex .sticky-atc-thumb {
    border-radius: 0;
    border: 1px solid #eeeeee;
}
.sticky-atc-intex .sticky-atc-title {
    color: #1e293b;
    font-family: var(--font-primary, 'Vazirmatn', sans-serif);
}
.sticky-atc-intex .sticky-atc-price {
    color: #0f172a;
    font-weight: 800;
}
.sticky-atc-intex #sticky-atc-submit {
    background-color: var(--cta-gradient) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 12px 28px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: background-color 0.2s !important;
    font-size: 0.9rem !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 14px rgba(8, 191, 237, 0.4) !important;



}
.sticky-atc-intex #sticky-atc-submit:hover {
    background: var(--cta-gradient-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(66, 233, 227, 0.5) !important;
    color: #FFFFFF !important;
}

/* ==========================================================================
   Day 8 Task 4.3: Specifications Table Layout (Intex)
   ========================================================================== */
.intex-child .bos-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    text-align: right;
    font-family: var(--font-primary, 'Vazirmatn', sans-serif);
}
.intex-child .bos-specs-table tr {
    border-bottom: 1px solid #eaeaec;
}
.intex-child .bos-specs-table td {
    padding: 12px 16px;
    vertical-align: middle;
    color: #334155;
    font-size: 0.95rem;
}
.intex-child .bos-specs-label {
    font-weight: 700;
    color: #1f1f23;
    width: 30%;
}
@media (max-width: 576px) {
    .intex-child .bos-specs-table, 
    .intex-child .bos-specs-table tbody, 
    .intex-child .bos-specs-table tr, 
    .intex-child .bos-specs-table td {
        display: block;
        width: 100% !important;
        box-sizing: border-box;
    }
    .intex-child .bos-specs-table tr {
        padding: 12px 0;
    }
    .intex-child .bos-specs-table td {
        padding: 8px 0 !important; /* Generous vertical padding to prevent Persian character squeezing */
    }
    .intex-child .bos-specs-label {
        margin-bottom: 6px;
        color: #0f172a;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   Day 8 Task 4.5: Review Upload Grid & Dropzone (Intex)
   ========================================================================== */

/* Industrial Utilitarian Dropzone Styling */
.intex-child #file-drag {
    background: #ffffff !important;
    border: 2px dashed #1f1f23 !important;
    border-radius: 0px !important; /* Sharp corners */
    padding: 30px !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
}
.intex-child #file-drag.hover,
.intex-child #file-drag:hover {
    border-color: var(--brand-primary, #08BFED) !important;
    background: #f8fafc !important;
}
.intex-child #file-drag #file-upload-btn {
    border-radius: 0px !important; /* Sharp corners */
    background-color: #1f1f23 !important;
    border: 1px solid #1f1f23 !important;
}
.intex-child #file-drag #file-upload-btn:hover {
    background-color: var(--brand-primary, #08BFED) !important;
    border-color: var(--brand-primary, #08BFED) !important;
}

/* Sharp, High-Contrast Square Layout Grid Loop (Max 4 items per row) */
.intex-child .intex-review-gallery {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; /* Max 4 items per row */
    gap: 12px !important;
    max-width: 320px !important; /* Limit total width to keep it compact */
    margin-top: 15px !important;
}
.intex-child .intex-review-gallery a {
    display: block !important;
    aspect-ratio: 1 / 1 !important; /* Fixed aspect-ratio: 1/1 */
    border: 2px solid #1f1f23 !important; /* Sharp solid boundaries, high contrast */
    padding: 0 !important;
    background: #ffffff !important;
    border-radius: 0 !important; /* Utilitarian sharp design */
    overflow: hidden !important;
    transition: border-color 0.2s ease !important;
}
.intex-child .intex-review-gallery a:hover {
    border-color: var(--brand-primary, #08BFED) !important;
}
.intex-child .intex-review-gallery img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* ==========================================================================
   📱 Mobile Layout Spacing & Floating Buttons Overlap Fixes (Breakpoint: 1024px)
   ========================================================================== */

/* Above 1024px: Force Desktop UI and Hide Mobile Navigation */
@media (min-width: 1025px) {
    .intex-sub-nav {
        display: block !important;
    }
    .intex-top-utility {
        display: block !important;
    }
    .intex-main-header .mobile-hamburger {
        display: none !important;
    }
    .mobile-bottom-navbar {
        display: none !important;
    }
    body {
        padding-bottom: 0 !important;
    }
}

/* Exactly at 1024px and below: Transition to Mobile UI */
@media (max-width: 1024px) {
    /* 1. Fix Body Right-Side Spacing/Gutter & Prevent Overflow-X */
    html, body {
        overflow-x: hidden !important;
    }
    .grid-container,
    #content,
    .site-content,
    .container {
        padding-right: 4px !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* 2. Sync Header to Mobile State */
    .intex-sub-nav {
        display: none !important;
    }
    .intex-top-utility {
        display: none !important;
    }
    .intex-main-header .mobile-hamburger {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .main-grid-flex {
        flex-wrap: wrap !important;
        row-gap: 16px !important;
    }
    .intex-main-header .site-branding-logo {
        order: 1 !important;
    }
    .intex-main-header .main-header-left {
        order: 2 !important;
        gap: 12px !important;
    }
    .intex-main-header .main-header-center {
        display: block !important;
        order: 3 !important;
        flex: 1 1 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    .intex-main-header .divider {
        display: none !important;
    }
    .intex-auth-btn {
        display: none !important;
    }

    /* 3. Display and Stick Mobile Bottom Navbar (Restored Vertical Stack & Clean Styles) */
    .mobile-bottom-navbar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 64px !important;
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
        z-index: 99999 !important;
        background: #FFFFFF !important;
        border-top: 2px solid #1A1A1A !important;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05) !important;
        padding: 0 10px !important;
    }
    body {
        padding-bottom: 72px !important;
    }

    /* Vertically stack all bottom navigation elements */
    .mobile-nav-node {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        color: #1a1a1a !important;
        font-size: 0.75rem !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        cursor: pointer !important;
        flex: 1 !important;
        height: 100% !important;
        gap: 4px !important;
        position: relative !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
    }
    .mobile-nav-node svg {
        width: 22px !important;
        height: 22px !important;
        color: #1a1a1a !important;
        transition: all 0.2s ease !important;
        display: block !important;
    }

    /* Absolute position the Cart bubble count */
    .mobile-cart-node {
        position: relative !important;
    }
    .mobile-cart-node .cart-bubble {
        position: absolute !important;
        top: 4px !important;
        right: 50% !important;
        margin-right: -20px !important;
        background: #ff5a5a !important;
        color: #ffffff !important;
        font-size: 10px !important;
        font-weight: 700 !important;
        min-width: 16px !important;
        height: 16px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 4px !important;
        box-sizing: border-box !important;
        line-height: 1 !important;
        z-index: 2 !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* 4. Reposition Floating Support & Repair Buttons (Avoid overlaps with bottom bars) */
    .single-product #intex-support-btn,
    .single-product #intex-repair-btn {
        bottom: 125px !important;
    }
    .single-post #intex-support-btn,
    .single-post #intex-repair-btn {
        bottom: 80px !important;
    }
}


