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

:root {
    /* Primary brand colors from design guide */
    --brand-primary: #9D3A8F;
    --brand-secondary: #6B2863;
    --brand-accent: #FF6B6B;

    /* 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 - Shadi Beauty Scoped
   ========================================================================== */

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

/* Custom brand taxonomy: faceted matrix layout with hover glow micro-interactions */
body.shadi-beauty-child .sbpf-section-product_brand .sbpf-list,
.shadi-filter-wrapper .sbpf-section-product_brand .sbpf-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 15px 0;
}

body.shadi-beauty-child .sbpf-section-product_brand .sbpf-item,
.shadi-filter-wrapper .sbpf-section-product_brand .sbpf-item {
    border: 1px solid var(--sb-border, #eeeeee);
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

body.shadi-beauty-child .sbpf-section-product_brand .sbpf-item:hover,
.shadi-filter-wrapper .sbpf-section-product_brand .sbpf-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 12px var(--brand-accent, rgba(255, 107, 107, 0.2));
    transform: translateY(-2px);
}

/* Chip layouts for Skin Type and Volume */
body.shadi-beauty-child .sbpf-section-pa_skin_type .sbpf-list,
body.shadi-beauty-child .sbpf-section-pa_volume .sbpf-list,
.shadi-filter-wrapper .sbpf-section-pa_skin_type .sbpf-list,
.shadi-filter-wrapper .sbpf-section-pa_volume .sbpf-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

body.shadi-beauty-child .sbpf-section-pa_skin_type .sbpf-item,
body.shadi-beauty-child .sbpf-section-pa_volume .sbpf-item,
.shadi-filter-wrapper .sbpf-section-pa_skin_type .sbpf-item,
.shadi-filter-wrapper .sbpf-section-pa_volume .sbpf-item {
    padding: 6px 14px;
    background-color: var(--color-bg-secondary, #f8f9fa);
    border: 1px solid var(--sb-border, #eeeeee);
    border-radius: 50px; /* Soft cosmetic rounds */
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

body.shadi-beauty-child .sbpf-section-pa_skin_type .sbpf-item:hover,
body.shadi-beauty-child .sbpf-section-pa_volume .sbpf-item:hover,
.shadi-filter-wrapper .sbpf-section-pa_skin_type .sbpf-item:hover,
.shadi-filter-wrapper .sbpf-section-pa_volume .sbpf-item:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #ffffff;
}

/* Checked states for cosmetic items */
body.shadi-beauty-child .sbpf-item input:checked + label,
.shadi-filter-wrapper .sbpf-item input:checked + label {
    color: var(--primary-color);
    font-weight: 700;
}

/* Price Slider connects & handles (Soft rounds) */
body.shadi-beauty-child .noUi-connect,
.shadi-filter-wrapper .noUi-connect {
    background: var(--primary-color) !important;
}

body.shadi-beauty-child .noUi-handle,
.shadi-filter-wrapper .noUi-handle {
    border: 2px solid var(--primary-color) !important;
    border-radius: 50% !important; /* Soft round handles */
    background: #ffffff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}

/* Off-canvas mobile filter drawer: soft blur and rounded borders */
body.shadi-beauty-child .sbpf-mobile-drawer,
.shadi-filter-wrapper .sbpf-mobile-drawer {
    position: fixed;
    top: 15px;
    bottom: 15px;
    right: -340px;
    width: 320px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px 0 0 24px; /* Highly rounded borders */
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    z-index: 99999;
    padding: 24px;
    box-sizing: border-box;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Soft blur success Toast Notifications */
body.shadi-beauty-child #shared-toast .toast-body,
.shadi-filter-wrapper #shared-toast .toast-body {
    background: rgba(34, 34, 34, 0.75) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px !important;
}

/* ==========================================================================
   Day 5: WooCommerce SPA Cart & Checkout Layout - Shadi Beauty Scoped
   ========================================================================== */

body.shadi-beauty-child .woocommerce-checkout .col2-set,
body.shadi-beauty-child .woocommerce-cart .woocommerce-cart-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(107, 40, 99, 0.08); /* Soft brand shadow */
    border: 1px solid rgba(157, 58, 143, 0.05);
}

body.shadi-beauty-child .woocommerce-checkout .col2-set .col-1,
body.shadi-beauty-child .woocommerce-checkout .col2-set .col-2 {
    width: 100%;
    float: none;
}

/* Minimalist Form Fields Styling */
body.shadi-beauty-child .woocommerce-checkout .form-row {
    margin-bottom: 20px;
}

body.shadi-beauty-child .woocommerce-checkout .form-row label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--sb-dark);
    font-size: 0.95rem;
}

body.shadi-beauty-child .woocommerce-checkout .form-row input.input-text,
body.shadi-beauty-child .woocommerce-checkout .form-row textarea,
body.shadi-beauty-child .woocommerce-checkout .form-row select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--sb-border);
    border-radius: 16px; /* Soft rounded corners for cosmetics */
    background-color: var(--color-bg-secondary, #fafafa);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1rem;
}

body.shadi-beauty-child .woocommerce-checkout .form-row input.input-text:focus,
body.shadi-beauty-child .woocommerce-checkout .form-row select:focus,
body.shadi-beauty-child .woocommerce-checkout .form-row textarea:focus {
    border-color: var(--brand-primary);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(157, 58, 143, 0.15); /* Glow effect using brand primary */
    outline: none;
}

/* Clean Order Review Table - SPA Style */
body.shadi-beauty-child .woocommerce-checkout-review-order-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-top: 20px;
    background: var(--color-bg-secondary, #fafafa);
    border-radius: 16px;
    padding: 15px;
}

body.shadi-beauty-child .woocommerce-checkout-review-order-table th,
body.shadi-beauty-child .woocommerce-checkout-review-order-table td {
    padding: 12px 5px;
    border-bottom: 1px dashed var(--sb-border);
}

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

/* ==========================================================================
   Day 5: Custom WooCommerce Template Override Layouts - Shadi Beauty
   ========================================================================== */
.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: 16px;
    border: 1px solid rgba(157, 58, 143, 0.08);
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(107, 40, 99, 0.02);
}
.custom-cart-wrapper .item .btn-remove {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--brand-accent);
    font-size: 1.3rem;
    transition: opacity 0.2s;
}
.custom-cart-wrapper .item .btn-remove:hover {
    opacity: 0.7;
}
.custom-cart-wrapper .item .preview {
    width: 90px;
    height: 90px;
    margin-left: 20px;
}
.custom-cart-wrapper .item .preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.custom-cart-wrapper .item .details {
    flex: 1;
    min-width: 200px;
}
.custom-cart-wrapper .item .details h3 {
    margin: 0 0 8px 0;
    font-size: 1.05rem;
    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: 1px solid var(--sb-border);
    border-radius: 50px;
    overflow: hidden;
    background: var(--color-bg-secondary, #fafafa);
    padding: 2px;
}
.custom-cart-wrapper .btn-quantity {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sb-dark);
    text-decoration: none;
    font-size: 0.8rem;
    border-radius: 50%;
    transition: background 0.2s;
}
.custom-cart-wrapper .btn-quantity:hover {
    background: rgba(157, 58, 143, 0.1);
    color: var(--brand-primary);
}
.custom-cart-wrapper .quantity-text {
    padding: 0 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    min-width: 70px;
}
.custom-cart-wrapper .coupon {
    margin-top: 25px;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(157, 58, 143, 0.08);
}
.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: 12px 18px;
    border: 1px solid var(--sb-border);
    border-radius: 12px;
    font-size: 0.9rem;
    background-color: var(--color-bg-secondary, #fafafa);
}
.custom-cart-wrapper .coupon-form-row button {
    padding: 12px 25px;
    background: var(--brand-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.custom-cart-wrapper .coupon-form-row button:hover {
    background: var(--brand-secondary);
}
.custom-cart-wrapper .summary {
    margin-top: 25px;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(157, 58, 143, 0.08);
    box-shadow: 0 4px 15px rgba(107, 40, 99, 0.02);
}
.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.25rem;
    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: 14px 45px;
    background: var(--brand-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    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: 24px;
    border: 1px solid rgba(157, 58, 143, 0.05);
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(107, 40, 99, 0.05);
}
.custom-checkout-wrapper .title {
    display: block;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(157, 58, 143, 0.05);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--sb-dark);
}
.custom-checkout-wrapper .steps {
    padding: 25px;
}
.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: 10px;
}
.custom-checkout-wrapper .promo-form-inline {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.custom-checkout-wrapper .coupon-code-field {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid var(--sb-border);
    border-radius: 12px;
    background: var(--color-bg-secondary, #fafafa);
}
.custom-checkout-wrapper .apply-coupon-btn {
    padding: 12px 20px;
    background: var(--brand-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}
.custom-checkout-wrapper .apply-coupon-btn:hover {
    background: var(--brand-secondary);
}
.custom-checkout-wrapper .payments .details {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 12px;
    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: 20px;
}
.custom-checkout-wrapper .payment-methods-section span {
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}
.custom-checkout-wrapper .checkout-button-card .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--color-bg-secondary, #fafafa);
    border-radius: 0 0 24px 24px;
}
.custom-checkout-wrapper .checkout-button-card .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-primary);
}
.custom-checkout-wrapper .checkout-btn {
    padding: 14px 40px;
    background: var(--brand-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    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 Shadi */
.shadi-beauty-child .products .product.outofstock,
.shadi-beauty-child .products li.outofstock {
    filter: grayscale(100%) !important;
    opacity: 0.5 !important;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Sticky ATC Shadi Beauty Theme Styles (Day 8 Task 4.2) */
.sticky-atc-shadi {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.03) !important;
}
.sticky-atc-shadi .sticky-atc-thumb {
    border-radius: 12px;
}
.sticky-atc-shadi .sticky-atc-title {
    color: var(--brand-primary);
    font-family: var(--font-primary, 'Vazirmatn', sans-serif);
}
.sticky-atc-shadi .sticky-atc-price {
    color: var(--brand-secondary);
    font-weight: 600;
}
.sticky-atc-shadi #sticky-atc-submit {
    background-color: #ff6b6b !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 10px 30px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: background-color 0.2s !important;
}
.sticky-atc-shadi #sticky-atc-submit:hover {
    background-color: var(--brand-primary) !important;
}

/* ==========================================================================
   Day 8 Task 4.4: Review Engine Visuals & Lightbox Gallery (Shadi Beauty)
   ========================================================================== */

/* Premium Glassmorphic Dropzone Card Interface */
.shadi-beauty-child #file-drag {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 2px dashed rgba(255, 255, 255, 0.6) !important;
    border-radius: 24px !important;
    padding: 30px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}
.shadi-beauty-child #file-drag.hover,
.shadi-beauty-child #file-drag:hover {
    border-color: rgba(157, 58, 143, 0.6) !important;
    background: rgba(255, 255, 255, 0.7) !important;
}
.shadi-beauty-child #file-drag #file-upload-btn {
    border-radius: 50px !important;
    background-color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
}
.shadi-beauty-child #file-drag #file-upload-btn:hover {
    background-color: var(--brand-secondary) !important;
    border-color: var(--brand-secondary) !important;
}

/* Borderless Horizontal Thumbnail Strip with Delicate Micro-Shadows */
.shadi-beauty-child .shadi-review-gallery {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}
.shadi-beauty-child .shadi-review-gallery a.shadi-lightbox-trigger {
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02) !important;
    overflow: hidden !important;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease !important;
}
.shadi-beauty-child .shadi-review-gallery a.shadi-lightbox-trigger:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 12px 30px rgba(107, 40, 99, 0.1) !important;
}

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

/* Above 1024px: Force Desktop UI and Hide Mobile Navigation */
@media (min-width: 1025px) {
    .desktop-header-row {
        display: block !important;
    }
    .mobile-header-rows {
        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 */
    .desktop-header-row {
        display: none !important;
    }
    .mobile-header-rows {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
        width: 100% !important;
    }
    .mobile-row-1 {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }
    .mobile-hamburger {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .mobile-row-2 {
        display: block !important;
        width: 100% !important;
    }
    .mobile-glass-search {
        display: block !important;
        width: 100% !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: rgba(255, 255, 255, 0.65) !important;
        backdrop-filter: blur(20px) saturate(190%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.4) !important;
        border-radius: 16px 16px 0 0 !important;
        box-shadow: 0 -8px 32px 0 rgba(157, 58, 143, 0.08) !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: var(--brand-primary, #9D3A8F) !important;
        font-size: 0.75rem !important;
        font-weight: 600 !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: var(--brand-primary, #9D3A8F) !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 Button (Avoid overlaps with bottom bars) */
    .single-product #shadi-luxury-support {
        bottom: 125px !important;
    }
    .single-post #shadi-luxury-support {
        bottom: 80px !important;
    }
}






