﻿/* Container aligns the control to the right near the top */
#productFilterBar {
    margin: 12px auto 0;
    padding: 0 15px; /* match Bootstrap container padding */
}

    #productFilterBar .filter-wrap {
        text-align: right;
    }

/* The input itself */
#productFilterInput {
    width: 260px;
    max-width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
}

    #productFilterInput::placeholder {
        color: #999; /* ghost text */
        opacity: 1;
    }

/* Hidden tiles (Bootstrap will reflow remaining .col-*) */
.is-filtered-out {
    display: none !important;
}

/* Mobile: keep it simple and full-width */
@media (max-width: 767px) {
    #productFilterBar .filter-wrap {
        text-align: left;
    }

    #productFilterInput {
        width: 100%;
    }
}



html.filtering-active .animate-box,
body.filtering-active .animate-box {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}