/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.2
 Text Domain:  woodmart
*/

/* ========================================
   FLOATING ΦΙΛΤΡΑ BUTTON FOR MOBILE
   Shows on mobile devices (< 768px)
   Opens FiboFilters mobile overlay
   ======================================== */

/* Floating Button Container - ALWAYS VISIBLE ON MOBILE */
.fibofilters-floating-btn {
    display: none; /* Hidden on desktop by default */
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999; /* Very high z-index */
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* The Button Itself */
.fibofilters-floating-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: linear-gradient(180deg, #2e6bc6 0%, #1e4a8a 100%);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 8px 0 0 8px;
    box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.fibofilters-floating-btn a:hover,
.fibofilters-floating-btn a:active {
    background: linear-gradient(180deg, #3578d9 0%, #2e6bc6 100%);
    box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.4);
    padding-right: 14px;
}

/* Filter Icon */
.fibofilters-floating-btn a::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    margin-bottom: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Badge for Active Filters Count */
.fibofilters-floating-btn .filter-count {
    position: absolute;
    top: -5px;
    left: -5px;
    background: #ff5722;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    writing-mode: horizontal-tb;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* SIMPLE: Show on Mobile Only (< 768px) */
@media (max-width: 767px) {
    .fibofilters-floating-btn {
        display: block !important;
    }
}

/* Hide on Desktop and Tablet */
@media (min-width: 768px) {
    .fibofilters-floating-btn {
        display: none !important;
    }
}

/* ========================================
   END FLOATING ΦΙΛΤΡΑ BUTTON
   ======================================== */

/* ========================================
   HIDE WOODMART NATIVE SIDEBAR BUTTONS
   We use our custom ΦΙΛΤΡΑ button instead
   ======================================== */

/* Hide on all screen sizes - we use our own ΦΙΛΤΡΑ button */
.wd-shop-tools .wd-show-sidebar-btn,
.wd-shop-tools .wd-show-sidebar-btn.wd-action-btn,
.wd-show-sidebar-btn.wd-action-btn.wd-style-text,
.wd-show-sidebar-btn.wd-action-btn.wd-burger-icon,
div.wd-show-sidebar-btn,
.wd-sidebar-opener,
.wd-sidebar-opener.wd-action-btn,
.wd-sidebar-opener.wd-hide-lg {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}

/* ========================================
   END HIDE WOODMART BUTTONS
   ======================================== */


