/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}

/* ------------------------------------------ */
/*  AKTIVNA KATEGORIJA – bold in črna         */
/* ------------------------------------------ */
.header-nav .current-menu-item > a {
    font-weight: 700 !important;
    color: #000 !important;
}

/* ------------------------------------------ */
/*  BLACK FRIDAY – črn gumb                    */
/* ------------------------------------------ */
.header-nav .black-friday-item > a {
    background: #000 !important;
    color: #fff !important;
    padding: 3px 12px;
    border-radius: 3px;
    line-height: 1.1em !important;
    display: inline-block;

    /* Shake efekt – sproži se vsakih 2 sekundi */
    animation: shake 0.3s ease-in-out infinite;
    animation-duration: 2s;
}

/* ------------------------------------------ */
/*  SHAKE ANIMACIJA                           */
/* ------------------------------------------ */
@keyframes shake {
    0% { transform: translate(0, 0); }
    20% { transform: translate(-2px, 0); }
    40% { transform: translate(2px, 0); }
    60% { transform: translate(-2px, 0); }
    80% { transform: translate(2px, 0); }
    100% { transform: translate(0, 0); }
}
