/**
* Theme Name: Trekky Child
* Description: This is a child theme of Trekky, generated by Merlin WP.
* Author: <a href="https://wpopal.com/">Opal Team</a>
* Template: trekky
* Version: 1.3.0
*/




/* =========================================
   3. ROLE SWITCHER STYLES
   ========================================= */

/* Top Right Switcher */
.arcafy-role-switcher {
    position: absolute;
    top: 30px;
    right: 50px; /* Moved closer to right edge since social icons are gone */
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.arcafy-role-label {
    font-size: 12px;
    font-weight: 600;
    color: #333; 
}

.arcafy-role-switcher select {
    padding: 4px 8px;
    font-size: 13px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    cursor: pointer;
    margin: 0;
}

/* Dashboard Message Box */
.arcafy-dashboard-msg {
    background-color: #f0f4ff; 
    border-left: 4px solid #0056b3; 
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 16px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .arcafy-role-switcher {
        position: relative;
        top: 0; right: 0;
        justify-content: center;
        padding: 10px;
        background: #f9f9f9;
        width: 100%;
    }
}



/* =========================================
   ARCAFY MENU - FINAL (SPLIT LAYOUT + HOVER)
   ========================================= */

/* 1. PARENT & CONTAINER */
.has-arcafy-mega-menu {
    position: static !important;
}

.has-arcafy-mega-menu .sub-menu.mega-menu.mega-fullwidth {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #fff;
    padding: 0 !important;
    margin: 0 !important;
    border-top: 1px solid #f1f1f1;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    z-index: 999999 !important;
}

.has-arcafy-mega-menu:hover > .sub-menu.mega-menu.mega-fullwidth {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: fadeInMenu 0.3s ease forwards;
}

/* 2. MAIN WRAPPER (Flex Container) */
.arcafy-mega-wrapper {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0px;
    padding: 40px 0;
    box-sizing: border-box;
    align-items: stretch;
}

/* 3. LEFT PANEL (Banner) */
.arcafy-left-panel {
    width: 16.66%;
    flex-shrink: 0;
    padding: 0 25px;
    box-sizing: border-box;
    border-right: 1px solid #eaeaea;
}

/* 4. RIGHT GRID (Categories) */
.arcafy-right-grid {
    width: 83.34%;
    display: flex;
    flex-wrap: wrap; /* Wraps to next row */
    box-sizing: border-box;
    align-content: flex-start;
}

/* 5. GRID ITEMS */
.arcafy-grid-item {
    width: 20%; /* 5 per row */
    padding: 0 25px;
    box-sizing: border-box;
    margin-bottom: 40px;
    border-right: 1px solid #eaeaea;
}

.arcafy-grid-item:nth-child(5n) {
    border-right: none;
}

/* 6. GLOBAL RESET (No Underlines) */
.arcafy-mega-wrapper a,
.mega-parent-title,
.mega-child-title,
.arcafy-btn {
    text-decoration: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    background-image: none !important;
}

/* 7. TYPOGRAPHY & HOVER COLORS */

/* --- Level 1: Parent Title (Books) --- */
.mega-parent-title {
    display: block;
    font-family: inherit !important;
    font-size: 16px;
    font-weight: 700;
    color: #000 !important; /* Default: Black */
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.mega-parent-title:hover {
    color: #e0b252 !important; /* HOVER: Gold */
}

/* --- Level 2: Children (Fiction) --- */
.mega-sub-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.mega-sub-menu li {
    display: block !important;
    margin-bottom: 8px;
}

.mega-child-title {
    font-family: inherit !important;
    font-size: 14px;
    font-weight: 400;
    color: #777 !important; /* Default: Gray */
    transition: color 0.2s;
    display: block;
}

.mega-child-title:hover {
    color: #e0b252 !important; /* HOVER: Gold */
}

/* --- Level 3: Grandchildren (Action Figures) --- */
.mega-sub-menu ul {
    display: block !important; /* Always Visible */
    margin-top: 4px !important;
    padding-left: 15px !important;
    border-left: 1px solid #eee;
    list-style: none !important;
}

/* Target Grandchild Links Specifically */
.mega-sub-menu ul li a.mega-child-title {
    font-size: 13px !important;
    color: #999 !important; /* Default: Light Gray */
}

.mega-sub-menu ul li a.mega-child-title:hover {
    color: #e0b252 !important; /* HOVER: Gold */
}

/* 8. BANNER STYLES */
.arcafy-banner-wrap {
    width: 100%;
    height: 100%;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.arcafy-banner-wrap::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
}
.arcafy-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
}
.arcafy-banner-content h3 {
    font-family: inherit !important;
    font-size: 24px;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 20px;
    line-height: 1.3;
    white-space: normal;
}
.arcafy-btn {
    display: inline-block;
    border: 2px solid #fff !important;
    color: #fff !important;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    transition: 0.3s;
}
.arcafy-btn:hover { background: #fff; color: #000 !important; }

/* Hide Images & Arrows */
.mega-cat-image, .mega-img-link { display: none !important; }
.mega-sub-menu li.has-sub-items > a::after { content: none !important; }

/* Animation */
@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1400px) {
    .arcafy-grid-item { width: 25%; } 
    .arcafy-grid-item:nth-child(5n) { border-right: 1px solid #eaeaea; } 
    .arcafy-grid-item:nth-child(4n) { border-right: none; } 
}







/* =========================================
   HYBRID FILTER: TEXT BUTTONS + COLOR BOXES
   ========================================= */

/* 1. CONTAINER LAYOUT */
.woocommerce-widget-layered-nav-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important; /* Space between items */
    padding: 0 !important;
    margin-top: 20px !important;
    border: none !important;
}

.dropdown-sidebar{display: none;}

.woocommerce-widget-layered-nav-list__item {
    display: block !important;
    width: auto !important; /* Allow width to fit text */
    
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

/* 2. DEFAULT STYLE: TEXT BUTTON (For "48 Degrees", "Heads Only") */
.woocommerce-widget-layered-nav-list__item a {
    display: inline-block !important;
    padding: 6px 12px !important;    /* Space around text */
    background-color: #fff !important;
    border: 1px solid #e1e1e1 !important;
    border-radius: 4px !important;
    color: #333 !important;          /* Grey Text */
    font-size: 13px !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
    min-width: 30px !important;      /* Minimum size */
    text-align: center;
    transition: all 0.2s ease;
}

/* Hover for Text Buttons */
.woocommerce-widget-layered-nav-list__item a:hover {
    border-color: #333 !important;
    background-color: #f9f9f9 !important;
}

/* Active/Selected State */
.woocommerce-widget-layered-nav-list__item.chosen a {
    /* background-color: #333 !important; */
    color: #fff !important;
    border-color: #333 !important;
}



/* =========================================
   1. ACCORDION (COLLAPSIBLE) STYLES
   ========================================= */
.custom-filter-section {
    margin-bottom: 20px;
    
}

.custom-filter-section .widget-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Arrow Icon */
.custom-filter-section .widget-title .toggle-icon::after {
    content: "\25BC"; /* Unicode Down Arrow */
    font-size: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Rotate Arrow when Opened */
.custom-filter-section.opened .widget-title .toggle-icon::after {
    transform: rotate(180deg);
}

/* Hide Content by Default */
.custom-filter-section .section-content {
    display: none;
}

/* Show Content when Opened */
.custom-filter-section.opened .section-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* =========================================
   2. INLINE CHECKBOXES (Categories, Brands, etc.)
   ========================================= */
/* Target ONLY the sections with 'checkbox-list' class */
.checkbox-list:not(.category-filter) .woocommerce-widget-layered-nav-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important; /* Spacing between items */
    margin-top: 20px !important;
    padding: 0 !important;
}

/* Reset List Item */
.checkbox-list li {
    display: flex !important;
    align-items: center !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

/* Link Styling (Text - Remove Button Look) */
.checkbox-list li a {
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    font-size: 14px !important;
    color: #444 !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    cursor: pointer;
}

/* The Square Checkbox */
.checkbox-list li a::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.2s;
    flex-shrink: 0;
}

/* Hover State */
.checkbox-list li a:hover { color: #000 !important; }
.checkbox-list li a:hover::before { border-color: #999; }

/* Active / Checked State */
.checkbox-list li.chosen a::before {
    background-color: #333;
    border-color: #333;
    content: "\2713"; /* Checkmark */
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    font-weight: 700;
}
.checkbox-list li.chosen a { font-weight: 600 !important; color: #000 !important; }

/* Count Number */
.checkbox-list .count {
    font-size: 12px; color: #999; margin-left: 4px;
}

/* =========================================
   3. BUTTONS (Sizes & Standard)
   ========================================= */
/* Default styling for Sizes (not .checkbox-list) */
.custom-filter-section:not(.checkbox-list):not(.color-filter) .woocommerce-widget-layered-nav-list li a {
    display: inline-block;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    color: #333;
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 5px;
    margin-right: 5px;
}
.custom-filter-section:not(.checkbox-list) .woocommerce-widget-layered-nav-list li.chosen a {
    background: #333; color: #fff; border-color: #333;
}

/* =========================================
   4. COLOR CIRCLES
   ========================================= */
.swatch-box { display: none; }
.swatch-name { display: inline-block; }

/* Turn specific colors into circles */
.term-black a, .term-blue a, .term-green a, .term-red a, 
.term-white a, .term-yellow a, .term-purple a, .term-grey a,
.term-navy a, .term-pink a, .term-orange a, .term-burgundy a {
    padding: 0 !important;
    border-radius: 50% !important;
    width: 30px; height: 30px;
    border: 1px solid #ddd;
    overflow: hidden;
}
/* Hide Text for Colors */
.term-black .swatch-name, .term-blue .swatch-name, .term-green .swatch-name, 
.term-red .swatch-name, .term-white .swatch-name, .term-yellow .swatch-name,
.term-purple .swatch-name, .term-grey .swatch-name, .term-navy .swatch-name,
.term-pink .swatch-name, .term-orange .swatch-name, .term-burgundy .swatch-name {
    display: none !important;
}
/* Show Box for Colors */
.term-black .swatch-box, .term-blue .swatch-box, .term-green .swatch-box, 
.term-red .swatch-box, .term-white .swatch-box, .term-yellow .swatch-box,
.term-purple .swatch-box, .term-grey .swatch-box, .term-navy .swatch-box,
.term-pink .swatch-box, .term-orange .swatch-box, .term-burgundy .swatch-box {
    display: block !important; width: 100%; height: 100%;
}
/* Define Colors */
.term-black .swatch-box { background: #000; }
.term-blue .swatch-box { background: blue; }
.term-green .swatch-box { background: green; }
.term-red .swatch-box { background: red; }
.term-white .swatch-box { background: #fff; }
.term-yellow .swatch-box { background: yellow; }
.term-purple .swatch-box { background: purple; }
.term-grey .swatch-box { background: grey; }
.term-navy .swatch-box { background: navy; }
.term-pink .swatch-box { background: pink; }
.term-orange .swatch-box { background: orange; }
.term-burgundy .swatch-box { background: #800020; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }



/* =========================================
   ARCAFY MENU - RESPONSIVE (DESKTOP HOVER + MOBILE CLICK)
   ========================================= */

/* --- DESKTOP STYLES (Min-width: 960px) --- */
@media (min-width: 960px) {
    .has-arcafy-mega-menu {
        position: static !important;
    }

    .has-arcafy-mega-menu .sub-menu.mega-menu {
        display: none;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 100%;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #fff;
        padding: 0 !important;
        margin: 0 !important;
        border-top: 1px solid #f1f1f1;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        z-index: 999999 !important;
    }

    /* Desktop Hover Effect */
    .has-arcafy-mega-menu:hover > .sub-menu.mega-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        animation: fadeInMenu 0.3s ease forwards;
    }

    .arcafy-mega-wrapper {
        display: flex;
        align-items: stretch;
        width: 100%;
        max-width: 1400px;
        margin: 0px;
        padding: 40px 0;
    }

    .arcafy-left-panel {
        width: 20%;
        flex-shrink: 0;
        padding: 0 25px;
        border-right: 1px solid #eaeaea;
    }

    .arcafy-right-grid {
        width: 80%;
        display: flex;
        flex-wrap: wrap;
    }

    .arcafy-grid-item {
        width: 20%; /* 5 columns per row */
        padding: 0 25px;
        margin-bottom: 40px;
        border-right: 1px solid #eaeaea;
    }

    .arcafy-grid-item:nth-child(5n) {
        border-right: none;
    }
}

/* --- MOBILE & TABLET STYLES (Max-width: 959px) --- */
@media (max-width: 959px) {
    /* Reset visibility so OceanWP JS can toggle display:block/none */
    .has-arcafy-mega-menu .sub-menu.mega-menu {
        position: static !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        background: transparent !important;
    }

    /* Stack flex containers vertically */
    .arcafy-mega-wrapper {
        display: block !important;
        padding: 10px 0 !important;
    }

    /* Hide the big banner image on mobile to save space */
    .arcafy-left-panel {
        display: none !important; 
    }

    /* Make grid full width */
    .arcafy-right-grid {
        display: block !important;
        width: 100% !important;
    }

    .arcafy-grid-item {
        width: 100% !important;
        padding: 10px 20px !important;
        margin-bottom: 0 !important;
        border-right: none !important;
        border-bottom: 1px solid #eee;
    }
    
    /* Indent Grandchildren */
    .mega-sub-menu {
        padding-left: 15px !important;
    }
    
    /* Ensure links have height to be clickable */
    .mega-parent-title {
        padding: 10px 0;
        font-size: 15px;
    }
}

/* --- SHARED STYLES (All Devices) --- */
.arcafy-mega-wrapper a,
.mega-parent-title,
.mega-child-title {
    text-decoration: none !important;
    box-shadow: none !important;
}

/* Typography */
.mega-parent-title {
    display: block;
    font-weight: 700;
    color: #000 !important;
    margin-bottom: 5px;
}

.mega-parent-title:hover { color: #e0b252 !important; }

.mega-sub-menu { list-style: none !important; margin: 0 !important; }
.mega-sub-menu li { display: block !important; margin-bottom: 5px; }

.mega-child-title {
    font-size: 14px;
    color: #777 !important;
    display: block;
    padding: 2px 0;
}
.mega-child-title:hover { color: #e0b252 !important; }

/* Banner Styles */
.arcafy-banner-wrap {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.arcafy-banner-wrap::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3);
}
.arcafy-banner-content { position: relative; z-index: 2; color: #fff; padding: 20px; }
.arcafy-banner-content h3 { font-size: 24px; font-weight: 700; color: #fff !important; margin-bottom: 15px; }
.arcafy-btn {
    display: inline-block; border: 2px solid #fff !important; color: #fff !important;
    padding: 10px 20px; font-weight: 700; text-transform: uppercase; font-size: 12px;
}
.arcafy-btn:hover { background: #fff; color: #000 !important; }

@keyframes fadeInMenu { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
/* =========================================
   ARCAFY MENU - RESPONSIVE WIDTHS
   ========================================= */

/* DESKTOP ONLY ( > 1024px ) */
/* Apply the custom calculation here */
@media (min-width: 1025px) {
    ul.sub-menu.mega-menu.mega-stretchwidth {
        left: -450.6px !important;
        width: 1520.8px !important;
        max-width: none !important; /* Ensure theme doesn't restrict it */
    }
}

/* MOBILE/TABLET ONLY ( < 1024px ) */
/* Reset to fit screen */
@media (max-width: 1024px) {
    ul.sub-menu.mega-menu.mega-stretchwidth {
        left: 0 !important;
        width: 100% !important;
        margin-left: 0 !important;
        box-shadow: none !important;
    }
}


/* =========================================
   MOBILE MENU ARROW FIX
   ========================================= */
@media (max-width: 1024px) {
    
    /* 1. Ensure the parent LI is the positioning anchor */
    li.has-arcafy-mega-menu {
        position: relative !important;
        display: block !important; /* Ensure it takes full width */
    }

    /* 2. Force the Shop Link to play nice with the arrow */
    li.has-arcafy-mega-menu > a {
        display: block;
        width: 100%;
        padding-right: 50px !important; /* Make room for the arrow so text doesn't overlap */
        box-sizing: border-box;
    }

   .mobile-navigation .dropdown-toggle, .mobile-navigation-categories .dropdown-toggle {
    background: transparent;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 17px 0;
    line-height: 1;
    width: 30px;
    text-align: right;
    border: none;
    font-size: 16px;
    color: var(--accent);
}
    
    /* Optional: Ensure the icon inside is visible */
    li.has-arcafy-mega-menu > .dropdown-toggle::after {
        display: block !important;
        /* content: "\25BC"; */ /* Unicode Down Arrow if missing */
    }
}


#menu-item-1536{display: none;}
.menu-item-1536{display: none;}

/* Dashboard Switcher Cleanup */
.arcafy-dashboard-switcher {
    display: flex;
    align-items: center;
    border-left: 4px solid #e0b252 !important; /* Matches Trekky Gold */
}

.arcafy-dashboard-switcher select {
    cursor: pointer;
    min-width: 150px;
}



/* 2. Remove Theme-Added Icons */
.category-filter li.cat-item:before,
.category-filter li.chosen:before,
.category-filter li.active:before {
    content: none !important;
    display: none !important;
}

/* 3. Force Vertical Stacking & Indentation */
.category-filter li.cat-item {
    display: block !important;
    width: 100% !important;
    margin-bottom: 8px;
}


/* 4. Row Layout Styling */
.cat-row {
    display: flex !important;
    align-items: center;
    width: 95%;
    justify-content: flex-start;
    margin-bottom: 3px;
}

.cat-filter-link {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    color: inherit !important;
}

/* 5. Custom Checkbox Style */
.filter-checkbox {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid #ccc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 11px;
    background: #fff;
    border-radius: 2px;
}

.filter-checkbox.checked {
    background: #333;
    color: #fff;
    border-color: #333;
}


/* 1. Kill EVERY theme-generated checkbox or icon */
.category-filter .cat-item:before,
.category-filter .cat-item:after,
.category-filter .cat-item a:before,
.category-filter .cat-item a:after,
.category-filter .chosen:before,
.category-filter .chosen a:before,
.category-filter .active:before,
.category-filter .active a:before {
    display: none !important;
    content: none !important;
    background: none !important;
    border: none !important;
}

/* Root list should be visible */
.category-filter ul.product-categories {
    display: block !important;
}




.category-filter li.cat-item {
    display: block !important;
    width: 100% !important;
    float: none !important;
    margin-bottom: 8px !important;
}



/* 4. Ensure your custom checkbox remains visible */
.filter-checkbox {
    display: inline-flex !important;
}




/* Ensure Parent Label stands out when child is selected */
.cat-item.active > .cat-row .cat-name,
.cat-item.chosen > .cat-row .cat-name {
    font-weight: 700 !important;
}

.child-toggle {
    cursor: pointer;
    margin-left: 0px;
    font-weight: 600;
    user-select: none;
}

/* FORCE category children to be visible when expanded */
.category-filter ul.children {
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    transform: none !important;
    margin-top: 0.375em!important;
}


.widget-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.toggle-icon {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}

/* Active filters bar */
.active-filters-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

/* Filter pill */
.active-filter-pill {
    display: inline-flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
}

/* Remove icon */
.active-filter-pill .remove-filter {
    margin-left: 6px;
    font-weight: bold;
    cursor: pointer;
}

/* Clear all */
.clear-all-filters {
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
    color: #d9534f;
    text-decoration: none;
}

/* Hide Woo layered nav attribute filters */
.widget_layered_nav,
.woocommerce-widget-layered-nav {
    display: none !important;
}
/* Hide WooCommerce Active Filters widget */
.trekky-active-filters,
.widget_layered_nav_filters {
    display: none !important;
}
#woocommerce_layered_nav-3 {
    display: none !important;
}


.arcafy-range-container { display: flex; align-items: center; }
.dual-range { position: absolute; width: 100%; pointer-events: none; -webkit-appearance: none; background: none; outline: none; margin: 0; }
.dual-range::-webkit-slider-thumb { height: 18px; width: 18px; border-radius: 50%; background: #d4af37; pointer-events: auto; -webkit-appearance: none; cursor: pointer; border: 2px solid #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.dual-range::-moz-range-thumb { height: 18px; width: 18px; border-radius: 50%; background: #d4af37; pointer-events: auto; cursor: pointer; border: 2px solid #fff; }


#arcafy-product-loading {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.8); z-index: 9999; justify-content: center; align-items: center;
}
.arcafy-spinner {
    width: 50px; height: 50px; border: 5px solid #f3f3f3;
    border-top: 5px solid #d4af37; border-radius: 50%;
    animation: arcafy-spin 1s linear infinite;
}
@keyframes arcafy-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }


.widget .price_slider .ui-slider-handle {
    background-color: #d4af37!important;
        width: 16px;
    height: 16px;
    border: 2px solid gray;
    cursor: pointer;
}

.widget .price_slider_wrapper{top:10px;position:relative;}


/* Hide WooCommerce default variation price block */
.woocommerce-variation-price{
    display: none !important;
}

/* Increase color swatch size to 2x */
.color-variable-items-wrapper .variable-item {
    width: 70px !important;
    height: 70px !important;
}

/* Inner image span */
.color-variable-items-wrapper .variable-item-span-color {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    background-size: cover !important;
    background-position: center !important;
}

.single-product div.product table.variations td.value ul li.variable-item {
    box-shadow: none;
    margin: 0 10px 5px 0;
    width: auto;
    height: auto;
    min-width: 40px;
    min-height: 28px;
    padding: 0;
    background-color: #888888;
}
