/*
Theme Name: hawkeye theme by nlinksolution
Theme URI: http://www.nlinksolution.com
Author: Team Nlinksolution
Author URI: http://www.nlinksolution.com
Description: A clean, premium WordPress + WooCommerce theme for medical equipment.
Version: 1.0.0
Text Domain: hawkeye-theme
*/

/* Custom global styles can be placed here */

/* Fix gap between fixed header/mobile menu and content when WordPress admin bar is visible */
body.admin-bar .main-header {
    top: 32px !important;
}
body.admin-bar #mobile-menu {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar .main-header {
        top: 46px !important;
    }
    body.admin-bar #mobile-menu {
        top: 46px !important;
    }
}

/*================================================================
  WooCommerce Catalog Ordering and Widgets Styling (collection-list.html)
================================================================*/
.woocommerce-ordering select.orderby {
    border: none !important;
    padding: 10px 30px 10px 15px !important;
    background-color: transparent !important;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    font-size: var(--body-font-size);
    font-family: var(--body-font-family);
    color: var(--heading-font-color);
}

/* Sidebar Widgets styling to match theme design */
.shop-sidebar-wrap .widget {
    margin-top: 30px;
}
.shop-sidebar-wrap .widget:first-child {
    margin-top: 0;
}
.shop-sidebar-wrap .widget .widgettitle,
.shop-sidebar-wrap .widget h2,
.shop-sidebar-wrap .widget h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--heading-font-color);
    text-transform: none;
    border: none;
    padding: 0;
}

/* Categories widget listing */
.shop-sidebar-wrap .widget_product_categories ul,
.shop-sidebar-wrap .widget_categories ul {
    list-style: none;
    padding: 0;
    margin: -4px 0 0 0;
}
.shop-sidebar-wrap .widget_product_categories ul li,
.shop-sidebar-wrap .widget_categories ul li {
    border-top: 1px solid rgba(var(--border-color),var(--border-opacity));
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.shop-sidebar-wrap .widget_product_categories ul li:first-child,
.shop-sidebar-wrap .widget_categories ul li:first-child {
    border: none;
}
.shop-sidebar-wrap .widget_product_categories ul li a,
.shop-sidebar-wrap .widget_categories ul li a {
    color: var(--body-font-color);
    display: inline-block;
    transition: color 0.5s ease-in-out;
}
.shop-sidebar-wrap .widget_product_categories ul li a:hover,
.shop-sidebar-wrap .widget_categories ul li a:hover {
    color: var(--primary-font-color);
}
.shop-sidebar-wrap .widget_product_categories ul li .count,
.shop-sidebar-wrap .widget_categories ul li .count {
    color: var(--body-font-color);
}

/* Attribute Filter lists (layered nav) */
.shop-sidebar-wrap .widget_layered_nav ul {
    list-style: none;
    padding: 0;
    margin: -9px 0 0 0;
}
.shop-sidebar-wrap .widget_layered_nav ul li {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(var(--border-color),var(--border-opacity));
}
.shop-sidebar-wrap .widget_layered_nav ul li:first-child {
    border: none;
}
.shop-sidebar-wrap .widget_layered_nav ul li a {
    color: var(--body-font-color);
    transition: color 0.5s ease-in-out;
}
.shop-sidebar-wrap .widget_layered_nav ul li a:hover {
    color: var(--primary-font-color);
}
.shop-sidebar-wrap .widget_layered_nav ul li .count {
    color: var(--body-font-color);
}

/* Price Filter widget */
.shop-sidebar-wrap .widget_price_filter .price_slider_wrapper .ui-widget-content {
    background-color: rgba(var(--border-color), 0.2);
    height: 4px;
    border: none;
    margin-bottom: 20px;
    position: relative;
}
.shop-sidebar-wrap .widget_price_filter .price_slider_wrapper .ui-slider-range {
    background-color: var(--primary-font-color);
    height: 4px;
    position: absolute;
}
.shop-sidebar-wrap .widget_price_filter .price_slider_wrapper .ui-slider-handle {
    background-color: var(--primary-font-color);
    border: 2px solid var(--extra-bgcolor);
    border-radius: 50%;
    width: 14px;
    height: 14px;
    cursor: pointer;
    outline: none;
    position: absolute;
    top: -5px;
    margin-left: -7px;
}
.shop-sidebar-wrap .widget_price_filter .price_slider_amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap-reverse;
}
.shop-sidebar-wrap .widget_price_filter .price_slider_amount .price_label {
    font-size: 14px;
    color: var(--body-font-color);
}
.shop-sidebar-wrap .widget_price_filter .price_slider_amount .button {
    font-size: 14px;
    padding: 6px 15px;
    background-color: var(--primary-font-color);
    color: var(--extra-font-color) !important;
    border: none;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.5s ease-in-out;
}
.shop-sidebar-wrap .widget_price_filter .price_slider_amount .button:hover {
    background-color: var(--heading-font-color);
}

