/*
Theme Name: Woocom X Shantobazar
Theme URI: https://ecare.com.bd/ezycom
Author: Ecare Solution
Author URI: https://ecare.com.bd/ezycom
Description: A custom WooCommerce theme designed for better experience of grocery selling.
Version: 1.2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: woocom
Tags: woocommerce, grocery, e-commerce, custom-colors, custom-menu, featured-images, responsive-layout, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* --- Basic Reset & Base Styles --- */
body {
    font-family: 'Noto Serif Bengali', 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

/* --- Logo Size Fix --- */
.site-branding img {
    height: 50px !important; /* Slightly smaller for cleaner look */
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
}

@media (max-width: 1024px) {
    .site-branding img {
        height: 36px !important;
        max-width: 160px !important;
    }
}

/* --- Action Button Gap Fix --- */
/* Hide WooCommerce default View Cart link after AJAX add to cart */
.added_to_cart,
.woocommerce-message {
    display: none !important;
}

.single-product-container form.cart {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.single-product-container .grid {
    gap: 6px !important; /* Vertical gap reduction */
}

@media (max-width: 768px) {
    .single-product-container .grid {
        gap: 8px !important;
    }
}

/* --- Frequently Bought Together layout fixes --- */
.fbt-items-row {
    overflow-x: auto !important;
    padding-bottom: 2px !important;
}

.fbt-product-card {
    flex: 0 0 auto !important;
    width: max-content !important;
    min-width: 250px !important;
    max-width: 360px !important;
    min-height: 78px !important;
    background-color: #fff9e8 !important;
}

.fbt-product-thumb {
    margin-right: 12px !important;
}

.fbt-product-copy {
    padding-right: 32px !important;
}

.fbt-check-label {
    right: 8px !important;
    bottom: 8px !important;
}

.fbt-total-card {
    width: 170px !important;
    min-height: 78px !important;
}

.fbt-total-card:hover {
    filter: none !important;
}

.fbt-item-save {
    border: 1px dotted var(--color-secondary) !important;
    background-color: #fffdf3 !important;
    color: var(--color-secondary) !important;
}

#fbt-add-all {
    background-color: #ffffff !important;
    color: var(--color-secondary) !important;
    border-color: #ffffff !important;
}

#fbt-add-all:hover {
    background-color: var(--color-secondary) !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

#search-results {
    z-index: 10000 !important;
}

#cart-drawer {
    width: min(100dvw, 400px) !important;
    max-width: 100dvw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

#cart-drawer * {
    box-sizing: border-box !important;
}

.cart-floating-widget {
    max-width: calc(100dvw - 16px) !important;
}

body.woocommerce-checkout,
body.woocommerce-checkout #page,
body.woocommerce-checkout .checkout-page-wrapper {
    overflow-x: hidden !important;
}

.checkout-page-wrapper > .checkout-content-container {
    width: 100% !important;
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

/* --- Mobile Bottom Nav: prevent horizontal scroll on checkout --- */
/* Using width:100vw via inline style, but also enforce via CSS for safety */
body:not(.lg) .lg\:hidden[style*="width:100"],
div[style*="width:100"][style*="max-width:100"] {
    width: 100dvw !important;
    max-width: 100dvw !important;
    left: 0 !important;
    right: auto !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

/* Prevent WooCommerce checkout table from causing overflow */
@media (max-width: 1023px) {
    #cart-drawer {
        right: 0 !important;
        left: auto !important;
        width: 100dvw !important;
        max-width: 100dvw !important;
    }

    #cart-items-list > div,
    #cart-drawer .flex-grow {
        min-width: 0 !important;
    }

    .woocommerce-checkout-review-order-table,
    .woocommerce-checkout-review-order-table * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .woocommerce-checkout-review-order-table td,
    .woocommerce-checkout-review-order-table th {
        word-break: break-word !important;
    }

    .woocommerce-checkout .checkout-page-wrapper,
    .woocommerce-checkout .container {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
}

@media (max-width: 1023px) {
    #cart-drawer-open-sticky {
        right: 0 !important;
        width: 64px !important;
        border-radius: 0.75rem 0 0 0.75rem !important;
        transform: translateY(-50%) !important;
        box-sizing: border-box !important;
    }

    #cart-drawer-open-sticky .bg-secondary {
        padding: 8px 6px !important;
    }

    #sticky-cart-total {
        padding: 6px 4px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 767px) {
    body.woocommerce-checkout .mobile-bottom-navigation,
    body.woocom-checkout-page .mobile-bottom-navigation {
        display: none !important;
    }

    body.woocommerce-checkout.has-sticky-checkout-mobile,
    body.woocom-checkout-page.has-sticky-checkout-mobile {
        padding-bottom: 74px !important;
    }

    body.has-sticky-checkout-mobile .checkout-page-wrapper {
        padding-bottom: 5rem !important;
    }

    body.woocommerce-checkout.has-sticky-checkout-mobile .checkout-place-order,
    body.woocom-checkout-page.has-sticky-checkout-mobile .checkout-place-order,
    body.has-sticky-checkout-mobile .checkout-page-wrapper .checkout-place-order {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 160 !important;
        padding: 7px 12px calc(7px + env(safe-area-inset-bottom)) !important;
        background: rgba(255, 255, 255, 0.96) !important;
        border-top: 1px solid rgba(226, 232, 240, 0.9) !important;
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12) !important;
    }

    body.woocommerce-checkout.has-sticky-checkout-mobile .checkout-place-order .checkout-terms-row,
    body.woocom-checkout-page.has-sticky-checkout-mobile .checkout-place-order .checkout-terms-row,
    body.has-sticky-checkout-mobile .checkout-page-wrapper .checkout-place-order .checkout-terms-row {
        display: none !important;
    }

    body.woocommerce-checkout.has-sticky-checkout-mobile .checkout-place-order #place_order,
    body.woocom-checkout-page.has-sticky-checkout-mobile .checkout-place-order #place_order,
    body.has-sticky-checkout-mobile .checkout-page-wrapper .checkout-place-order #place_order {
        min-height: 44px !important;
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        border-radius: 8px !important;
    }
}

/* --- Checkout Refinements --- */
.checkout-title-marker {
    display: none !important;
}

.checkout-billing-toggle {
    width: 20px !important;
    height: 20px !important;
    flex: 0 0 20px !important;
    border: 2px solid color-mix(in srgb, var(--color-secondary, #F7A501) 55%, transparent) !important;
    background-color: #ffffff !important;
    border-radius: 9999px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

.checkout-billing-toggle > div {
    width: 8px !important;
    height: 8px !important;
    border-radius: 9999px !important;
    background-color: transparent !important;
    transition: background-color 0.2s ease !important;
}

.checkout-billing-toggle.is-active {
    border-color: var(--color-secondary) !important;
}

.checkout-billing-toggle.is-active > div {
    background-color: var(--color-secondary) !important;
}

.woocommerce-checkout #billing_first_name_field,
.woocommerce-checkout #billing_phone_field {
    width: calc(50% - 8px) !important;
    float: left !important;
    clear: none !important;
}

.woocommerce-checkout #billing_phone_field {
    float: right !important;
}

.woocommerce-checkout #billing_state_field {
    clear: both !important;
}

.checkout-terms-row {
    flex-wrap: nowrap !important;
}

.checkout-terms-row input[type="checkbox"] {
    appearance: auto !important;
    border-radius: 0 !important;
}

.checkout-terms-row label {
    display: block !important;
    margin: 0 !important;
}

@media (max-width: 640px) {
    .woocommerce-checkout #billing_first_name_field,
    .woocommerce-checkout #billing_phone_field {
        width: 100% !important;
        float: none !important;
    }
}

@media (max-width: 1023px) {
    .fbt-product-card,
    .fbt-total-card {
        width: 100% !important;
        flex-basis: auto !important;
    }
}

/* --- Price Font Size & Color Adjustments --- */
/* Regular price (original price) in red */
del,
del .woocommerce-Price-amount,
.price del,
.text-secondary del,
#product-price del,
#sticky-price-display del,
.woocommerce-Price-amount del {
    font-size: 0.95em !important;
    color: #ef4444 !important; /* Premium Red */
    font-weight: normal !important;
    margin-right: 6px !important;
    text-decoration: line-through !important;
    opacity: 0.85;
}

/* Sale price in green */
ins,
ins .woocommerce-Price-amount,
.price ins,
.text-secondary ins,
#product-price ins,
#sticky-price-display ins,
.woocommerce-Price-amount ins {
    text-decoration: none !important;
    font-weight: 800 !important;
    color: #16a34a !important; /* Premium Green */
}

#product-price .woocommerce-Price-amount,
#sticky-price-display .woocommerce-Price-amount {
    display: inline-block;
}

/* --- Shop Archive Styles --- */
.shop-sidebar .widget-content {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.shop-sidebar .widget.is-collapsed .widget-content {
    max-height: 0;
}

.shop-sidebar .widget svg {
    transition: transform 0.3s ease;
}

.shop-sidebar .widget.is-collapsed svg {
    transform: rotate(90deg);
}

/* Custom Checkbox Styling */
.shop-sidebar input[type="checkbox"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: var(--color-secondary);
    width: 1.15em;
    height: 1.15em;
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
    display: grid;
    place-content: center;
    cursor: pointer;
}

.shop-sidebar input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--color-secondary);
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.shop-sidebar input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.shop-sidebar input[type="checkbox"]:checked {
    border-color: var(--color-secondary);
}

/* WooCommerce Price Filter Slider Customization */
.widget_price_filter .price_slider {
    height: 4px !important;
    background: #f3f4f6 !important;
    border: none !important;
    margin: 1.5rem 0.5rem !important;
}

.widget_price_filter .ui-slider-range {
    background: var(--color-secondary) !important;
}

.widget_price_filter .ui-slider-handle {
    width: 1.25rem !important;
    height: 1.25rem !important;
    background: #fff !important;
    border: 3px solid var(--color-secondary) !important;
    border-radius: 50% !important;
    top: -0.5rem !important;
    cursor: pointer !important;
    outline: none !important;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1) !important;
}

/* Breadcrumb Styling */
.woocommerce-breadcrumb {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
}

.woocommerce-breadcrumb a {
    color: #6b7280;
    transition: color 0.2s;
}

.woocommerce-breadcrumb a:hover {
    color: var(--color-secondary);
}

/* Sorting Dropdown Styling */
.catalog-ordering-wrapper select {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 6px 32px 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.catalog-ordering-wrapper select:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 2px rgba(243, 146, 0, 0.1);
}

/* Fix Sort By Alignment */
.woocommerce-ordering {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
}

.catalog-ordering-wrapper {
    display: flex;
    align-items: center;
}

.woocommerce-result-count {
    margin: 0 !important;
    padding: 0 !important;
}

/* AJAX Add to Cart Loading State */
.add_to_cart_button.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.add_to_cart_button.loading::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
    margin-left: 6px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Top Selling Products --- */
.top-selling-products .top-selling-action {
    min-height: 34px !important;
    min-width: 50px !important;
    line-height: 1.15 !important;
    overflow: visible !important;
}

.top-selling-products .top-selling-action span {
    display: inline-block !important;
}

.top-selling-products .top-selling-action svg {
    width: 14px !important;
    height: 14px !important;
    flex: 0 0 14px !important;
}

@media (min-width: 640px) {
    .top-selling-products .top-selling-action {
        min-width: 108px !important;
    }

    .top-selling-products .top-selling-action svg {
        width: 16px !important;
        height: 16px !important;
        flex-basis: 16px !important;
    }
}


/* --- My Account Styles --- */

/* Login/Register layout is handled by Tailwind classes in form-login.php */
.woocommerce-account .woocommerce {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Legacy col2-set (only if custom template not loaded) */
.u-columns.col2-set {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 1024px) {
    .u-columns.col2-set {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── My Account Dashboard (after login) ── */
.woocommerce-account .woocommerce {
    padding-top: 32px;
    padding-bottom: 60px;
}
.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 24px 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    justify-content: center !important;
}
.woocommerce-MyAccount-navigation li {
    background: transparent !important;
    border: none !important;
    overflow: visible !important;
}
.woocommerce-MyAccount-navigation li a {
    display: block !important;
    position: relative !important;
    padding: 11px 18px 11px 44px !important;
    color: #475569 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01) !important;
    transition: all 0.25s ease !important;
}

/* Icon Mask definitions for menu links */
.woocommerce-MyAccount-navigation-link a::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: currentColor;
    transition: background-color 0.25s ease;
}
.woocommerce-MyAccount-navigation-link--dashboard a::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7'/%3E%3Crect x='14' y='3' width='7' height='7'/%3E%3Crect x='14' y='14' width='7' height='7'/%3E%3Crect x='3' y='14' width='7' height='7'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7'/%3E%3Crect x='14' y='3' width='7' height='7'/%3E%3Crect x='14' y='14' width='7' height='7'/%3E%3Crect x='3' y='14' width='7' height='7'/%3E%3C/svg%3E") no-repeat center;
}
.woocommerce-MyAccount-navigation-link--orders a::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E") no-repeat center;
}
.woocommerce-MyAccount-navigation-link--downloads a::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E") no-repeat center;
}
.woocommerce-MyAccount-navigation-link--edit-address a::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") no-repeat center;
}
.woocommerce-MyAccount-navigation-link--edit-account a::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") no-repeat center;
}
.woocommerce-MyAccount-navigation-link--customer-logout a::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3Cpolyline points='16 17 21 12 16 7'/%3E%3Cline x1='21' y1='12' x2='9' y2='12'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3Cpolyline points='16 17 21 12 16 7'/%3E%3Cline x1='21' y1='12' x2='9' y2='12'/%3E%3C/svg%3E") no-repeat center;
}

/* Active & Hover state */
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
    background: color-mix(in srgb, var(--color-secondary, #F7A501) 8%, #ffffff) !important;
    border-color: var(--color-secondary, #F7A501) !important;
    color: var(--color-secondary, #F7A501) !important;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--color-secondary, #F7A501) 5%, transparent) !important;
    border-left: 4px solid var(--color-secondary, #F7A501) !important;
}

.woocommerce-MyAccount-content {
    background: #fff !important;
    padding: 30px !important;
    border-radius: 16px !important;
    border: 1px solid #eef2f6 !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02), 0 8px 10px -6px rgba(0, 0, 0, 0.02) !important;
    color: #475569 !important;
    max-width: 960px !important;
    margin: 0 auto !important;
}

/* Premium Sidebar Layout on Desktop */
@media (min-width: 768px) {
    .logged-in.woocommerce-account .woocommerce {
        display: flex !important;
        align-items: start !important;
        gap: 32px !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .woocommerce-MyAccount-navigation {
        width: 260px !important;
        flex-shrink: 0 !important;
    }
    .woocommerce-MyAccount-navigation ul {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .woocommerce-MyAccount-navigation li {
        width: 100% !important;
    }
    .woocommerce-MyAccount-content {
        flex-grow: 1 !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
}

/* My Account Tables (Orders List) */
.woocommerce-MyAccount-content table.shop_table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-top: 15px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 1px solid #e2e8f0 !important;
}
.woocommerce-MyAccount-content table.shop_table th {
    background-color: #f8fafc !important;
    color: #1e293b !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 0.05em !important;
    padding: 14px 16px !important;
    text-align: left !important;
    border-bottom: 2px solid #e2e8f0 !important;
}
.woocommerce-MyAccount-content table.shop_table td {
    padding: 14px 16px !important;
    border-bottom: 1px solid #e2e8f0 !important;
    color: #475569 !important;
    font-size: 14px !important;
}
.woocommerce-MyAccount-content table.shop_table tr:last-child td {
    border-bottom: none !important;
}
.woocommerce-MyAccount-content table.shop_table a.button {
    background-color: var(--color-primary, #1E5D02) !important;
    color: #fff !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    display: inline-block !important;
    text-decoration: none !important;
    transition: opacity 0.2s !important;
}
.woocommerce-MyAccount-content table.shop_table a.button:hover {
    opacity: 0.9 !important;
}

/* Address Cards Grid */
/* Address Cards Grid */
.woocommerce-account .addresses,
.woocommerce-account .col2-set {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-top: 20px !important;
    float: none !important;
    width: 100% !important;
}
@media (min-width: 640px) {
    .woocommerce-account .addresses,
    .woocommerce-account .col2-set {
        grid-template-columns: 1fr 1fr !important;
    }
}
/* Disable clearfix pseudo-elements breaking grid layout */
.woocommerce-account .addresses::before,
.woocommerce-account .addresses::after,
.woocommerce-account .col2-set::before,
.woocommerce-account .col2-set::after {
    display: none !important;
}

.woocommerce-account .addresses .col-1,
.woocommerce-account .addresses .col-2,
.woocommerce-account .addresses .address,
.woocommerce-account .col2-set .col-1,
.woocommerce-account .col2-set .col-2 {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}
.woocommerce-Address {
    background: #f8fafc !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 12px !important;
    padding: 24px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01) !important;
    transition: all 0.25s ease !important;
}
.woocommerce-Address-title h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 10px !important;
}
.woocommerce-Address-title a.edit {
    color: var(--color-secondary, #F7A501) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-decoration: none !important;
}
.woocommerce-Address-title a.edit:hover {
    text-decoration: underline !important;
}
.woocommerce-Address address {
    font-style: normal !important;
    color: #475569 !important;
    line-height: 1.6 !important;
    font-size: 13px !important;
}

/* Forms in My Account */
/* Forms in My Account */
.woocommerce-MyAccount-content form .form-row {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 18px !important;
    width: 100% !important;
}
.woocommerce-MyAccount-content form .form-row label {
    font-weight: 600 !important;
    color: #475569 !important;
    margin-bottom: 6px !important;
    font-size: 13.5px !important;
}
.woocommerce-MyAccount-content form .form-row input.input-text,
.woocommerce-MyAccount-content form .form-row select {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    font-size: 14px !important;
    outline: none !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.01) !important;
    transition: all 0.2s ease !important;
    color: #334155 !important;
}
.woocommerce-MyAccount-content form .form-row input.input-text:focus,
.woocommerce-MyAccount-content form .form-row select:focus {
    border-color: var(--color-secondary, #F7A501) !important;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-secondary, #F7A501) 10%, transparent) !important;
}

/* Edit Account Grid Layout */
.woocommerce-EditAccountForm {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
}
.woocommerce-EditAccountForm p.woocommerce-form-row--wide,
.woocommerce-EditAccountForm fieldset,
.woocommerce-EditAccountForm p:last-of-type {
    grid-column: span 2 !important;
}
.woocommerce-EditAccountForm fieldset {
    border: none !important;
    padding: 0 !important;
    margin: 20px 0 5px 0 !important;
}
.woocommerce-EditAccountForm fieldset legend {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #253D4E !important;
    border-bottom: 2px solid #f1f5f9 !important;
    padding-bottom: 8px !important;
    width: 100% !important;
    margin-bottom: 16px !important;
}
.woocommerce-MyAccount-content em,
.woocommerce-MyAccount-content span.description {
    font-size: 12px !important;
    color: #94a3b8 !important;
    font-style: normal !important;
    margin-top: 4px !important;
    display: block !important;
}

.woocommerce-MyAccount-content form button.button {
    background-color: var(--color-secondary, #F7A501) !important;
    color: #fff !important;
    padding: 12px 28px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--color-secondary, #F7A501) 15%, transparent) !important;
    transition: all 0.2s ease !important;
}
.woocommerce-MyAccount-content form button.button:hover {
    opacity: 0.95 !important;
    box-shadow: 0 6px 16px color-mix(in srgb, var(--color-secondary, #F7A501) 25%, transparent) !important;
    transform: translateY(-1px) !important;
}

@media (max-width: 640px) {
    .woocommerce-EditAccountForm {
        grid-template-columns: 1fr !important;
    }
    .woocommerce-EditAccountForm p.woocommerce-form-row--wide,
    .woocommerce-EditAccountForm fieldset,
    .woocommerce-EditAccountForm p:last-of-type {
        grid-column: span 1 !important;
    }
}

/* --- Shake Animation for Checkout Buttons --- */
@keyframes checkout-shake {
    0%, 74%, 100% { transform: translateX(0); }
    78% { transform: translateX(-3px); }
    82% { transform: translateX(3px); }
    86% { transform: translateX(-2px); }
    90% { transform: translateX(2px); }
    94% { transform: translateX(0); }
}

.has-checkout-shake .checkout-shake {
    animation: checkout-shake 2.2s ease-in-out infinite;
    transform-origin: center;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.has-checkout-shake .checkout-shake:hover {
    animation-play-state: paused;
    filter: brightness(92%);
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.single_add_to_cart_button.added::after,
#single-add-to-cart-btn.added::after {
    display: none !important;
    content: none !important;
}

.product-action-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px !important;
    margin-bottom: 8px;
}

.product-action-grid form {
    margin: 0 !important;
    min-width: 0;
}

.product-action-btn {
    width: 100% !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
}

.product-action-btn svg {
    width: 16px !important;
    height: 16px !important;
    flex: 0 0 16px !important;
}

.product-action-btn--compact {
    height: 40px !important;
    min-height: 40px !important;
    font-size: 12px !important;
}

.product-action-btn--cart {
    background-color: var(--product-add-to-cart-bg, var(--color-secondary)) !important;
}

.product-action-btn--buy {
    background-color: var(--product-buy-now-bg, var(--color-primary)) !important;
}

.product-action-btn--whatsapp {
    background-color: var(--product-whatsapp-bg, #25D366) !important;
}

.product-action-btn--call {
    background-color: var(--product-call-bg, #1e3a8a) !important;
}

.add_to_cart_button {
    border-color: var(--product-add-to-cart-bg, var(--color-secondary)) !important;
    color: var(--product-add-to-cart-bg, var(--color-secondary)) !important;
}
.add_to_cart_button.bg-secondary,
.add_to_cart_button.bg-primary {
    color: #fff !important;
}

.add_to_cart_button:hover {
    background-color: var(--product-add-to-cart-bg, var(--color-secondary)) !important;
    border-color: var(--product-add-to-cart-bg, var(--color-secondary)) !important;
    color: #fff !important;
}

.buy-now-button {
    background-color: var(--product-buy-now-bg, var(--color-primary)) !important;
    color: #fff !important;
}

.buy-now-button:hover {
    filter: brightness(0.92);
}

.product-action-btn:disabled,
.product-action-btn.disabled,
.product-action-btn.wc-variation-is-unavailable {
    opacity: 0.55 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

.woocom-stock-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 8px 0;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    padding: 7px 10px;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

.woocom-stock-badge--out {
    background: #dc2626;
}

.woocom-stock-badge--preorder {
    background: #7c3aed;
}

.woocom-stock-request-form {
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    border-radius: 8px;
    padding: 14px;
}

.woocom-stock-request-title {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.woocom-stock-request-fields {
    display: flex;
    gap: 8px;
}

.woocom-stock-request-fields input {
    min-width: 0;
    flex: 1;
    height: 42px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 14px;
    background: #fff;
}

.woocom-stock-request-qty {
    max-width: 80px !important;
    text-align: center;
}

.woocom-stock-request-fields button {
    height: 42px;
    border: 0;
    border-radius: 6px;
    padding: 0 14px;
    background: var(--color-secondary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.woocom-stock-request-fields button:disabled {
    cursor: wait;
    opacity: 0.7;
}

.woocom-stock-request-message {
    min-height: 16px;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
}

.woocom-stock-request-message.is-success {
    color: #15803d;
}

.woocom-stock-request-message.is-error {
    color: #dc2626;
}

.woocom-stock-request-form--archive {
    margin-top: auto;
    padding: 8px;
}

.woocom-stock-request-form--archive .woocom-stock-request-fields {
    flex-direction: column;
    gap: 6px;
}

.woocom-stock-request-form--archive .woocom-stock-request-fields input,
.woocom-stock-request-form--archive .woocom-stock-request-fields button {
    width: 100%;
    height: 36px;
    font-size: 12px;
}

@media (max-width: 480px) {
    .product-action-grid {
        gap: 8px !important;
    }

    .product-action-btn {
        height: 40px !important;
        min-height: 40px !important;
        padding: 0 10px !important;
        gap: 6px !important;
        font-size: 12px !important;
    }

    .product-action-btn--compact {
        height: 40px !important;
        min-height: 40px !important;
        font-size: 11px !important;
    }
}

/* Global Button Hovers */
.bg-secondary:hover,
.bg-primary:hover,
.add_to_cart_button:hover,
.buy_now_button:hover,
.single_add_to_cart_button:hover {
    filter: brightness(90%);
    transition: all 0.2s ease;
}

.bg-secondary:active,
.bg-primary:active {
    filter: brightness(80%);
}

/* --- Theme Styles End --- */



/* Hide default variation price as it is shown in the custom boxes */
.woocommerce-variation-price {
    display: none !important;
}

/* Custom Hover Button Text Visibility Fix */
a.add_to_cart_button:hover,
a.woocom-custom-add-to-cart:hover,
button.woocom-pre-order-btn:hover,
a.woocom-pre-order-btn:hover {
    background-color: var(--color-secondary, #F7A501) !important;
    color: #ffffff !important;
    border-color: var(--color-secondary, #F7A501) !important;
}
a.add_to_cart_button:hover *,
a.woocom-custom-add-to-cart:hover *,
button.woocom-pre-order-btn:hover *,
a.woocom-pre-order-btn:hover * {
    color: #ffffff !important;
    stroke: #ffffff !important;
}

/* Quick View Button styling & Hover Effect (Full Width Bottom Bar) */
.woocom-quick-view-btn {
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    transform: translateY(100%) !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: var(--color-primary, #1E5D02) !important;
    color: #ffffff !important;
    border: 2px solid var(--color-primary, #1E5D02) !important;
}

.woocom-quick-view-btn svg {
    stroke: #ffffff !important;
}

.group-img-wrapper:hover .woocom-quick-view-btn {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Quick View Button Hover/Active Border Styling */
.woocom-quick-view-btn:hover,
.woocom-quick-view-btn:active {
    border: 2px solid var(--color-secondary, #F7A501) !important;
    background-color: var(--color-secondary, #F7A501) !important;
    color: #ffffff !important;
}
.woocom-quick-view-btn:hover svg,
.woocom-quick-view-btn:active svg {
    stroke: #ffffff !important;
}

/* --- WooCommerce Notice System (Success, Info, Error) --- */
.woocommerce-error,
.woocommerce-info,
.woocommerce-message,
.woocommerce-notice {
    padding: 14px 20px 14px 44px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    margin: 0 0 25px 0 !important;
    position: relative !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    border: none !important;
    list-style: none !important;
}

/* Error Notice (Red) */
.woocommerce-error {
    background-color: #fef2f2 !important;
    color: #991b1b !important;
    border-left: 4px solid #ef4444 !important;
}
.woocommerce-error::before {
    content: "\e016" !important;
    font-family: WooCommerce !important;
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 16px !important;
    color: #ef4444 !important;
}
.woocommerce-error li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Success Message (Green) */
.woocommerce-message {
    background-color: #f0fdf4 !important;
    color: #166534 !important;
    border-left: 4px solid #22c55e !important;
}
.woocommerce-message::before {
    content: "\e015" !important;
    font-family: WooCommerce !important;
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 16px !important;
    color: #22c55e !important;
}

/* Info Notice (Blue) */
.woocommerce-info {
    background-color: #eff6ff !important;
    color: #1e40af !important;
    border-left: 4px solid #3b82f6 !important;
}
.woocommerce-info::before {
    content: "\e015" !important;
    font-family: WooCommerce !important;
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 16px !important;
    color: #3b82f6 !important;
}

/* Remove default WooCommerce list styling reset on notices */
.woocommerce-error {
    margin-left: 0 !important;
    padding-left: 44px !important;
}

/* User Profile Header Dropdown Menu Hover Effect */
.woocom-user-dropdown-wrapper {
    position: relative !important;
}
.woocom-user-dropdown {
    width: 200px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.woocom-user-dropdown-wrapper:hover .woocom-user-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Dropdown Menu Items styling */
.woocom-user-dropdown a.woocom-dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 16px !important;
    text-decoration: none !important;
    color: #475569 !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
}
.woocom-user-dropdown a.woocom-dropdown-item:hover {
    background-color: color-mix(in srgb, var(--color-secondary, #F7A501) 8%, #ffffff) !important;
    color: var(--color-secondary, #F7A501) !important;
}
.woocom-user-dropdown a.woocom-dropdown-item.logout-link {
    color: #ef4444 !important;
}
.woocom-user-dropdown a.woocom-dropdown-item.logout-link:hover {
    background-color: #fef2f2 !important;
    color: #ef4444 !important;
}
.woocom-user-dropdown a.woocom-dropdown-item svg {
    flex-shrink: 0 !important;
    width: 15px !important;
    height: 15px !important;
    color: currentColor !important;
}

/* --- WooCommerce Order Tracking Form Styling --- */
.woocommerce-form-track-order {
    max-width: 480px !important;
    margin: 40px auto !important;
    background: #ffffff !important;
    padding: 35px 30px !important;
    border-radius: 16px !important;
    border: 1px solid #eef2f6 !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02), 0 8px 10px -6px rgba(0, 0, 0, 0.02) !important;
}
.woocommerce-form-track-order p {
    margin-bottom: 20px !important;
    font-size: 13.5px !important;
    color: #64748b !important;
    line-height: 1.6 !important;
}
.woocommerce-form-track-order .form-row {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin-bottom: 18px !important;
}
.woocommerce-form-track-order .form-row label {
    font-weight: 600 !important;
    color: #475569 !important;
    margin-bottom: 6px !important;
    font-size: 13px !important;
}
.woocommerce-form-track-order .form-row input.input-text {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    font-size: 14px !important;
    outline: none !important;
    transition: all 0.2s ease !important;
    color: #334155 !important;
}
.woocommerce-form-track-order .form-row input.input-text:focus {
    border-color: var(--color-secondary, #F7A501) !important;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-secondary, #F7A501) 10%, transparent) !important;
}
.woocommerce-form-track-order button.button {
    width: 100% !important;
    background-color: var(--color-secondary, #F7A501) !important;
    color: #fff !important;
    padding: 13px 20px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--color-secondary, #F7A501) 15%, transparent) !important;
    transition: all 0.2s ease !important;
    margin-top: 8px !important;
}
.woocommerce-form-track-order button.button:hover {
    opacity: 0.95 !important;
    box-shadow: 0 6px 16px color-mix(in srgb, var(--color-secondary, #F7A501) 25%, transparent) !important;
    transform: translateY(-1px) !important;
}

/* Fix Product Card Save/Discount Badge Alignment & Spacing */
.absolute.top-0.right-0.z-10 {
    top: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}
.absolute.top-0.right-0.z-10 span {
    display: inline-block !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    vertical-align: top !important;
}

/* Floating Multi-Chat Widget Styles */
#woocom-floating-chat-toggle {
    position: fixed !important;
    left: 24px !important;
    bottom: 40px !important; /* Desktop bottom, matches scroll-to-top */
    z-index: 99999 !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 9999px !important;
    background-color: #b08bbb !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}
#woocom-floating-chat-toggle:hover {
    transform: scale(1.05) !important;
}

#woocom-floating-chat-actions {
    position: fixed !important;
    left: 26px !important;
    bottom: 100px !important; /* Desktop bottom actions */
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: scale(0) translateY(40px) !important;
    transform-origin: bottom !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
#woocom-floating-chat-actions.chat-open {
    transform: scale(1) translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Mobile Alignment (Matches mobile Scroll-to-Top height) */
@media (max-width: 1023px) {
    #woocom-floating-chat-toggle {
        bottom: 96px !important; /* Raised above bottom bar, same as scroll-to-top */
        left: 24px !important;
    }
    #woocom-floating-chat-actions {
        bottom: 156px !important; /* 96px + 48px button + 12px gap */
        left: 26px !important;
    }
}
#woocom-floating-chat-actions a {
    width: 44px !important;
    height: 44px !important;
    border-radius: 9999px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.2s ease !important;
    text-decoration: none !important;
}
#woocom-floating-chat-actions a:hover {
    transform: scale(1.1) !important;
}
#woocom-floating-chat-actions a.woocom-chat-whatsapp {
    background-color: #25D366 !important;
}
#woocom-floating-chat-actions a.woocom-chat-messenger {
    background-color: #0084FF !important;
}
#woocom-floating-chat-actions a.woocom-chat-phone {
    background-color: #00E676 !important;
}
#woocom-floating-chat-actions .group span {
    position: absolute !important;
    left: 56px !important;
    background: #1e293b !important;
    color: #ffffff !important;
    text-shadow: none !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
    transform: translateX(-5px) !important;
    top: 50% !important;
    transform: translateY(-50%) translateX(-5px) !important;
}
#woocom-floating-chat-actions a:hover span {
    opacity: 1 !important;
    transform: translateY(-50%) translateX(0) !important;
}

/* --- Single Product Gallery Layout (Horizontal Below Main Image) --- */
.woocom-single-gallery {
    display: flex !important;
    flex-direction: column !important; /* Always vertical layout */
}

/* Slider Wrapper */
.woocom-main-slider-wrap {
    position: relative !important;
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important; /* Force clipping */
    background-color: #ffffff !important;
}

.woocom-main-slider-wrap button {
    z-index: 50 !important;
}

/* Slider Track */
#main-image-slider {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    transition: transform 0.5s ease-in-out !important;
}

#main-image-slider > div {
    width: 100% !important;
    height: 100% !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Thumbnails (Horizontal Row below Main Image) */
.woocom-gallery-thumbnails {
    display: flex !important;
    flex-direction: row !important; /* Always horizontal */
    width: 100% !important;
    overflow-x: auto !important; /* Enable scroll if many */
    padding-bottom: 8px !important;
    margin-top: 14px !important; /* Gap below the main image */
    gap: 10px !important;
}
.woocom-gallery-thumbnails .thumbnail-item {
    flex-shrink: 0 !important;
    width: 64px !important;
    height: 64px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border-width: 1px !important;
    transition: all 0.2s ease !important;
}

/* Responsive configurations */
@media (max-width: 1023px) {
    .woocom-single-gallery {
        width: 100% !important;
    }
}

@media (min-width: 1024px) {
    .woocom-single-gallery {
        width: 50% !important; /* Occupy exactly 50% of the product details card */
    }
}

/* Disable checkout AJAX loaders, overlays, and spinners completely for seamless updates */
.blockUI.blockOverlay,
.blockUI.blockMsg,
.woocommerce .blockUI.blockOverlay,
.woocommerce .blockUI.blockMsg,
.woocommerce-page .blockUI.blockOverlay,
.woocommerce-page .blockUI.blockMsg,
.woocommerce .button.loading::after,
.woocommerce-page .button.loading::after,
.loading::after,
a.ajax_add_to_cart.loading::after,
.woocommerce a.ajax_add_to_cart.loading::after,
.woocommerce-page a.ajax_add_to_cart.loading::after {
    display: none !important;
    background: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    content: none !important;
}

/* ==========================================================================
   LARACOM PREMIUM GADGET SINGLE PRODUCT LAYOUT (CUSTOM CSS)
   ========================================================================== */
.laracom-single-product {
    font-family: 'Poppins', sans-serif !important;
    background-color: transparent !important;
    color: #334155 !important;
    padding: 0 !important;
    margin: 0 !important;
}
.dark .laracom-single-product {
    color: #cbd5e1 !important;
}

/* Breadcrumbs / Top Navigation */
.laracom-top-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
    padding: 8px 16px !important;
}
.laracom-top-nav-left {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}
.laracom-breadcrumb {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #64748b !important;
}
.dark .laracom-breadcrumb {
    color: #94a3b8 !important;
}
.laracom-breadcrumb span {
    cursor: pointer;
    transition: color 0.2s ease;
}
.laracom-breadcrumb span:hover {
    color: var(--color-primary, #2563EB) !important;
}
.laracom-breadcrumb span.active-item {
    color: #0f172a !important;
    font-weight: 700 !important;
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dark .laracom-breadcrumb span.active-item {
    color: #f1f5f9 !important;
}
.laracom-back-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 18px !important;
    border-radius: 9999px !important;
    border: 1px solid #e2e8f0 !important;
    background-color: #ffffff !important;
    color: #334155 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}
.dark .laracom-back-btn {
    border-color: #1e293b !important;
    background-color: #0f172a !important;
    color: #cbd5e1 !important;
}
.laracom-back-btn:hover {
    border-color: var(--color-primary, #2563EB) !important;
    color: var(--color-primary, #2563EB) !important;
}
.laracom-back-btn:active {
    transform: scale(0.95);
}
.laracom-back-btn.md-hide-btn { display: inline-flex !important; }
.laracom-back-btn.md-show-btn { display: none !important; }
@media (min-width: 768px) {
    .laracom-back-btn.md-hide-btn { display: none !important; }
    .laracom-back-btn.md-show-btn { display: inline-flex !important; }
}

/* Product Grid */
.laracom-product-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 0 16px !important;
}
@media (min-width: 1024px) {
    .laracom-product-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
        gap: 40px !important;
    }
}

.laracom-gallery-col {
    grid-column: span 1 / span 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}
@media (min-width: 1024px) {
    .laracom-gallery-col {
        grid-column: span 6 / span 6 !important;
    }
}

.laracom-details-col {
    grid-column: span 1 / span 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}
@media (min-width: 1024px) {
    .laracom-details-col {
        grid-column: span 6 / span 6 !important;
        gap: 20px !important;
    }
}

/* Main Image Card */
.laracom-main-image-card {
    background-color: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.015) !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
}
.dark .laracom-main-image-card {
    background-color: #0f172a !important;
    border-color: #1e293b !important;
}
.laracom-main-image-card img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.laracom-main-image-card:hover img {
    transform: scale(1.05) !important;
}

.laracom-gallery-card-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 32px !important;
    height: 32px !important;
    background-color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    z-index: 10 !important;
    color: #475569 !important;
}
.dark .laracom-gallery-card-btn {
    background-color: rgba(15, 23, 42, 0.8) !important;
    color: #cbd5e1 !important;
}
.laracom-gallery-card-btn:hover {
    color: var(--color-primary, #2563EB) !important;
    background-color: #ffffff !important;
}
.laracom-gallery-card-btn.prev { left: 16px !important; }
.laracom-gallery-card-btn.next { right: 16px !important; }

/* Thumbnails */
.laracom-thumbnails-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
}
.laracom-thumbnail-btn {
    aspect-ratio: 1 / 1 !important;
    border-radius: 12px !important;
    border: 2px solid #f1f5f9 !important;
    padding: 4px !important;
    background-color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    overflow: hidden !important;
}
.dark .laracom-thumbnail-btn {
    border-color: #1e293b !important;
    background-color: #0f172a !important;
}
.laracom-thumbnail-btn.active {
    border-color: var(--color-primary, #2563EB) !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05) !important;
}
.laracom-thumbnail-btn img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    border-radius: 8px !important;
}

/* Rating badge & Compare */
.laracom-meta-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}
.laracom-rating-badge {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    background-color: #f1f5f9 !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    color: #475569 !important;
}
.dark .laracom-rating-badge {
    background-color: #1e293b !important;
    color: #cbd5e1 !important;
}
.laracom-rating-badge svg {
    color: #f59e0b !important;
}

.laracom-compare-btn {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    border: 1px solid #e2e8f0 !important;
    background-color: #ffffff !important;
    color: #475569 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}
.dark .laracom-compare-btn {
    border-color: #1e293b !important;
    background-color: #0f172a !important;
    color: #cbd5e1 !important;
}
.laracom-compare-btn:hover {
    border-color: color-mix(in srgb, var(--color-primary, #2563EB) 40%, transparent) !important;
}
.laracom-compare-btn:active {
    transform: scale(0.95);
}

.laracom-price-card {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}
.dark .laracom-price-card {
    background-color: transparent !important;
    border-color: transparent !important;
}
.laracom-price-amount {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: var(--color-secondary, #F7A501) !important;
    display: flex !important;
    align-items: center !important;
}
.laracom-price-amount .taka-symbol {
    color: var(--color-secondary, #F7A501) !important;
    margin-right: 4px !important;
}
.laracom-price-regular {
    font-size: 15px !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
    margin-left: 8px !important;
}
.laracom-save-badge {
    font-size: 12px !important;
    background-color: color-mix(in srgb, var(--color-secondary, #F7A501) 8%, #ffffff) !important;
    color: var(--color-secondary, #F7A501) !important;
    padding: 2px 10px !important;
    border-radius: 9999px !important;
    font-weight: 700 !important;
    border: none !important;
    margin-left: 10px !important;
}
.dark .laracom-save-badge {
    background-color: rgba(247, 165, 1, 0.2) !important;
    color: var(--color-secondary, #F7A501) !important;
}
.laracom-stock-badge {
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 4px 12px !important;
    border-radius: 9999px !important;
    display: inline-flex !important;
    align-items: center !important;
}
.laracom-stock-badge.in-stock {
    background-color: #ecfdf5 !important;
    color: #059669 !important;
}
.laracom-stock-badge.out-of-stock {
    background-color: #fef2f2 !important;
    color: #dc2626 !important;
}

/* Stock progress */
.laracom-stock-warning-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    margin-top: 8px !important;
}
.laracom-stock-warning-label {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #ef4444 !important;
}
.laracom-stock-bar-wrap {
    height: 8px !important;
    width: 100% !important;
    background-color: #f1f5f9 !important;
    border-radius: 9999px !important;
    overflow: hidden !important;
}
.dark .laracom-stock-bar-wrap {
    background-color: #1e293b !important;
}
.laracom-stock-bar-inner {
    height: 100% !important;
    background-image: linear-gradient(to right, #ef4444, var(--color-primary, #2563EB)) !important;
    border-radius: 9999px !important;
    transition: all 1s ease !important;
}

/* Actions Wrapper */
.laracom-qty-row-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 8px !important;
}
.laracom-actions-row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
}
@media (min-width: 768px) {
    .laracom-actions-row {
        flex-wrap: nowrap !important;
    }
}

.laracom-qty-selector {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background-color: #ffffff !important;
    padding: 8px !important;
    width: 120px !important;
    height: 48px !important;
    flex-shrink: 0 !important;
}
.dark .laracom-qty-selector {
    border-color: #1e293b !important;
    background-color: #0f172a !important;
}
.laracom-qty-selector button {
    display: flex !important;
    height: 32px !important;
    width: 32px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    background-color: #f8fafc !important;
    border: none !important;
    color: #334155 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}
.dark .laracom-qty-selector button {
    background-color: #1e293b !important;
    color: #cbd5e1 !important;
}
.laracom-qty-selector button:hover {
    background-color: #f1f5f9 !important;
}
.dark .laracom-qty-selector button:hover {
    background-color: #334155 !important;
}
.laracom-qty-display {
    font-size: 16px !important;
    font-weight: 900 !important;
    color: #1e293b !important;
    padding: 0 8px !important;
}
.dark .laracom-qty-display {
    color: #f1f5f9 !important;
}

.laracom-btn-primary {
    flex-grow: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    height: 48px !important;
    background-color: var(--color-primary, #2563EB) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-radius: 12px !important;
    border: none !important;
    letter-spacing: 0.05em !important;
    cursor: pointer !important;
    box-shadow: 0 4px 6px color-mix(in srgb, var(--color-primary, #2563EB) 10%, transparent) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}
.laracom-btn-primary:hover {
    opacity: 0.9 !important;
    box-shadow: 0 6px 12px color-mix(in srgb, var(--color-primary, #2563EB) 15%, transparent) !important;
}
.laracom-btn-primary:active {
    transform: scale(0.95) !important;
}

.laracom-btn-secondary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 48px !important;
    background-color: #0f172a !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-radius: 12px !important;
    border: none !important;
    letter-spacing: 0.05em !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    flex-grow: 1 !important;
    text-decoration: none !important;
}
.dark .laracom-btn-secondary {
    background-color: #ffffff !important;
    color: #0f172a !important;
}
.laracom-btn-secondary:hover {
    background-color: #000000 !important;
}
.dark .laracom-btn-secondary:hover {
    background-color: #f1f5f9 !important;
}
.laracom-btn-secondary:active {
    transform: scale(0.95) !important;
}
.laracom-btn-secondary-mobile {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 48px !important;
    margin-top: 8px !important;
}
@media (min-width: 768px) {
    .laracom-btn-secondary-mobile {
        display: none !important;
    }
    .laracom-btn-secondary {
        display: inline-flex !important;
    }
}
@media (max-width: 767px) {
    .laracom-btn-secondary {
        display: none !important;
    }
}

/* Active Offers */
.laracom-offers-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-top: 24px !important;
    margin-bottom: 14px !important;
}
.dark .laracom-offers-title {
    color: #e2e8f0 !important;
}

.laracom-offers-grid {
    display: flex !important;
    overflow-x: auto !important;
    gap: 16px !important;
    padding-bottom: 12px !important;
}
@media (min-width: 640px) {
    .laracom-offers-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

.laracom-ticket-card {
    position: relative !important;
    padding-top: 12px !important;
    flex-shrink: 0 !important;
    width: calc(60% - 10px) !important;
}
@media (min-width: 640px) {
    .laracom-ticket-card {
        width: auto !important;
    }
}

.laracom-ticket-inner {
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: 1px solid #fee2e2 !important;
    background-image: linear-gradient(to bottom, rgba(254, 242, 242, 0.4), rgba(254, 242, 242, 0.1)) !important;
    border-radius: 16px !important;
    padding: 16px !important;
    padding-top: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100% !important;
    overflow: hidden !important;
}
.dark .laracom-ticket-inner {
    border-color: rgba(127, 29, 29, 0.3) !important;
    background-image: linear-gradient(to bottom, rgba(127, 29, 29, 0.05), rgba(127, 29, 29, 0.02)) !important;
}
.laracom-ticket-inner.active {
    border-color: var(--color-primary, #2563EB) !important;
    background-color: color-mix(in srgb, var(--color-primary, #2563EB) 5%, transparent) !important;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--color-primary, #2563EB) 5%, transparent) !important;
    transform: scale(1.02) !important;
}
.laracom-ticket-badge {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background-color: var(--color-primary, #2563EB) !important;
    color: #ffffff !important;
    font-size: 9px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 4px 14px !important;
    border-radius: 9999px !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05) !important;
    z-index: 10 !important;
    white-space: nowrap !important;
}

.laracom-ticket-divider {
    width: 100% !important;
    border-top: 1px dashed #fee2e2 !important;
    margin: 14px 0 !important;
    position: relative !important;
}
.dark .laracom-ticket-divider {
    border-color: rgba(127, 29, 29, 0.3) !important;
}
.laracom-ticket-divider-dot {
    position: absolute !important;
    top: -6px !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: #ffffff !important; /* Page Background match */
}
.dark .laracom-ticket-divider-dot {
    background-color: #0b0f19 !important;
}
.laracom-ticket-divider-dot.left {
    left: -22px !important;
    border-right: 1px solid #fee2e2 !important;
}
.dark .laracom-ticket-divider-dot.left {
    border-color: rgba(127, 29, 29, 0.3) !important;
}
.laracom-ticket-divider-dot.right {
    right: -22px !important;
    border-left: 1px solid #fee2e2 !important;
}
.dark .laracom-ticket-divider-dot.right {
    border-color: rgba(127, 29, 29, 0.3) !important;
}

/* Bottom layout (Tabs and Sidebar) */
.laracom-bottom-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    margin-top: 48px !important;
    padding: 0 16px !important;
}
@media (min-width: 1024px) {
    .laracom-bottom-layout {
        grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
        gap: 40px !important;
    }
}
.laracom-tabs-col {
    grid-column: span 1 / span 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
}
@media (min-width: 1024px) {
    .laracom-tabs-col {
        grid-column: span 9 / span 9 !important;
    }
}

.laracom-sidebar-col {
    grid-column: span 1 / span 1 !important;
}
@media (min-width: 1024px) {
    .laracom-sidebar-col {
        grid-column: span 3 / span 3 !important;
    }
}

.laracom-tabs-bar {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 6px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    padding-bottom: 16px !important;
    position: sticky !important;
    top: 64px !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(4px) !important;
    z-index: 20 !important;
    padding-top: 8px !important;
    width: 100% !important;
}
.dark .laracom-tabs-bar {
    border-color: #1e293b !important;
    background-color: rgba(15, 23, 42, 0.95) !important;
}
@media (min-width: 768px) {
    .laracom-tabs-bar {
        display: flex !important;
        justify-content: flex-start !important;
        gap: 12px !important;
    }
}

.laracom-tab-btn {
    text-align: center !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    border: 1px solid #e2e8f0 !important;
    background-color: #ffffff !important;
    color: #475569 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.dark .laracom-tab-btn {
    border-color: #1e293b !important;
    background-color: #0f172a !important;
    color: #cbd5e1 !important;
}
.laracom-tab-btn.active {
    background-color: var(--color-primary, #2563EB) !important;
    color: #ffffff !important;
    border-color: var(--color-primary, #2563EB) !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05) !important;
}

.laracom-tab-section {
    padding-top: 24px !important;
}
.laracom-tab-section-title {
    font-size: 20px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    margin-bottom: 16px !important;
}
.dark .laracom-tab-section-title {
    color: #cbd5e1 !important;
}

/* Sidebar sticky content */
.laracom-sidebar-sticky {
    background-color: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 16px !important;
    padding: 20px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.015) !important;
    position: sticky !important;
    top: 80px !important;
}
.dark .laracom-sidebar-sticky {
    background-color: #0f172a !important;
    border-color: #1e293b !important;
}
.laracom-sidebar-title {
    font-size: 16px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}
.dark .laracom-sidebar-title {
    color: #cbd5e1 !important;
    border-color: #1e293b !important;
}

.laracom-rec-card {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    position: relative !important;
    margin-bottom: 16px !important;
}
.dark .laracom-rec-card {
    background-color: #0f172a !important;
    border-color: #1e293b !important;
}
.laracom-rec-card:hover {
    border-color: var(--color-primary, #2563EB) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03) !important;
}

/* Comparison Floating Bar & Modal */
.laracom-compare-drawer {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    z-index: 50 !important;
    max-width: 360px !important;
    width: calc(100% - 48px) !important;
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}
.dark .laracom-compare-drawer {
    background-color: #0f172a !important;
    border-color: #1e293b !important;
}

.laracom-compare-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 50 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(4px) !important;
    padding: 16px !important;
}
.laracom-compare-modal-inner {
    background-color: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 24px !important;
    width: 100% !important;
    max-width: 896px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
    padding: 24px !important;
    position: relative !important;
}
.dark .laracom-compare-modal-inner {
    background-color: #0f172a !important;
    border-color: #1e293b !important;
}

/* Review Cards & Masonry Grid */
.laracom-reviews-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
}
@media (min-width: 768px) {
    .laracom-reviews-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}
.laracom-review-card {
    background-color: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 16px !important;
    padding: 20px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.015) !important;
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
}
.dark .laracom-review-card {
    background-color: #0f172a !important;
    border-color: #1e293b !important;
}

/* FBT item card classes */
.laracom-fbt-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    background-color: rgba(248, 250, 252, 0.5) !important;
    padding: 16px !important;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    position: relative !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
}
.dark .laracom-fbt-item {
    background-color: rgba(30, 41, 59, 0.4) !important;
    border-color: #1e293b !important;
}
.laracom-fbt-item.main-item {
    border-color: var(--color-primary, #2563EB) !important;
}








/* ==========================================================================
   COMPREHENSIVE NATIVE CSS UTILITIES FOR GADGET SINGLE PRODUCT LAYOUT
   ========================================================================== */

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
.block { display: block !important; }
.inline-block { display: inline-block !important; }
.flex { display: flex !important; }
.inline-flex { display: inline-flex !important; }
.grid { display: grid !important; }
.hidden { display: none !important; }
.absolute { position: absolute !important; }
.relative { position: relative !important; }
.fixed { position: fixed !important; }
.sticky { position: sticky !important; }
.z-10 { z-index: 10 !important; }
.z-20 { z-index: 20 !important; }
.z-30 { z-index: 30 !important; }
.z-40 { z-index: 40 !important; }
.z-50 { z-index: 50 !important; }
.z-210 { z-index: 210 !important; }
.z-\\[209\\] { z-index: 209 !important; }
.z-\\[210\\] { z-index: 210 !important; }
.top-0 { top: 0 !important; }
.top-1 { top: 0.25rem !important; }
.top-1\.5 { top: 0.375rem !important; }
.top-2 { top: 0.5rem !important; }
.top-3 { top: 0.75rem !important; }
.top-4 { top: 1rem !important; }
.top-6 { top: 1.5rem !important; }
.top-16 { top: 4rem !important; }
.top-1\/2 { top: 50% !important; }
.bottom-0 { bottom: 0 !important; }
.bottom-2 { bottom: 0.5rem !important; }
.bottom-3 { bottom: 0.75rem !important; }
.bottom-6 { bottom: 1.5rem !important; }
.left-0 { left: 0 !important; }
.left-2 { left: 0.5rem !important; }
.left-4 { left: 1rem !important; }
.left-1\/2 { left: 50% !important; }
.right-0 { right: 0 !important; }
.right-2 { right: 0.5rem !important; }
.right-3 { right: 0.75rem !important; }
.right-4 { right: 1rem !important; }
.right-5 { right: 1.25rem !important; }
.right-6 { right: 1.5rem !important; }
.inset-0 { top: 0 !important; right: 0 !important; bottom: 0 !important; left: 0 !important; }
.-left-\[22px\] { left: -22px !important; }
.-right-\[22px\] { right: -22px !important; }
.-top-1\.5 { top: -0.375rem !important; }
.-bottom-\[1px\] { bottom: -1px !important; }
.translate-x-full { transform: translateX(100%) !important; }
.-translate-x-full { transform: translateX(-100%) !important; }
.-translate-x-1\/2 { transform: translateX(-50%) !important; }
.-translate-y-1\/2 { transform: translateY(-50%) !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.flex-grow { flex-grow: 1 !important; }
.flex-1 { flex: 1 1 0% !important; }
.shrink-0 { flex-shrink: 0 !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }
.items-end { align-items: flex-end !important; }
.items-baseline { align-items: baseline !important; }
.items-stretch { align-items: stretch !important; }
.justify-between { justify-content: space-between !important; }
.justify-center { justify-content: center !important; }
.justify-start { justify-content: flex-start !important; }
.justify-end { justify-content: flex-end !important; }
.align-middle { vertical-align: middle !important; }
.w-full { width: 100% !important; }
.w-auto { width: auto !important; }
.w-3 { width: 0.75rem !important; }
.w-3\.5 { width: 0.875rem !important; }
.w-4 { width: 1rem !important; }
.w-4\.5 { width: 1.125rem !important; }
.w-5 { width: 1.25rem !important; }
.w-6 { width: 1.5rem !important; }
.w-8 { width: 2rem !important; }
.w-9 { width: 2.25rem !important; }
.w-10 { width: 2.5rem !important; }
.w-11 { width: 2.75rem !important; }
.w-12 { width: 3rem !important; }
.w-14 { width: 3.5rem !important; }
.w-16 { width: 4rem !important; }
.w-20 { width: 5rem !important; }
.w-24 { width: 6rem !important; }
.w-32 { width: 8rem !important; }
.w-48 { width: 12rem !important; }
.w-1\/2 { width: 50% !important; }
.w-\[calc\(100\%-48px\)\] { width: calc(100% - 48px) !important; }
.w-\[360px\] { width: 360px !important; }
.max-w-xs { max-width: 20rem !important; }
.max-w-sm { max-width: 24rem !important; }
.max-w-md { max-width: 28rem !important; }
.max-w-lg { max-width: 32rem !important; }
.max-w-xl { max-width: 36rem !important; }
.max-w-2xl { max-width: 42rem !important; }
.max-w-3xl { max-width: 48rem !important; }
.max-w-4xl { max-width: 56rem !important; }
.max-w-\[120px\] { max-width: 120px !important; }
.max-w-\[140px\] { max-width: 140px !important; }
.max-w-full { max-width: 100% !important; }
.max-w-none { max-width: none !important; }
.h-full { height: 100% !important; }
.h-auto { height: auto !important; }
.h-2 { height: 0.5rem !important; }
.h-3 { height: 0.75rem !important; }
.h-3\.5 { height: 0.875rem !important; }
.h-4 { height: 1rem !important; }
.h-4\.5 { height: 1.125rem !important; }
.h-5 { height: 1.25rem !important; }
.h-6 { height: 1.5rem !important; }
.h-8 { height: 2rem !important; }
.h-9 { height: 2.25rem !important; }
.h-10 { height: 2.5rem !important; }
.h-11 { height: 2.75rem !important; }
.h-12 { height: 3rem !important; }
.h-14 { height: 3.5rem !important; }
.h-16 { height: 4rem !important; }
.h-20 { height: 5rem !important; }
.h-24 { height: 6rem !important; }
.h-\[2px\] { height: 2px !important; }
.h-\[3px\] { height: 3px !important; }
.max-h-\[85vh\] { max-height: 85vh !important; }
.max-h-full { max-height: 100% !important; }
.min-h-\[14px\] { min-height: 14px !important; }
.min-h-\[16px\] { min-height: 16px !important; }
.min-h-\[72px\] { min-height: 72px !important; }
.min-w-0 { min-width: 0 !important; }
.aspect-square { aspect-ratio: 1 / 1 !important; }
.aspect-video { aspect-ratio: 16 / 9 !important; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5 !important; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.col-span-1 { grid-column: span 1 / span 1 !important; }
.col-span-2 { grid-column: span 2 / span 2 !important; }
.col-span-3 { grid-column: span 3 / span 3 !important; }
.col-span-4 { grid-column: span 4 / span 4 !important; }
.p-0 { padding: 0 !important; }
.p-0\.5 { padding: 0.125rem !important; }
.p-1 { padding: 0.25rem !important; }
.p-1\.5 { padding: 0.375rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-2\.5 { padding: 0.625rem !important; }
.p-3 { padding: 0.75rem !important; }
.p-4 { padding: 1rem !important; }
.p-5 { padding: 1.25rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }
.px-1\.5 { padding-left: 0.375rem !important; padding-right: 0.375rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-2\.5 { padding-left: 0.625rem !important; padding-right: 0.625rem !important; }
.px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
.px-3\.5 { padding-left: 0.875rem !important; padding-right: 0.875rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4\.5 { padding-left: 1.125rem !important; padding-right: 1.125rem !important; }
.px-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
.py-0\.5 { padding-top: 0.125rem !important; padding-bottom: 0.125rem !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-1\.5 { padding-top: 0.375rem !important; padding-bottom: 0.375rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-2\.5 { padding-top: 0.625rem !important; padding-bottom: 0.625rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-1\.5 { padding-bottom: 0.375rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-2\.5 { padding-bottom: 0.625rem !important; }
.pb-3 { padding-bottom: 0.75rem !important; }
.pb-4 { padding-bottom: 1rem !important; }
.pb-5 { padding-bottom: 1.25rem !important; }
.pb-6 { padding-bottom: 1.5rem !important; }
.pb-8 { padding-bottom: 2rem !important; }
.pb-12 { padding-bottom: 3rem !important; }
.pt-0\.5 { padding-top: 0.125rem !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-1\.5 { padding-top: 0.375rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-2\.5 { padding-top: 0.625rem !important; }
.pt-3 { padding-top: 0.75rem !important; }
.pt-3\.5 { padding-top: 0.875rem !important; }
.pt-4 { padding-top: 1rem !important; }
.pt-5 { padding-top: 1.25rem !important; }
.pt-8 { padding-top: 2rem !important; }
.pt-12 { padding-top: 3rem !important; }
.pl-1 { padding-left: 0.25rem !important; }
.pl-1\.5 { padding-left: 0.375rem !important; }
.pl-2 { padding-left: 0.5rem !important; }
.pl-3 { padding-left: 0.75rem !important; }
.pl-4 { padding-left: 1rem !important; }
.pl-5 { padding-left: 1.25rem !important; }
.pl-10 { padding-left: 2.5rem !important; }
.pl-12 { padding-left: 3rem !important; }
.pr-1 { padding-right: 0.25rem !important; }
.pr-2 { padding-right: 0.5rem !important; }
.pr-3 { padding-right: 0.75rem !important; }
.pr-4 { padding-right: 1rem !important; }
.pr-8 { padding-right: 2rem !important; }
.pr-10 { padding-right: 2.5rem !important; }
.pr-12 { padding-right: 3rem !important; }
.m-0 { margin: 0 !important; }
.mt-0\.5 { margin-top: 0.125rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-1\.5 { margin-top: 0.375rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-2\.5 { margin-top: 0.625rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-5 { margin-top: 1.25rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mt-10 { margin-top: 2.5rem !important; }
.mt-12 { margin-top: 3rem !important; }
.mt-16 { margin-top: 4rem !important; }
.mt-20 { margin-top: 5rem !important; }
.mt-auto { margin-top: auto !important; }
.mb-0\.5 { margin-bottom: 0.125rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-1\.5 { margin-bottom: 0.375rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-2\.5 { margin-bottom: 0.625rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-3\.5 { margin-bottom: 0.875rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 1.25rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-10 { margin-bottom: 2.5rem !important; }
.ml-1 { margin-left: 0.25rem !important; }
.ml-1\.5 { margin-left: 0.375rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 0.75rem !important; }
.ml-4 { margin-left: 1rem !important; }
.mr-1 { margin-right: 0.25rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-3 { margin-right: 0.75rem !important; }
.mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-3\.5 { margin-top: 0.875rem !important; margin-bottom: 0.875rem !important; }
.gap-0\.5 { gap: 0.125rem !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-1\.5 { gap: 0.375rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-2\.5 { gap: 0.625rem !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-5 { gap: 1.25rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-8 { gap: 2rem !important; }
.gap-10 { gap: 2.5rem !important; }
.text-white { color: #ffffff !important; }
.text-xs { font-size: 0.75rem !important; line-height: 1rem !important; }
.text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; }
.text-base { font-size: 1rem !important; line-height: 1.5rem !important; }
.text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
.text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; }
.text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
.text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; }
.text-\[9px\] { font-size: 9px !important; }
.text-\[10px\] { font-size: 10px !important; }
.font-light { font-weight: 300 !important; }
.font-normal { font-weight: 400 !important; }
.font-medium { font-weight: 500 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }
.font-black { font-weight: 900 !important; }
.uppercase { text-transform: uppercase !important; }
.tracking-wider { letter-spacing: 0.05em !important; }
.tracking-wide { letter-spacing: 0.025em !important; }
.truncate { overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; }
.italic { font-style: italic !important; }
.leading-\[1\.8\] { line-height: 1.8 !important; }
.leading-none { line-height: 1 !important; }
.leading-relaxed { line-height: 1.625 !important; }
.leading-snug { line-height: 1.375 !important; }
.leading-tight { line-height: 1.25 !important; }
.line-clamp-1 { display: -webkit-box !important; -webkit-line-clamp: 1 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }
.line-clamp-2 { display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }
.line-through { text-decoration: line-through !important; }
.list-disc { list-style-type: disc !important; }
.border { border: 1px solid #e2e8f0 !important; }
.border-0 { border-width: 0 !important; }
.border-2 { border-width: 2px !important; }
.border-b { border-bottom: 1px solid #e2e8f0 !important; }
.border-l { border-left: 1px solid #e2e8f0 !important; }
.border-r { border-right: 1px solid #e2e8f0 !important; }
.border-t { border-top: 1px solid #e2e8f0 !important; }
.border-l-2 { border-left-width: 2px !important; }
.border-dashed { border-style: dashed !important; }
.border-collapse { border-collapse: collapse !important; }
.border-white\/80 { border-color: rgba(255, 255, 255, 0.8) !important; }
.rounded-sm { border-radius: 0.125rem !important; }
.rounded-md { border-radius: 0.375rem !important; }
.rounded-lg { border-radius: 0.5rem !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.rounded-2xl { border-radius: 1rem !important; }
.rounded-3xl { border-radius: 1.5rem !important; }
.rounded-full { border-radius: 9999px !important; }
.rounded-\\[6px\\] { border-radius: 6px !important; }
.bg-white { background-color: #ffffff !important; }
.bg-black { background-color: #000000 !important; }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6) !important; }
.bg-transparent { background-color: transparent !important; }
.bg-slate-50 { background-color: #f8fafc !important; }
.bg-slate-100 { background-color: #f1f5f9 !important; }
.bg-slate-800 { background-color: #1e293b !important; }
.bg-slate-905 { background-color: #0b0f19 !important; }
.bg-slate-900 { background-color: #0f172a !important; }
.bg-emerald-50 { background-color: #ecfdf5 !important; }
.bg-green-50 { background-color: #f0fdf4 !important; }
.bg-red-50 { background-color: #fef2f2 !important; }
.bg-primary { background-color: var(--color-primary, #2563EB) !important; }
.bg-secondary { background-color: var(--color-secondary, #F7A501) !important; }
.bg-primary-light { background-color: color-mix(in srgb, var(--color-primary, #2563EB) 8%, transparent) !important; }
.bg-\[\#10B981\] { background-color: #10b981 !important; }
.bg-\[\#4F46E5\] { background-color: #4f46e5 !important; }
.bg-gray-50\/30 { background-color: rgba(249, 250, 251, 0.3) !important; }
.bg-slate-50\/30 { background-color: rgba(248, 250, 252, 0.3) !important; }
.bg-slate-50\/50 { background-color: rgba(248, 250, 252, 0.5) !important; }
.text-primary { color: var(--color-primary, #2563EB) !important; }
.text-slate-885 { color: #0f172a !important; }
.text-slate-808 { color: #0f172a !important; }
.text-slate-800 { color: #1e293b !important; }
.text-slate-700 { color: #334155 !important; }
.text-slate-600 { color: #475569 !important; }
.text-slate-505 { color: #64748b !important; }
.text-slate-500 { color: #64748b !important; }
.text-slate-400 { color: #94a3b8 !important; }
.text-slate-300 { color: #cbd5e1 !important; }
.text-slate-205 { color: #cbd5e1 !important; }
.text-slate-202 { color: #e2e8f0 !important; }
.text-slate-100 { color: #f1f5f9 !important; }
.text-emerald-600 { color: #059669 !important; }
.text-indigo-600 { color: #4f46e5 !important; }
.text-red-600 { color: #dc2626 !important; }
.text-amber-500 { color: #f59e0b !important; }
.border-slate-50 { border-color: #f8fafc !important; }
.border-slate-100 { border-color: #f1f5f9 !important; }
.border-slate-105 { border-color: #f1f5f9 !important; }
.border-slate-200 { border-color: #e2e8f0 !important; }
.border-slate-202 { border-color: #e2e8f0 !important; }
.border-slate-205 { border-color: #cbd5e1 !important; }
.border-slate-800 { border-color: #1e293b !important; }
.border-slate-808 { border-color: #0f172a !important; }
.border-slate-850 { border-color: #1e293b !important; }
.border-slate-855 { border-color: #0f172a !important; }
.border-gray-100 { border-color: #f3f4f6 !important; }
.border-gray-200 { border-color: #e5e7eb !important; }
.border-orange-100 { border-color: #ffedd5 !important; }
.border-orange-200 { border-color: #fed7aa !important; }
.border-emerald-100 { border-color: #d1fae5 !important; }
.border-emerald-200 { border-color: #a7f3d0 !important; }
.border-indigo-100 { border-color: #e0e7ff !important; }
.border-indigo-200 { border-color: #c7d2fe !important; }
.border-red-100 { border-color: #fee2e2 !important; }
.border-primary { border-color: var(--color-primary, #2563EB) !important; }
.border-secondary { border-color: var(--color-secondary, #F7A501) !important; }
.border-secondary\/40 { border-color: color-mix(in srgb, var(--color-secondary, #F7A501) 40%, transparent) !important; }
.border-slate-100\/50 { border-color: rgba(241, 245, 249, 0.5) !important; }
.border-slate-700\/30 { border-color: rgba(51, 65, 85, 0.3) !important; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; }
.cursor-pointer { cursor: pointer !important; }
.select-none { user-select: none !important; }
.pointer-events-none { pointer-events: none !important; }
.backdrop-blur-sm { backdrop-filter: blur(4px) !important; }
.transition-all { transition: all 0.2s ease !important; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease !important; }
.opacity-0 { opacity: 0 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-100 { opacity: 1 !important; }
.invisible { visibility: hidden !important; }
.object-contain { object-fit: contain !important; }
.object-cover { object-fit: cover !important; }
.outline-none { outline: 2px solid transparent !important; outline-offset: 2px !important; }
.resize-none { resize: none !important; }
.no-scrollbar\:\:-webkit-scrollbar { display: none !important; }
.no-scrollbar { -ms-overflow-style: none !important; scrollbar-width: none !important; }
.scroll-mt-28 { scroll-margin-top: 7rem !important; }
.scroll-mt-32 { scroll-margin-top: 8rem !important; }
.origin-top-left { transform-origin: top left !important; }
.transition-transform { transition-property: transform !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; }
.transition-opacity { transition-property: opacity !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; }
.duration-200 { transition-duration: 200ms !important; }
.duration-300 { transition-duration: 300ms !important; }
.duration-500 { transition-duration: 500ms !important; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; }
.last\:border-0 { border-width: 0 !important; }
.last\:pb-0 { padding-bottom: 0 !important; }
.animate-fade-in { animation: fadeIn 0.2s ease-out !important; }
.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; }

.group:hover .group-hover\:scale-105 { transform: scale(1.05) !important; }
.group:hover .group-hover\:opacity-100 { opacity: 1 !important; }
.group\/card:hover .group-hover\/card\:scale-105 { transform: scale(1.05) !important; }
.group\/card:hover .group-hover\/card\:text-primary { color: var(--color-primary, #2563EB) !important; }
.group-hover\/card\:scale-105:hover { transform: scale(1.05) !important; }
.group-hover\/card\:text-primary:hover { color: var(--color-primary, #2563EB) !important; }
.hover\:text-primary:hover { color: var(--color-primary, #2563EB) !important; }
.hover\:bg-white:hover { background-color: #ffffff !important; }
.hover\:border-primary:hover { border-color: var(--color-primary, #2563EB) !important; }
.hover\:bg-gray-50:hover { background-color: #f9fafb !important; }
.hover\:bg-primary:hover { background-color: var(--color-primary, #2563EB) !important; }
.hover\:bg-secondary:hover { background-color: var(--color-secondary, #F7A501) !important; }
.hover\:bg-slate-100:hover { background-color: #f1f5f9 !important; }
.hover\:bg-slate-200:hover { background-color: #e2e8f0 !important; }
.hover\:bg-slate-50:hover { background-color: #f8fafc !important; }
.hover\:bg-slate-50\/20:hover { background-color: rgba(248, 250, 252, 0.2) !important; }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1) !important; }
.hover\:border-primary\/40:hover { border-color: color-mix(in srgb, var(--color-primary, #2563EB) 40%, transparent) !important; }
.hover\:border-secondary:hover { border-color: var(--color-secondary, #F7A501) !important; }
.hover\:opacity-90:hover { opacity: 0.9 !important; }
.hover\:opacity-95:hover { opacity: 0.95 !important; }
.hover\:scale-105:hover { transform: scale(1.05) !important; }
.hover\:scale-110:hover { transform: scale(1.1) !important; }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; }
.hover\:text-\[\#7E7E7E\]:hover { color: #7e7e7e !important; }
.hover\:text-red-500:hover { color: #ef4444 !important; }
.hover\:text-secondary:hover { color: var(--color-secondary, #F7A501) !important; }
.hover\:text-slate-808:hover { color: #0f172a !important; }
.hover\:text-slate-800:hover { color: #1e293b !important; }
.hover\:text-white:hover { color: #ffffff !important; }
.active\:scale-90:active { transform: scale(0.9) !important; }
.active\:scale-95:active { transform: scale(0.95) !important; }
.active\:scale-\[0\.98\]:active { transform: scale(0.98) !important; }
.dark .dark\:bg-transparent { background-color: transparent !important; }
.dark .dark\:bg-slate-100 { background-color: #f1f5f9 !important; }
.dark .dark\:bg-slate-800 { background-color: #1e293b !important; }
.dark .dark\:bg-slate-850 { background-color: #1e293b !important; }
.dark .dark\:bg-slate-855 { background-color: #0f172a !important; }
.dark .dark\:bg-slate-900 { background-color: #0f172a !important; }
.dark .dark\:bg-slate-950 { background-color: #020617 !important; }
.dark .dark\:bg-slate-955 { background-color: #020617 !important; }
.dark .dark\:bg-slate-955\/10 { background-color: rgba(2, 6, 23, 0.1) !important; }
.dark .dark\:bg-slate-955\/20 { background-color: rgba(2, 6, 23, 0.2) !important; }
.dark .dark\:bg-emerald-955\/20 { background-color: rgba(6, 78, 59, 0.2) !important; }
.dark .dark\:border-slate-800 { border-color: #1e293b !important; }
.dark .dark\:border-slate-850 { border-color: #1e293b !important; }
.dark .dark\:border-slate-855 { border-color: #0f172a !important; }
.dark .dark\:border-slate-805 { border-color: #1e293b !important; }
.dark .dark\:border-slate-300\/30 { border-color: rgba(203, 213, 225, 0.3) !important; }
.dark .dark\:border-slate-800\/50 { border-color: rgba(30, 41, 59, 0.5) !important; }
.dark .dark\:border-slate-850\/50 { border-color: rgba(30, 41, 59, 0.5) !important; }
.dark .dark\:border-slate-850\/60 { border-color: rgba(30, 41, 59, 0.6) !important; }
.dark .dark\:border-slate-900\/40 { border-color: rgba(15, 23, 42, 0.4) !important; }
.dark .dark\:border-orange-900\/40 { border-color: rgba(127, 29, 29, 0.4) !important; }
.dark .dark\:border-emerald-900\/40 { border-color: rgba(6, 78, 59, 0.4) !important; }
.dark .dark\:border-indigo-900\/40 { border-color: rgba(49, 46, 129, 0.4) !important; }
.dark .dark\:border-orange-900\/50 { border-color: rgba(127, 29, 29, 0.5) !important; }
.dark .dark\:border-emerald-900\/50 { border-color: rgba(6, 78, 59, 0.5) !important; }
.dark .dark\:border-indigo-900\/50 { border-color: rgba(49, 46, 129, 0.5) !important; }
.dark .dark\:text-slate-100 { color: #cbd5e1 !important; }
.dark .dark\:text-slate-202 { color: #e2e8f0 !important; }
.dark .dark\:text-slate-200 { color: #e2e8f0 !important; }
.dark .dark\:text-slate-205 { color: #cbd5e1 !important; }
.dark .dark\:text-slate-300 { color: #cbd5e1 !important; }
.dark .dark\:text-slate-350 { color: #cbd5e1 !important; }
.dark .dark\:text-slate-355 { color: #cbd5e1 !important; }
.dark .dark\:text-slate-400 { color: #94a3b8 !important; }
.dark .dark\:text-slate-404 { color: #94a3b8 !important; }
.dark .dark\:text-slate-450 { color: #64748b !important; }
.dark .dark\:text-slate-500 { color: #64748b !important; }
.dark .dark\:text-slate-555 { color: #475569 !important; }
.dark .dark\:text-slate-700 { color: #334155 !important; }
.dark .dark\:text-slate-800 { color: #1e293b !important; }
.dark .dark\:text-black { color: #000000 !important; }
.dark .dark\:text-red-400 { color: #f87171 !important; }
.dark .dark\:text-emerald-400 { color: #34d399 !important; }
.dark .dark\:text-indigo-400 { color: #818cf8 !important; }
.dark .dark\:prose-invert { color: #cbd5e1 !important; }
.dark .dark\:hover\:bg-slate-750 { background-color: #334155 !important; }
.dark .dark\:hover\:bg-slate-700 { background-color: #334155 !important; }
.dark .dark\:hover\:bg-slate-800 { background-color: #1e293b !important; }
.dark .dark\:hover\:bg-slate-850\/10 { background-color: rgba(30, 41, 59, 0.1) !important; }
.dark .dark\:hover\:text-slate-200 { color: #e2e8f0 !important; }
.dark .dark\:hover\:text-white { color: #ffffff !important; }
.dark .dark\:hover\:border-primary\/80 { border-color: color-mix(in srgb, var(--color-primary, #2563EB) 80%, transparent) !important; }

@media (min-width: 768px) {
  .md\:hidden { display: none !important; }
  .md\:flex { display: flex !important; }
  .md\:flex-nowrap { flex-wrap: nowrap !important; }
  .md\:w-auto { width: auto !important; }
  .md\:justify-start { justify-content: flex-start !important; }
  .md\:gap-3 { gap: 0.75rem !important; }
  .md\:gap-4 { gap: 1rem !important; }
  .md\:gap-5 { gap: 1.25rem !important; }
  .md\:gap-6 { gap: 1.5rem !important; }
  .md\:gap-10 { gap: 2.5rem !important; }
  .md\:p-5 { padding: 1.25rem !important; }
  .md\:p-6 { padding: 1.5rem !important; }
  .md\:p-8 { padding: 2rem !important; }
  .md\:p-10 { padding: 2.5rem !important; }
  .md\:px-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
  .md\:pb-4 { padding-bottom: 1rem !important; }
  .md\:text-xs { font-size: 0.75rem !important; line-height: 1rem !important; }
  .md\:text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; }
  .md\:text-base { font-size: 1rem !important; line-height: 1.5rem !important; }
  .md\:text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
  .md\:text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; }
  .md\:text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
  .md\:text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .md\:mt-24 { margin-top: 6rem !important; }
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none !important; }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
  .lg\:col-span-3 { grid-column: span 3 / span 3 !important; }
  .lg\:col-span-4 { grid-column: span 4 / span 4 !important; }
  .lg\:col-span-5 { grid-column: span 5 / span 5 !important; }
  .lg\:col-span-6 { grid-column: span 6 / span 6 !important; }
  .lg\:col-span-9 { grid-column: span 9 / span 9 !important; }
  .lg\:border-r { border-right: 1px solid #e2e8f0 !important; }
  .lg\:flex { display: flex !important; }
  .lg\:inline-flex { display: inline-flex !important; }
  .lg\:flex-row { flex-direction: row !important; }
  .lg\:gap-12 { gap: 3rem !important; }
  .lg\:items-center { align-items: center !important; }
  .lg\:p-8 { padding: 2rem !important; }
  .lg\:pb-12 { padding-bottom: 3rem !important; }
  .lg\:pt-8 { padding-top: 2rem !important; }
  .lg\:sticky { position: sticky !important; }
  .lg\:w-1\/2 { width: 50% !important; }
  .lg\:w-\[220px\] { width: 220px !important; }
  .lg\:w-auto { width: auto !important; }
  .lg\:ml-2 { margin-left: 0.5rem !important; }
  .lg\:pr-6 { padding-right: 1.5rem !important; }
  .lg\:px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
}

/* Global product card image wrapper padding removal and object-cover fit */
.aspect-square.group\/img,
div[class*="aspect-square"][class*="group/img"] {
    padding: 0px !important;
}
.aspect-square.group\/img img,
div[class*="aspect-square"][class*="group/img"] img {
    object-fit: cover !important;
}
