/*
Theme Name: Australian Bee Supplies
Theme URI: https://australianbeesupplies.com.au
Author: Australian Bee Supplies
Author URI: https://australianbeesupplies.com.au
Description: Custom Australian Bee Supplies theme with admin and template structure.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: abs
Tags: one-column, custom-background, custom-logo, custom-menu, featured-images, responsive-layout
*/

.cfvsw-selected-swatch,
.cfvsw-swatches-option:not( .cfvsw-swatches-disabled, .cfvsw-swatches-out-of-stock ):hover {
    border-color: var(--cfvsw-swatches-border-color-hover, #00000090);
    box-sizing: border-box;
    background-color: var(--abs-color-senary);
    color: var(--abs-color-black);
    font-weight: 500;
}

.js-header {
    width: 100%;
    background: #fff;
    transition: all .3s ease;
    z-index: 9999;
}

/* Sticky Class */
.js-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,.1);
    animation: slideDown .3s ease;
}

/* Prevent content from hiding behind fixed header */
body.sticky-header {
    padding-top: 90px; /* Change according to your header height */
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}