@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
:root {
    --rkfvs-primary: inherit;
    --rkfvs-accent: inherit;
    --rkfvs-bg: inherit;
    --rkfvs-text: inherit;
    --rkfvs-text-muted: #888888;
    --rkfvs-border: #e0e0e0;
    --rkfvs-shadow: rgba(0, 0, 0, .1);
    --rkfvs-radius: 8px;
    --rkfvs-radius-sm: 4px;
    --rkfvs-transition: .2s ease;
    --rkfvs-overlay-backdrop: rgba(0, 0, 0, .6);
    --rkfvs-overlay-z: 99999;
    --rkfvs-filters-width: 250px;
    --rkfvs-gap: 16px;
    --rkfvs-gap-sm: 8px;
    --rkfvs-gap-lg: 24px;
    --rkfvs-skeleton-base: #f0f0f0;
    --rkfvs-skeleton-highlight: #e0e0e0;
}
body.rkrfreevisualsearch-open {
    overflow: hidden;
}
.rkfvs-overlay__backdrop {
    position: fixed;
    inset: 0;
    background: var(--rkfvs-overlay-backdrop);
    z-index: calc(var(--rkfvs-overlay-z) - 1);
    opacity: 0;
    transition: opacity var(--rkfvs-transition);
    pointer-events: none;
}
.rkfvs-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--rkfvs-overlay-z);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: var(--rkfvs-gap-lg);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--rkfvs-transition);
}
.rkfvs-overlay.rkfvs-overlay--open,
.rkfvs-overlay.rkfvs-overlay--open .rkfvs-overlay__backdrop {
    opacity: 1;
    pointer-events: auto;
}
.rkfvs-overlay__container {
    position: relative;
    z-index: var(--rkfvs-overlay-z);
    background: var(--rkfvs-bg);
    color: var(--rkfvs-text);
    border-radius: var(--rkfvs-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 1400px;
    max-height: calc(100vh - var(--rkfvs-gap-lg) * 2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    --rkfvs-results-col-min: var(--rkfvs-card-min, 180px);
}
.rkfvs-overlay__header {
    display: flex;
    align-items: center;
    gap: var(--rkfvs-gap-sm);
    padding: var(--rkfvs-gap) var(--rkfvs-gap-lg);
    border-bottom: 1px solid var(--rkfvs-border);
    flex-shrink: 0;
}
.rkfvs-search-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--rkfvs-gap-sm);
    background: #f5f5f5;
    border: 1.5px solid var(--rkfvs-border);
    border-radius: var(--rkfvs-radius);
    padding: 0 var(--rkfvs-gap-sm);
    transition: border-color var(--rkfvs-transition), box-shadow var(--rkfvs-transition);
}
.rkfvs-search-box:focus-within {
    border-color: var(--rkfvs-accent) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px var(--rkfvs-accent) !important;
}
.rkfvs-search-icon {
    color: var(--rkfvs-text-muted);
    flex-shrink: 0;
}
.rkfvs-search-box__input {
    text-align: center;
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    color: var(--rkfvs-text);
    padding: 12px 0;
    min-width: 0;
}
.rkfvs-search-box__input::placeholder {
    color: var(--rkfvs-text-muted);
}
.rkfvs-search-box__clear {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--rkfvs-text-muted);
    padding: 4px;
    border-radius: var(--rkfvs-radius-sm);
    flex-shrink: 0;
    transition: color var(--rkfvs-transition), background var(--rkfvs-transition);
}
.rkfvs-search-box__clear:hover {
    color: var(--rkfvs-text);
    background: var(--rkfvs-border);
}
.rkfvs-search-box__shortcut {
    font-family: inherit;
    font-size: 11px;
    line-height: 1;
    padding: 3px 6px;
    background: var(--rkfvs-border);
    border-radius: var(--rkfvs-radius-sm);
    color: var(--rkfvs-text-muted);
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid rgb(198, 198, 198);
}
.rkfvs-overlay__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: var(--rkfvs-radius-sm);
    color: var(--rkfvs-text-muted);
    transition: color var(--rkfvs-transition), background var(--rkfvs-transition);
    flex-shrink: 0;
}
.rkfvs-overlay__close:hover {
    color: var(--rkfvs-text);
    background: var(--rkfvs-border);
}
.rkfvs-overlay__close:focus-visible {
    outline: 2px solid var(--rkfvs-accent);
    outline-offset: 2px;
}
.rkfvs-overlay__body {
    display: flex;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}
.rkfvs-overlay__main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: var(--rkfvs-gap-lg);
    gap: var(--rkfvs-gap);
    min-width: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--rkfvs-border) transparent;
}
.rkfvs-overlay__main::-webkit-scrollbar {
    width: 6px;
}
.rkfvs-overlay__main::-webkit-scrollbar-track {
    background: transparent;
}
.rkfvs-overlay__main::-webkit-scrollbar-thumb {
    background: var(--rkfvs-border);
    border-radius: 3px;
}
.rkfvs-status {
    font-size: .8rem;
    color: var(--rkfvs-text-muted);
    min-height: 1.2em;
}
.rkfvs-overlay__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: var(--rkfvs-gap-sm) var(--rkfvs-gap-lg);
    border-top: 1px solid var(--rkfvs-border);
    flex-shrink: 0;
}
.rkfvs-overlay__powered {
    font-size: .75rem;
    color: var(--rkfvs-text-muted);
}
.rkfvs-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--rkfvs-gap-sm);
    padding: var(--rkfvs-gap-lg);
    color: var(--rkfvs-text-muted);
    text-align: center;
}
.rkfvs-error p {
    margin: 0;
    font-size: .9rem;
}
.rkfvs-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--rkfvs-gap-sm);
    padding: calc(var(--rkfvs-gap-lg) * 2);
    text-align: center;
    color: var(--rkfvs-text-muted);
}
.rkfvs-empty svg {
    opacity: .4;
}
.rkfvs-empty__text {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--rkfvs-text);
}
.rkfvs-empty__suggestion {
    margin: 0;
    font-size: .875rem;
}
.rkfvs-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    min-height: 0;
}
.rkfvs-status:empty {
    display: none;
}
.rkfvs-status__count {
    font-size: .85rem;
    color: var(--rkfvs-text-muted);
    font-weight: 500;
}
.rkfvs-status__time {
    font-weight: 400;
    opacity: .6;
}
.rkfvs-sort {
    appearance: none;
    -webkit-appearance: none;
    background: #f5f5f5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
    border: 1px solid var(--rkfvs-border);
    border-radius: var(--rkfvs-radius-sm);
    padding: 6px 32px 6px 12px;
    font-size: .8rem;
    color: var(--rkfvs-text);
    cursor: pointer;
    transition: border-color var(--rkfvs-transition);
}
.rkfvs-sort:hover,
.rkfvs-sort:focus {
    border-color: var(--rkfvs-accent);
    outline: none;
}
.rkfvs-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--rkfvs-results-col-min), 1fr));
    gap: var(--rkfvs-gap);
    align-content: start;
}
.rkfvs-product {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--rkfvs-border);
    border-radius: var(--rkfvs-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--rkfvs-text);
    background: var(--rkfvs-bg);
    transition: box-shadow var(--rkfvs-transition), border-color var(--rkfvs-transition), transform var(--rkfvs-transition);
    cursor: pointer;
    outline: none;
}
.rkfvs-product:hover,
.rkfvs-product:focus-visible {
    box-shadow: 0 4px 20px var(--rkfvs-shadow);
    border-color: var(--rkfvs-accent);
    transform: translateY(-2px);
}
.rkfvs-product--active {
    box-shadow: 0 4px 20px var(--rkfvs-shadow);
    border-color: var(--rkfvs-accent);
    outline: 2px solid var(--rkfvs-accent);
    outline-offset: -2px;
}
.rkfvs-product__image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    transition: transform .3s ease;
    display: block;
}
.rkfvs-product__no-image {
    display: block;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, #f0f0f0, #f0f0f0 5px, #e8e8e8 5px 10px);
}
.rkfvs-product__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: var(--rkfvs-gap-sm) var(--rkfvs-gap-sm) 0 var(--rkfvs-gap-sm);
    flex: 1;
}
.rkfvs-product__name {
    margin: 0;
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--rkfvs-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rkfvs-product__ref {
    font-size: .72rem;
    color: var(--rkfvs-text-muted);
    letter-spacing: .02em;
}
.rkfvs-product__manufacturer {
    font-size: .75rem;
    color: var(--rkfvs-text-muted);
    font-style: italic;
}
.rkfvs-product__price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--rkfvs-primary);
    margin-top: auto;
}
.rkfvs-product__stock {
    position: relative;
    top: -25px;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 2px 6px;
    border-radius: var(--rkfvs-radius-sm);
    display: inline-block;
    align-self: end;
}
.rkfvs-product__stock--in {
    background: #e8f5e9;
    color: #2e7d32;
}
.rkfvs-product__stock--out {
    background: #fce4ec;
    color: #c62828;
}
.rkfvs-product--skeleton {
    pointer-events: none;
    cursor: default;
}
.rkfvs-product--skeleton:hover,
.rkfvs-product--skeleton:focus-visible {
    box-shadow: none;
    border-color: var(--rkfvs-border);
    transform: none;
}
.rkfvs-skeleton {
    background: linear-gradient(90deg, var(--rkfvs-skeleton-base) 25%, var(--rkfvs-skeleton-highlight) 50%, var(--rkfvs-skeleton-base) 75%);
    background-size: 200% 100%;
    animation: rkfvs-shimmer 1.4s infinite ease-in-out;
    border-radius: var(--rkfvs-radius-sm);
}
.rkfvs-skeleton.rkfvs-product__image {
    aspect-ratio: 1/1;
    border-radius: 0;
}
.rkfvs-skeleton--title {
    height: 14px;
    width: 90%;
    margin-top: 4px;
}
.rkfvs-skeleton--text {
    height: 11px;
    width: 75%;
}
.rkfvs-skeleton--short {
    width: 50%;
}
.rkfvs-popular {
    display: flex;
    flex-direction: column;
    gap: var(--rkfvs-gap-lg);
}
.rkfvs-popular__section {
    display: flex;
    flex-direction: column;
    gap: var(--rkfvs-gap-sm);
}
.rkfvs-popular h5 {
    margin: 0;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--rkfvs-text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.rkfvs-popular h5 svg {
    opacity: .6;
}
.rkfvs-popular__bestsellers h5 {
    color: var(--rkfvs-accent);
}
.rkfvs-popular__bestsellers h5 svg {
    opacity: .8;
}
.rkfvs-popular__grid {
    margin-top: var(--rkfvs-gap-sm);
}
.rkfvs-popular__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--rkfvs-gap-sm);
}
.rkfvs-popular__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #f5f5f5;
    border: 1px solid var(--rkfvs-border);
    border-radius: 100px;
    font-size: .85rem;
    color: var(--rkfvs-text);
    cursor: pointer;
    transition: background var(--rkfvs-transition), border-color var(--rkfvs-transition), color var(--rkfvs-transition);
}
.rkfvs-popular__tag:hover {
    background: var(--rkfvs-accent);
    border-color: var(--rkfvs-accent);
    color: #fff;
}
.rkfvs-popular__tag:focus-visible {
    outline: 2px solid var(--rkfvs-accent);
    outline-offset: 2px;
}
.rkfvs-load-more {
    display: flex;
    justify-content: center;
    padding: var(--rkfvs-gap) 0;
}
.rkfvs-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--rkfvs-border);
    border-top-color: var(--rkfvs-accent);
    border-radius: 50%;
    animation: rkfvs-spin .6s linear infinite;
}
@keyframes rkfvs-spin {
    to {
        transform: rotate(360deg);
    }
}
.rkfvs-filters {
    width: var(--rkfvs-filters-width);
    flex-shrink: 0;
    border-right: 1px solid var(--rkfvs-border);
    overflow-y: auto;
    padding: var(--rkfvs-gap-lg) var(--rkfvs-gap);
    display: flex;
    flex-direction: column;
    gap: var(--rkfvs-gap-lg);
    scrollbar-width: thin;
    scrollbar-color: var(--rkfvs-border) transparent;
}
.rkfvs-filters::-webkit-scrollbar {
    width: 4px;
}
.rkfvs-filters::-webkit-scrollbar-thumb {
    background: var(--rkfvs-border);
    border-radius: 2px;
}
.rkfvs-filters:empty {
    display: none;
}
.rkfvs-filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--rkfvs-gap-sm);
}
.rkfvs-filter-group__title {
    margin: 0;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--rkfvs-text-muted);
    font-weight: 700;
    padding-bottom: var(--rkfvs-gap-sm);
    border-bottom: 1px solid var(--rkfvs-border);
}
.rkfvs-filter-group__items {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.rkfvs-filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 6px 8px;
    background: none;
    border: none;
    border-radius: var(--rkfvs-radius-sm);
    cursor: pointer;
    font-size: .85rem;
    color: var(--rkfvs-text);
    text-align: left;
    transition: background var(--rkfvs-transition), color var(--rkfvs-transition);
}
.rkfvs-filter-item > span:first-child {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.rkfvs-filter-item:hover {
    background: #f5f5f5;
    color: var(--rkfvs-primary);
}
.rkfvs-filter-item:focus-visible {
    outline: 2px solid var(--rkfvs-accent);
    outline-offset: 0;
}
.rkfvs-filter-item.active {
    background: rgba(255, 0, 0, 0.06);
    color: var(--rkfvs-accent);
    font-weight: 600;
}
.rkfvs-filter-item.active .rkfvs-filter-count {
    background: var(--rkfvs-accent);
    color: #fff;
}
.rkfvs-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 18px;
    padding: 0 5px;
    background: var(--rkfvs-border);
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 600;
    color: var(--rkfvs-text-muted);
    flex-shrink: 0;
    margin-left: var(--rkfvs-gap-sm);
    transition: background var(--rkfvs-transition), color var(--rkfvs-transition);
}
.rkfvs-price-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--rkfvs-gap-sm);
    font-size: .85rem;
    font-weight: 600;
    color: var(--rkfvs-text);
}
.rkfvs-price-sep {
    color: var(--rkfvs-text-muted);
}
.rkfvs-price-slider {
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
}
.rkfvs-price-track {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--rkfvs-border);
    border-radius: 2px;
}
.rkfvs-price-range {
    position: absolute;
    height: 4px;
    background: var(--rkfvs-accent);
    border-radius: 2px;
}
.rkfvs-price-input {
    position: absolute;
    width: 100%;
    height: 4px;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    pointer-events: none;
    margin: 0;
}
.rkfvs-price-input::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--rkfvs-accent);
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    pointer-events: all;
    position: relative;
    z-index: 1;
}
.rkfvs-price-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--rkfvs-accent);
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    pointer-events: all;
}
.rkfvs-price-input--max {
    z-index: 2;
}
.rkfvs-price-reset {
    background: none;
    border: 1px solid var(--rkfvs-border);
    border-radius: var(--rkfvs-radius-sm);
    padding: 4px 10px;
    font-size: .72rem;
    color: var(--rkfvs-text-muted);
    cursor: pointer;
    align-self: flex-start;
    margin-top: 2px;
    transition: color var(--rkfvs-transition), border-color var(--rkfvs-transition);
}
.rkfvs-price-reset:hover {
    color: var(--rkfvs-accent);
    border-color: var(--rkfvs-accent);
}
.rkfvs-filter-toggle {
    display: none;
    align-items: center;
    gap: var(--rkfvs-gap-sm);
    padding: 8px 16px;
    background: var(--rkfvs-primary);
    color: #fff;
    border: none;
    border-radius: var(--rkfvs-radius);
    font-size: .875rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--rkfvs-transition);
}
@media (max-width: 767px) {
    .rkfvs-overlay.rkfvs-overlay--open .rkfvs-filter-toggle {
        display: flex !important;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: calc(var(--rkfvs-overlay-z) + 10);
        box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    }
}
.rkfvs-filter-toggle:hover,
.rkfvs-filter-toggle.active {
    background: var(--rkfvs-accent);
}
.rkfvs-filter-toggle:focus-visible {
    outline: 2px solid var(--rkfvs-accent);
    outline-offset: 2px;
}
@keyframes rkfvs-shimmer {
    0% { background-position: 200% 0; }
    to { background-position: -200% 0; }
}
@keyframes rkfvs-fade-in {
    0% { opacity: 0; }
    to { opacity: 1; }
}
@keyframes rkfvs-slide-up-in {
    0% { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes rkfvs-scale-in {
    0% { opacity: 0; transform: scale(.95); }
    to { opacity: 1; transform: scale(1); }
}
.rkfvs-overlay[data-animation=fade],
.rkfvs-overlay[data-animation=fade] .rkfvs-overlay__container {
    transition: opacity .22s ease;
}
.rkfvs-overlay[data-animation=fade]:not(.rkfvs-overlay--open) {
    opacity: 0;
}
.rkfvs-overlay[data-animation=fade].rkfvs-overlay--open {
    opacity: 1;
}
.rkfvs-overlay[data-animation=slide-up] {
    transition: opacity .25s ease;
}
.rkfvs-overlay[data-animation=slide-up] .rkfvs-overlay__container {
    transition: opacity .25s ease, transform .25s cubic-bezier(.22, .61, .36, 1);
}
.rkfvs-overlay[data-animation=slide-up]:not(.rkfvs-overlay--open) {
    opacity: 0;
}
.rkfvs-overlay[data-animation=slide-up]:not(.rkfvs-overlay--open) .rkfvs-overlay__container {
    opacity: 0;
    transform: translateY(24px);
}
.rkfvs-overlay[data-animation=slide-up].rkfvs-overlay--open {
    opacity: 1;
}
.rkfvs-overlay[data-animation=slide-up].rkfvs-overlay--open .rkfvs-overlay__container {
    opacity: 1;
    transform: translateY(0);
}
.rkfvs-overlay[data-animation=scale] {
    transition: opacity .22s ease;
}
.rkfvs-overlay[data-animation=scale] .rkfvs-overlay__container {
    transition: opacity .22s ease, transform .22s cubic-bezier(.22, .61, .36, 1);
    transform-origin: top center;
}
.rkfvs-overlay[data-animation=scale]:not(.rkfvs-overlay--open) {
    opacity: 0;
}
.rkfvs-overlay[data-animation=scale]:not(.rkfvs-overlay--open) .rkfvs-overlay__container {
    opacity: 0;
    transform: scale(.95);
}
.rkfvs-overlay[data-animation=scale].rkfvs-overlay--open {
    opacity: 1;
}
.rkfvs-overlay[data-animation=scale].rkfvs-overlay--open .rkfvs-overlay__container {
    opacity: 1;
    transform: scale(1);
}
[data-animation=fade] .rkfvs-results .rkfvs-product,
.rkfvs-results .rkfvs-product {
    animation: rkfvs-fade-in .2s ease both;
}
[data-animation=slide-up] .rkfvs-results .rkfvs-product {
    animation: rkfvs-slide-up-in .25s cubic-bezier(.22, .61, .36, 1) both;
}
[data-animation=scale] .rkfvs-results .rkfvs-product {
    animation: rkfvs-scale-in .22s cubic-bezier(.22, .61, .36, 1) both;
}
.rkfvs-results .rkfvs-product:nth-child(1) { animation-delay: 0s; }
.rkfvs-results .rkfvs-product:nth-child(2) { animation-delay: .03s; }
.rkfvs-results .rkfvs-product:nth-child(3) { animation-delay: .06s; }
.rkfvs-results .rkfvs-product:nth-child(4) { animation-delay: .09s; }
.rkfvs-results .rkfvs-product:nth-child(5) { animation-delay: .12s; }
.rkfvs-results .rkfvs-product:nth-child(6) { animation-delay: .15s; }
.rkfvs-results .rkfvs-product:nth-child(7) { animation-delay: .18s; }
.rkfvs-results .rkfvs-product:nth-child(8) { animation-delay: .21s; }
.rkfvs-results .rkfvs-product:nth-child(9) { animation-delay: .24s; }
.rkfvs-results .rkfvs-product:nth-child(10) { animation-delay: .27s; }
.rkfvs-results .rkfvs-product:nth-child(11) { animation-delay: .3s; }
.rkfvs-results .rkfvs-product:nth-child(12) { animation-delay: .33s; }
@media (prefers-reduced-motion: reduce) {
    .rkfvs-overlay,
    .rkfvs-overlay .rkfvs-overlay__container,
    .rkfvs-results .rkfvs-product,
    .rkfvs-skeleton {
        animation: none !important;
        transition: none !important;
    }
}
@media (max-width: 767px) {
    .rkfvs-overlay {
        padding: 0;
        align-items: flex-start;
    }
    .rkfvs-overlay__container {
        border-radius: 0;
        max-height: 100dvh;
        height: 100dvh;
        max-width: 100%;
    }
    .rkfvs-overlay__header {
        padding: var(--rkfvs-gap-sm) var(--rkfvs-gap);
    }
    .rkfvs-search-box__input {
        padding: 14px 0;
        font-size: 1rem;
    }
    .rkfvs-overlay__close {
        width: 44px;
        height: 44px;
    }
    .rkfvs-filters {
        display: none;
        position: fixed;
        inset: auto 0 0;
        width: 100%;
        max-height: 60vh;
        border-right: none;
        border-top: 2px solid var(--rkfvs-border);
        border-radius: var(--rkfvs-radius) var(--rkfvs-radius) 0 0;
        padding: var(--rkfvs-gap-lg) var(--rkfvs-gap);
        background: var(--rkfvs-bg);
        z-index: calc(var(--rkfvs-overlay-z) + 1);
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        transform: translateY(100%);
        transition: transform .3s cubic-bezier(.22, .61, .36, 1);
    }
    .rkfvs-filters.rkfvs-filters--drawer-open {
        display: flex;
        transform: translateY(0);
    }
    .rkfvs-filter-toggle {
        display: inline-flex;
        position: fixed;
        bottom: var(--rkfvs-gap);
        left: 50%;
        transform: translate(-50%);
        z-index: var(--rkfvs-overlay-z);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    .rkfvs-results {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--rkfvs-gap-sm);
    }
    .rkfvs-product__name {
        font-size: .8rem;
    }
    .rkfvs-product__price {
        font-size: .9rem;
    }
    .rkfvs-overlay__main {
        padding: var(--rkfvs-gap) var(--rkfvs-gap);
    }
    .rkfvs-popular__tag {
        padding: 8px 16px;
        font-size: .9rem;
    }
    .rkfvs-filter-item {
        padding: 10px 8px;
        font-size: .9rem;
    }
    .rkfvs-search-box__shortcut {
        display: none;
    }
    .rkfvs-overlay__footer {
        padding: var(--rkfvs-gap-sm);
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .rkfvs-overlay {
        padding: var(--rkfvs-gap);
        align-items: flex-start;
    }
    .rkfvs-overlay__container {
        max-height: calc(100vh - var(--rkfvs-gap) * 2);
    }
    .rkfvs-filters {
        width: 200px;
    }
    .rkfvs-results {
        grid-template-columns: repeat(3, 1fr);
    }
    .rkfvs-filter-group__title {
        font-size: .7rem;
    }
}
@media (min-width: 1024px) {
    .rkfvs-filters {
        width: var(--rkfvs-filters-width);
    }
    .rkfvs-results {
        grid-template-columns: repeat(auto-fill, minmax(var(--rkfvs-results-col-min), 1fr));
    }
    .rkfvs-overlay {
        padding: var(--rkfvs-gap);
        padding-top: 4vh;
        align-items: flex-start;
    }
    .rkfvs-overlay__container {
        max-height: 90vh;
    }
}
@media (min-width: 1400px) {
    .rkfvs-overlay__container {
        max-width: 1500px;
    }
    .rkfvs-results {
        grid-template-columns: repeat(auto-fill, minmax(var(--rkfvs-results-col-min), 1fr));
    }
}
.rkfvs-product__image img:hover {
    border-radius: 8px;
}
.rkfvs-results-section-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 2px 0 8px;
  margin-top: 4px;
}
.rkfvs-results-section-header:first-child {
  margin-top: 0;
}
.rkfvs-results-section-header--exact {
  color: var(--rkfvs-accent);
  border-bottom: 1px solid var(--rkfvs-accent);
  opacity: .9;
}
.rkfvs-results-section-header--related {
  color: var(--rkfvs-text-muted);
  border-bottom: 1px solid var(--rkfvs-border);
}
.rkfvs-product--exact {
  border-color: var(--rkfvs-accent);
  box-shadow: 0 0 0 2px var(--rkfvs-accent), 0 4px 16px rgba(0,0,0,.1);
  position: relative;
}
.rkfvs-product--exact:hover,
.rkfvs-product--exact:focus-visible {
  box-shadow: 0 0 0 2px var(--rkfvs-accent), 0 6px 24px rgba(0,0,0,.14);
  transform: translateY(-2px);
}
.rkfvs-product__exact-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    background: var(--rkfvs-accent, #ff0000);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    line-height: 1;
    animation: rkfvs-badge-pulse 2s ease-in-out infinite;
}
.rkfvs-product__exact-badge svg {
    flex-shrink: 0;
}
@keyframes rkfvs-badge-pulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 2px 12px rgba(255, 0, 0, 0.4);
    }
}
.rkfvs-product:hover .rkfvs-product__exact-badge {
    animation: none;
    box-shadow: 0 3px 12px rgba(255, 0, 0, 0.35);
    transform: scale(1.05);
    transition: all 0.2s ease;
}
.rkfvs-product--exact .rkfvs-product__customizable-badge {
    top: 10px;
    right: 10px;
}
.rkfvs-results-section-header--indirect {
  color: var(--rkfvs-text-muted);
  border-bottom: 1px dashed var(--rkfvs-border);
  opacity: .75;
}
.rkfvs-filter-group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding-bottom: var(--rkfvs-gap-sm);
  border-bottom: 1px solid var(--rkfvs-border);
  user-select: none;
}
.rkfvs-filter-group__header:hover .rkfvs-filter-group__title {
  color: var(--rkfvs-primary);
}
.rkfvs-filter-group__header .rkfvs-filter-group__title {
  border-bottom: none;
  padding-bottom: 0;
  margin: 0;
  flex: 1;
}
.rkfvs-filter-group__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rkfvs-text-muted);
  border-radius: var(--rkfvs-radius-sm);
  flex-shrink: 0;
  transition: color var(--rkfvs-transition), background var(--rkfvs-transition);
  padding: 0;
}
.rkfvs-filter-group__toggle:hover {
  color: var(--rkfvs-primary);
  background: rgba(0,0,0,.04);
}
.rkfvs-filter-group__toggle svg {
  transition: transform .2s ease;
}
.rkfvs-filter-group__toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.rkfvs-filter-group__items,
.rkfvs-filter-group__collapsible {
  overflow: hidden;
  transition: none;
}
.rkfvs-filter-group__items:not([style*="display: none"]),
.rkfvs-filter-group__collapsible:not([style*="display: none"]) {
  margin-top: var(--rkfvs-gap-sm);
}
.rkfvs-filters__header {
  padding-bottom: var(--rkfvs-gap-sm);
  margin-bottom: var(--rkfvs-gap-sm);
  border-bottom: 2px solid var(--rkfvs-primary);
  flex-shrink: 0;
}
.rkfvs-filters__title {
  margin: 0;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--rkfvs-primary);
}
.rkfvs-popular__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--rkfvs-gap-sm);
}
.rkfvs-popular__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px 7px 8px;
    background: #f5f5f5;
    border: 1px solid var(--rkfvs-border);
    border-radius: 100px;
    font-size: .85rem;
    color: var(--rkfvs-text);
    cursor: pointer;
    transition: background var(--rkfvs-transition), border-color var(--rkfvs-transition), color var(--rkfvs-transition), transform var(--rkfvs-transition);
    text-align: left;
}
.rkfvs-popular__tag:hover {
    background: var(--rkfvs-accent);
    border-color: var(--rkfvs-accent);
    color: #fff;
    transform: translateY(-1px);
}
.rkfvs-popular__tag:hover .rkfvs-popular__tag-num {
    background: rgba(255,255,255,.25);
    color: #fff;
}
.rkfvs-popular__tag:hover .rkfvs-popular__tag-icon svg {
    stroke: #fff;
}
.rkfvs-popular__tag:focus-visible {
    outline: 2px solid var(--rkfvs-accent);
    outline-offset: 2px;
}
.rkfvs-popular__tag-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: var(--rkfvs-border);
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 700;
    color: var(--rkfvs-text-muted);
    flex-shrink: 0;
    transition: background var(--rkfvs-transition), color var(--rkfvs-transition);
    line-height: 1;
}
.rkfvs-popular__tag-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    opacity: .45;
    transition: opacity var(--rkfvs-transition);
}
.rkfvs-popular__tag:hover .rkfvs-popular__tag-icon {
    opacity: .8;
}
.rkfvs-popular__tag-label {
    font-weight: 500;
}
.rkfvs-sidebar-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem 2rem;
    transition: opacity .3s ease, transform .3s ease;
    overflow: hidden;
}
.rkfvs-sidebar-banner--hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    height: 0;
    padding: 0;
    overflow: hidden;
}
.rkfvs-sidebar-banner__inner {
    text-align: center;
    max-width: 200px;
}
.rkfvs-sidebar-banner__icon {
    margin-bottom: 1.5rem;
    color: var(--rkfvs-primary, #ff0000);
    opacity: .9;
    animation: rkfvs-banner-pulse 3s ease-in-out infinite;
}
@keyframes rkfvs-banner-pulse {
    0%, 100% { transform: scale(1);   opacity: .9; }
    50%       { transform: scale(1.06); opacity: 1;  }
}
.rkfvs-sidebar-banner__icon svg {
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,.1));
}
.rkfvs-sidebar-banner__headline {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--rkfvs-text, #333);
    margin: 0 0 .5rem;
    line-height: 1.3;
}
.rkfvs-sidebar-banner__sub {
    font-size: .82rem;
    color: var(--rkfvs-text, #333);
    opacity: .55;
    margin: 0 0 1.5rem;
    line-height: 1.55;
}
.rkfvs-sidebar-banner__hints {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.rkfvs-sidebar-banner__hints li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    color: var(--rkfvs-text, #333);
    opacity: .7;
}
.rkfvs-sidebar-banner__hints svg {
    color: var(--rkfvs-primary, #ff0000);
    flex-shrink: 0;
}
.rkfvs-filters.rkfvs-filters--has-banner {
    display: flex;
}
.rkfvs-sidebar-banner--hidden {
    display: none !important;
}
.rkfvs-sidebar-banner {
    flex: 1;
    justify-content: center;
    min-height: 0;
}
.rkfvs-nav-section {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 12px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--rkfvs-border);
}
.rkfvs-nav-section__title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .71rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--rkfvs-text-muted);
}
.rkfvs-nav-section__title svg {
    opacity: .55;
    flex-shrink: 0;
}
.rkfvs-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.rkfvs-nav-link {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 14px 9px 11px;
    background: var(--rkfvs-bg);
    border: 1.5px solid var(--rkfvs-border);
    border-radius: var(--rkfvs-radius);
    text-decoration: none;
    color: var(--rkfvs-text);
    cursor: pointer;
    max-width: 260px;
    transition:
        background    var(--rkfvs-transition),
        border-color  var(--rkfvs-transition),
        color         var(--rkfvs-transition),
        box-shadow    var(--rkfvs-transition),
        transform     var(--rkfvs-transition);
    outline: none;
}
.rkfvs-nav-link:hover {
    background:    var(--rkfvs-primary);
    border-color:  var(--rkfvs-primary);
    color:         #fff;
    box-shadow:    0 3px 12px rgba(0, 0, 0, .14);
    transform:     translateY(-1px);
}
.rkfvs-nav-link:focus-visible {
    outline:        2px solid var(--rkfvs-accent);
    outline-offset: 2px;
}
.rkfvs-nav-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width:  36px;
    height: 36px;
    border-radius: var(--rkfvs-radius-sm);
    background: rgba(0, 0, 0, .05);
    font-size: 18px;
    line-height: 1;
    color: var(--rkfvs-text-muted);
    transition: background var(--rkfvs-transition), color var(--rkfvs-transition);
}
.rkfvs-nav-link:hover .rkfvs-nav-link__icon {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}
.rkfvs-nav-link__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.rkfvs-nav-link__label {
    font-size:   .84rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow:    hidden;
    text-overflow: ellipsis;
    color: var(--rkfvs-text);
    transition: color var(--rkfvs-transition);
}
.rkfvs-nav-link:hover .rkfvs-nav-link__label {
    color: #fff;
}
.rkfvs-nav-link__breadcrumb {
    font-size:   .71rem;
    color:       var(--rkfvs-text-muted);
    white-space: nowrap;
    overflow:    hidden;
    text-overflow: ellipsis;
    transition:  color var(--rkfvs-transition);
    line-height: 1.3;
}
.rkfvs-nav-link:hover .rkfvs-nav-link__breadcrumb {
    color: rgba(255, 255, 255, .75);
}
.rkfvs-nav-link__badge {
    align-self:   flex-start;
    display:      inline-block;
    font-size:    .63rem;
    font-weight:  700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding:      2px 6px;
    border-radius: 100px;
    background:   rgba(0, 0, 0, .07);
    color:        var(--rkfvs-text-muted);
    flex-shrink:  0;
    margin-top:   1px;
    transition:   background var(--rkfvs-transition), color var(--rkfvs-transition);
    line-height:  1.5;
    white-space:  nowrap;
}
.rkfvs-nav-link:hover .rkfvs-nav-link__badge {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}
.rkfvs-nav-link__row {
    display:     flex;
    align-items: center;
    gap:         6px;
}
@media (prefers-reduced-motion: reduce) {
    .rkfvs-nav-link {
        transition: none !important;
        transform:  none !important;
    }
    .rkfvs-nav-link__icon,
    .rkfvs-nav-link__label,
    .rkfvs-nav-link__breadcrumb,
    .rkfvs-nav-link__badge {
        transition: none !important;
    }
}
@media (max-width: 767px) {
    .rkfvs-nav-links {
        gap: 6px;
    }
    .rkfvs-nav-link {
        padding:   8px 11px 8px 9px;
        max-width: 100%;
    }
    .rkfvs-nav-link__icon {
        width:     30px;
        height:    30px;
        font-size: 16px;
    }
    .rkfvs-nav-link__breadcrumb {
        display: none;
    }
    .rkfvs-status {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        min-height: 0;
        flex-wrap: wrap;
    }
    .rkfvs-product {
        overflow: hidden;
    }
}
.rkfvs-featured-categories-container {
    margin-bottom: var(--rkfvs-gap);
    padding: 0 var(--rkfvs-gap-sm);
}
.rkfvs-featured-categories {
    background: var(--rkfvs-bg);
    border: 1px solid var(--rkfvs-border);
    border-radius: var(--rkfvs-radius);
    overflow: hidden;
}
.rkfvs-featured-categories__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0,0,0,.02);
    border-bottom: 1px solid var(--rkfvs-border);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--rkfvs-text-muted);
}
.rkfvs-featured-categories__header svg {
    flex-shrink: 0;
}
.rkfvs-featured-categories__list {
    padding: 10px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.rkfvs-featured-category {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0,0,0,.04);
    border: 1px solid var(--rkfvs-border);
    border-radius: 32px;
    cursor: pointer;
    transition: all var(--rkfvs-transition);
    overflow: hidden;
}
.rkfvs-featured-category:hover {
    background: var(--rkfvs-primary);
    border-color: var(--rkfvs-primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.rkfvs-featured-category:hover .rkfvs-featured-category__name {
    color: #fff;
}
.rkfvs-featured-category:hover .rkfvs-featured-category__count {
    color: rgba(255,255,255,.8);
}
.rkfvs-featured-category__name {
    font-size: .85rem;
    font-weight: 600;
    color: var(--rkfvs-text);
    transition: color var(--rkfvs-transition);
    white-space: nowrap;
}
.rkfvs-featured-category__count {
    font-size: .7rem;
    font-weight: 500;
    color: var(--rkfvs-text-muted);
    background: rgba(0,0,0,.05);
    padding: 2px 6px;
    border-radius: 20px;
    transition: all var(--rkfvs-transition);
    white-space: nowrap;
}
.rkfvs-featured-category:hover .rkfvs-featured-category__count {
    background: rgba(255,255,255,.2);
    color: #fff;
}
.rkfvs-featured-category__bar {
    display: none;
}
.rkfvs-featured-category--with-bar {
    position: relative;
}
.rkfvs-featured-category--with-bar .rkfvs-featured-category__bar {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background: var(--rkfvs-accent);
    border-radius: 2px;
    transition: width .2s ease;
}
.rkfvs-featured-category--compact {
    padding: 4px 10px;
}
.rkfvs-featured-category--compact .rkfvs-featured-category__count {
    font-size: .65rem;
    padding: 1px 4px;
}
.rkfvs-category-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rkfvs-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: .8rem;
    z-index: calc(var(--rkfvs-overlay-z) + 30);
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
    white-space: nowrap;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
@media (max-width: 767px) {
    .rkfvs-featured-categories__list {
        gap: 6px;
        padding: 8px 10px;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    .rkfvs-featured-category {
        flex-shrink: 0;
        padding: 5px 10px;
    }
    .rkfvs-featured-category__name {
        font-size: .75rem;
        white-space: nowrap;
    }
    .rkfvs-featured-category__count {
        font-size: .6rem;
        padding: 1px 4px;
    }
    .rkfvs-category-toast {
        white-space: normal;
        text-align: center;
        max-width: 90%;
        font-size: .75rem;
    }
}
.rkfvs-featured-category:active {
    transform: scale(0.96);
}
.rkfvs-custom-message {
    background: linear-gradient(135deg, var(--rkfvs-primary) 0%, var(--rkfvs-accent) 100%);
    color: #fff;
    padding: 12px 16px;
    border-radius: var(--rkfvs-radius);
    margin-bottom: var(--rkfvs-gap);
    font-size: .9rem;
    text-align: center;
}
.rkfvs-custom-message a {
    color: #fff;
    text-decoration: underline;
}
.rkfvs-custom-message a:hover {
    color: rgba(255,255,255,.8);
}
.rkfvs-custom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: var(--rkfvs-gap);
    padding: 0 var(--rkfvs-gap-sm);
}
.rkfvs-custom-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--rkfvs-bg);
    border: 1px solid var(--rkfvs-border);
    border-radius: 40px;
    color: var(--rkfvs-text);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    transition: all var(--rkfvs-transition);
}
.rkfvs-custom-link:hover {
    background: var(--rkfvs-primary);
    border-color: var(--rkfvs-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.rkfvs-custom-link .material-icons {
    font-size: 18px;
}
@media (max-width: 767px) {
    .rkfvs-custom-links {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }
    .rkfvs-custom-link {
        flex-shrink: 0;
        font-size: .75rem;
        padding: 6px 12px;
    }
    .rkfvs-custom-message {
        font-size: .8rem;
        padding: 10px 12px;
    }
}
.rkfvs-limit-selector {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 12px;
}
.rkfvs-limit-label {
    font-size: 0.7rem;
    color: var(--rkfvs-text-muted);
}
.rkfvs-limit-select {
    font-size: 0.7rem;
    padding: 2px 6px;
    border: 1px solid var(--rkfvs-border);
    border-radius: var(--rkfvs-radius-sm);
    background: var(--rkfvs-bg);
    color: var(--rkfvs-text);
    cursor: pointer;
}
.rkfvs-limit-select:hover {
    border-color: var(--rkfvs-accent);
}
.rkfvs-warning-banner {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: var(--rkfvs-radius);
    padding: 8px 12px;
    margin-bottom: 12px;
    font-size: 0.75rem;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rkfvs-warning-banner .material-icons {
    font-size: 16px;
    color: #ffc107;
}
.rkfvs-product__stock--backorder {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}
@media (max-width: 767px) {
    .rkfvs-limit-selector {
        margin-left: 0;
        margin-top: 6px;
        width: 100%;
        justify-content: flex-end;
    }
    .rkfvs-limit-select {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}
#rkrfreevisualsearch-filters {
    overflow-y: scroll !important;
}
.rkfvs-overlay__header {
    position: relative;
    width: 100%;
}
.rkfvs-search-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
#rkfvs-autocomplete {
    position: absolute !important;
    top: calc(100% + 5px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    z-index: 10000 !important;
    padding: 6px !important;
    box-sizing: border-box !important;
}
#rkfvs-autocomplete .rkfvs-autocomplete__grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
    gap: 6px !important;
    max-height: 240px !important;
}
#rkfvs-autocomplete .rkfvs-autocomplete__item {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    padding: 6px 10px !important;
    background: #f8f9fa !important;
    border-radius: 6px !important;
    border: 1px solid #eef2f6 !important;
    cursor: pointer !important;
    transition: background 0.15s, border-color 0.15s !important;
}
#rkfvs-autocomplete .rkfvs-autocomplete__item:hover {
    background: #ffffff !important;
    border-color: var(--rkfvs-primary, #ff0000) !important;
}
#rkfvs-autocomplete .rkfvs-autocomplete__text {
    flex: 1 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    color: #1a1a1a !important;
    word-break: break-word !important;
    padding-right: 20px !important;
}
#rkfvs-autocomplete .rkfvs-autocomplete__text mark {
    background: transparent !important;
    color: var(--rkfvs-primary, #ff0000) !important;
    font-weight: 700 !important;
    padding: 0;
}
#rkfvs-autocomplete .rkfvs-autocomplete__badge {
    position: absolute !important;
    top: -10px;
    right: 6px !important;
    z-index: 2 !important;
    pointer-events: none !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    color: #ffffff !important;
    padding: 2px 6px !important;
    border-radius: 30px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}
#rkfvs-autocomplete .rkfvs-autocomplete__badge--product {
    background: var(--rkfvs-label-product, #2c7da0) !important;
    top: 5px;
}
#rkfvs-autocomplete .rkfvs-autocomplete__badge--category {
    background: var(--rkfvs-label-category, #2a9d8f) !important;
}
#rkfvs-autocomplete .rkfvs-autocomplete__badge--manufacturer {
    background: var(--rkfvs-label-manufacturer, #e76f51) !important;
}
#rkfvs-autocomplete .rkfvs-autocomplete__badge--default {
    background: var(--rkfvs-label-default, #adb5bd) !important;
}
#rkfvs-autocomplete .rkfvs-autocomplete__close-btn {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 25px !important;
    height: 25px !important;
    background: rgb(68 68 68) !important;
    border: none !important;
    border-radius: 50% !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700;
    line-height: 1 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 3 !important;
    opacity: 0.7 !important;
    transition: opacity 0.15s, background 0.15s !important;
}
#rkfvs-autocomplete .rkfvs-autocomplete__close-btn:hover {
    opacity: 1 !important;
    background: rgb(68 68 68) !important;
    color: #fff !important;
    width: 28px !important;
    height: 28px !important;
}
#rkfvs-autocomplete {
    position: absolute !important;
    top: calc(100% + 5px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    z-index: 10000 !important;
    padding: 6px !important;
    box-sizing: border-box !important;
}
@media (max-width: 768px) {
    #rkfvs-autocomplete {
        top: 60px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        margin-top: 8px !important;
        margin-bottom: 8px !important;
        max-height: 50vh !important;
        overflow-y: auto !important;
        z-index: 10000 !important;
    }
    .rkfvs-search-box {
        position: relative !important;
    }
    #rkfvs-autocomplete .rkfvs-autocomplete__grid {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
        max-height: 40vh !important;
        overflow-y: auto !important;
    }
}
@media (min-width: 641px) and (max-width: 1023px) {
    #rkfvs-autocomplete .rkfvs-autocomplete__grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 768px) {
    body.rkfvs-autocomplete-mobile-off #rkfvs-autocomplete {
        display: none !important;
    }
}
#rkfvs-autocomplete .rkfvs-autocomplete__grid::-webkit-scrollbar {
    width: 6px;
}
#rkfvs-autocomplete .rkfvs-autocomplete__grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
#rkfvs-autocomplete .rkfvs-autocomplete__grid::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}
#rkfvs-autocomplete .rkfvs-autocomplete__grid::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
.rkfvs-product__image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
}
.rkfvs-product__image img:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f9fa url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23adb5bd"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 8h-4v4h-4v-4H6V9h4V5h4v4h4v2z"/></svg>') center no-repeat;
    background-size: 40px;
}
.rkfvs-product__image img:after {
    display: none;
}
@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}
.rkfvs-clear-filters {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f0f0f0;
    border: none;
    border-radius: 20px;
    padding: 6px 12px;
    margin-bottom: 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.rkfvs-clear-filters:hover {
    background: #ffebee;
    color: #dc3545;
}
.rkfvs-clear-filters .material-icons {
    font-size: 14px;
}
.rkfvs-popular__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.rkfvs-popular__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--rkfvs-border);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--rkfvs-text);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rkfvs-popular__tag:hover {
    background: var(--rkfvs-primary);
    border-color: var(--rkfvs-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.rkfvs-popular__tag-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--rkfvs-text-muted);
    transition: all 0.2s ease;
}
.rkfvs-popular__tag:hover .rkfvs-popular__tag-num {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}
@media (max-width: 767px) {
    .rkfvs-product__cart-container {
        flex-direction: row!important;
    }
    .rkfvs-popular__tag {
        padding: 6px 12px;
        font-size: 0.8rem;
        max-width: 180px;
    }
    .rkfvs-popular__tags {
        gap: 6px;
    }
}
.rkfvs-banner__overlay {
    background-color: rgba(255, 0, 0, 0.2);
    background-color: var(--rkfvs-accent-rgba, rgba(255, 0, 0, 0.2));
}
.rkfvs-scroll-top-btn {
    position: fixed;
    bottom: 95px;
    right: 35px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--rkfvs-primary, #000000);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
    z-index: calc(var(--rkfvs-overlay-z) + 10);
}
.rkfvs-scroll-top-btn:hover {
    background: var(--rkfvs-accent, #ff0000);
    transform: translateY(-2px);
}
.rkfvs-scroll-top-btn.rkfvs-scroll-top-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.rkfvs-scroll-top-btn svg {
    pointer-events: none;
}
@media (max-width: 767px) {
    .rkfvs-scroll-top-btn {
        bottom: 65px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}
.rkfvs-overlay--dark {
    --rkfvs-primary: #0f3460;
    --rkfvs-accent: #00b4d8;
    --rkfvs-bg: #1a1a2e;
    --rkfvs-text: #e8e8e8;
    --rkfvs-text-muted: #a0a0a0;
    --rkfvs-border: #16213e;
}
.rkfvs-overlay--dark .rkfvs-product {
    background: #16213e;
    border-color: #0f3460;
}
.rkfvs-overlay--dark .rkfvs-product__name {
    color: #e8e8e8;
}
.rkfvs-overlay--dark .rkfvs-filter-item:hover {
    background: #0f3460;
}
.rkfvs-overlay--tiles {
    --rkfvs-bg: #000000;
    --rkfvs-primary: #000000;
    --rkfvs-accent: #ffffff;
}
.rkfvs-overlay--tiles .rkfvs-results {
    gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.rkfvs-overlay--tiles .rkfvs-product {
    border-radius: 0;
    border: none;
    position: relative;
    margin: 0; }
.rkfvs-overlay--tiles .rkfvs-product__image {
    aspect-ratio: 1/1;
}
.rkfvs-overlay--tiles .rkfvs-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.rkfvs-overlay--tiles .rkfvs-product:hover .rkfvs-product__image img {
    transform: scale(1.05);
}
.rkfvs-overlay--tiles .rkfvs-product__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px 12px 12px;
}
.rkfvs-overlay--tiles .rkfvs-product__name,
.rkfvs-overlay--tiles .rkfvs-product__price {
    color: white;
}
.rkfvs-overlay--tiles .rkfvs-filters {
    display: none;
}
.rkfvs-overlay--tiles .rkfvs-product__cart-wrap {
    padding: 0 6px 10px;
}
.rkfvs-overlay--tiles .rkfvs-product__cart-btn {
    font-size: 0.65rem;
    padding: 5px 8px;
    min-height: 28px;
}
.rkfvs-overlay--nordic {
    --rkfvs-primary: #2c3e50;
    --rkfvs-accent: #d35400;
    --rkfvs-bg: #fdf6e3;
    --rkfvs-text: #2c3e50;
    --rkfvs-text-muted: #7f8c8d;
    --rkfvs-border: #e8e0d5;
}
.rkfvs-overlay--nordic .rkfvs-product__name {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.rkfvs-overlay--nordic .rkfvs-filter-group__title {
    text-transform: uppercase;
    font-weight: 500;
}
.rkfvs-overlay--nordic .rkfvs-product {
    border-width: 1px;
    box-shadow: none;
}
.rkfvs-overlay--nordic .rkfvs-product:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.rkfvs-overlay--quicklist .rkfvs-results {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.rkfvs-overlay--quicklist .rkfvs-product {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    position: relative;
    overflow: visible;
}
.rkfvs-overlay--quicklist .rkfvs-product__image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
.rkfvs-overlay--quicklist .rkfvs-product__info {
    flex: 1;
    padding: 0;
    min-width: 0;
}
.rkfvs-overlay--quicklist .rkfvs-product__price {
    margin-top: 4px;
}
.rkfvs-overlay--quicklist .rkfvs-filters {
    width: 280px;
}
.rkfvs-overlay--quicklist .rkfvs-product__cart-wrap {
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    padding: 0;
    margin-top: 8px;
    width: auto;
    flex-shrink: 0;
}
.rkfvs-overlay--quicklist .rkfvs-product__cart-container {
    flex-direction: row;
    align-items: center;
    gap: 6px;
}
.rkfvs-overlay--quicklist .rkfvs-product__cart-btn {
    width: auto;
    min-width: 36px;
    padding: 6px 12px;
    font-size: 0.7rem;
    white-space: nowrap;
}
.rkfvs-overlay--quicklist .rkfvs-quantity-control {
    min-height: 28px;
}
.rkfvs-overlay--quicklist .rkfvs-quantity-btn {
    width: 24px;
    height: 24px;
}
.rkfvs-overlay--quicklist .rkfvs-quantity-input {
    width: 32px;
    min-height: 24px;
    font-size: 0.7rem;
}
@media (max-width: 767px) {
    .rkfvs-overlay--quicklist .rkfvs-product__cart-wrap {
        width: 100%;
    }
    .rkfvs-overlay--quicklist .rkfvs-product__cart-container {
        width: 100%;
        flex-direction: row;
        justify-content: flex-end;
    }
    .rkfvs-overlay--quicklist .rkfvs-product__cart-btn {
        font-size: 0.65rem;
        padding: 5px 8px;
    }
}
.rkfvs-overlay--glass {
    backdrop-filter: blur(10px);
}
.rkfvs-overlay--glass .rkfvs-overlay__container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.rkfvs-overlay--warm {
    --rkfvs-primary: #d4a373;
    --rkfvs-accent: #cc8b5c;
    --rkfvs-bg: #fefae0;
    --rkfvs-text: #5e503f;
    --rkfvs-border: #e3d5ca;
}
.rkfvs-overlay--warm .rkfvs-product__price {
    color: #cc8b5c;
}
.rkfvs-overlay--sidebar-right .rkfvs-overlay__body {
    flex-direction: row-reverse;
}
.rkfvs-overlay--sidebar-right .rkfvs-filters {
    border-right: none;
    border-left: 1px solid var(--rkfvs-border);
}
.rkfvs-overlay--sidebar-right .rkfvs-results {
}
.rkfvs-overlay--sidebar-right .rkfvs-overlay__container {
    --rkfvs-results-col-min: var(--rkfvs-card-min, 220px);
}
.rkfvs-overlay--dark-neon {
    --rkfvs-primary: #0a0a0a;
    --rkfvs-accent: #00ffff;
    --rkfvs-accent-secondary: #ff00ff;
    --rkfvs-bg: #0d0d0d;
    --rkfvs-text: #ffffff;
    --rkfvs-text-muted: #888888;
    --rkfvs-border: #1a1a1a;
    --rkfvs-shadow: rgba(0, 255, 255, 0.2);
    --rkfvs-glow-cyan: 0 0 10px rgba(0, 255, 255, 0.5);
    --rkfvs-glow-magenta: 0 0 10px rgba(255, 0, 255, 0.5);
}
.rkfvs-overlay--dark-neon .rkfvs-overlay__container {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a2e 100%);
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}
.rkfvs-overlay--dark-neon .rkfvs-overlay__header {
    border-bottom-color: rgba(0, 255, 255, 0.3);
    position: relative;
}
.rkfvs-overlay--dark-neon .rkfvs-overlay__header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rkfvs-accent), var(--rkfvs-accent-secondary), transparent);
}
.rkfvs-overlay--dark-neon .rkfvs-search-box {
    background: #1a1a1a;
    border-color: rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}
.rkfvs-overlay--dark-neon .rkfvs-search-box:focus-within {
    border-color: var(--rkfvs-accent);
    box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.2), 0 0 15px rgba(0, 255, 255, 0.3);
}
.rkfvs-overlay--dark-neon .rkfvs-search-box__input {
    color: #fff;
}
.rkfvs-overlay--dark-neon .rkfvs-search-box__input::placeholder {
    color: #555;
}
.rkfvs-overlay--dark-neon .rkfvs-product {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.rkfvs-overlay--dark-neon .rkfvs-product:hover {
    border-color: var(--rkfvs-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2), 0 0 15px rgba(0, 255, 255, 0.1);
}
.rkfvs-overlay--dark-neon .rkfvs-product__name {
    color: #fff;
    font-weight: 600;
}
.rkfvs-overlay--dark-neon .rkfvs-product__price {
    color: var(--rkfvs-accent);
    font-weight: 700;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}
.rkfvs-overlay--dark-neon .rkfvs-product__exact-badge {
    background: rgba(0, 255, 255, 0.15);
    border-color: var(--rkfvs-accent);
    color: var(--rkfvs-accent);
}
.rkfvs-overlay--dark-neon .rkfvs-filters {
    border-right-color: rgba(0, 255, 255, 0.2);
}
.rkfvs-overlay--dark-neon .rkfvs-filter-group__title {
    color: var(--rkfvs-accent);
    letter-spacing: 1px;
}
.rkfvs-overlay--dark-neon .rkfvs-filter-item {
    color: #ccc;
    transition: all 0.2s ease;
}
.rkfvs-overlay--dark-neon .rkfvs-filter-item:hover {
    background: rgba(0, 255, 255, 0.1);
    color: var(--rkfvs-accent);
}
.rkfvs-overlay--dark-neon .rkfvs-filter-item.active {
    background: rgba(0, 255, 255, 0.15);
    color: var(--rkfvs-accent);
    border-left: 2px solid var(--rkfvs-accent);
}
.rkfvs-overlay--dark-neon .rkfvs-price-track {
    background: #333;
}
.rkfvs-overlay--dark-neon .rkfvs-price-range {
    background: linear-gradient(90deg, var(--rkfvs-accent), var(--rkfvs-accent-secondary));
}
.rkfvs-overlay--dark-neon .rkfvs-price-input::-webkit-slider-thumb {
    background: var(--rkfvs-accent);
    box-shadow: 0 0 8px var(--rkfvs-accent);
}
.rkfvs-overlay--dark-neon .rkfvs-product__cart-btn {
    background: linear-gradient(135deg, var(--rkfvs-accent), #00ccff);
    color: #0a0a0a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.rkfvs-overlay--dark-neon .rkfvs-product__cart-btn:hover {
    background: linear-gradient(135deg, #00ccff, var(--rkfvs-accent));
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}
.rkfvs-overlay--dark-neon .rkfvs-overlay__main::-webkit-scrollbar-thumb {
    background: var(--rkfvs-accent);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}
.rkfvs-overlay--dark-neon .rkfvs-overlay__main::-webkit-scrollbar-thumb:hover {
    background: var(--rkfvs-accent-secondary);
}
.rkfvs-overlay--dark-neon .rkfvs-results-section-header--exact {
    color: var(--rkfvs-accent);
    border-bottom-color: var(--rkfvs-accent);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}
.rkfvs-overlay--dark-neon .rkfvs-spinner {
    border-color: rgba(0, 255, 255, 0.3);
    border-top-color: var(--rkfvs-accent);
}
.rkfvs-overlay--dark-neon .rkfvs-scroll-top-btn {
    background: rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid var(--rkfvs-accent);
}
.rkfvs-overlay--dark-neon .rkfvs-scroll-top-btn:hover {
    background: var(--rkfvs-accent);
    box-shadow: 0 0 15px var(--rkfvs-accent);
}
.rkfvs-overlay--light-neon {
    --rkfvs-primary: #ffffff;
    --rkfvs-accent: #ff00ff;
    --rkfvs-accent-secondary: #00b4d8;
    --rkfvs-bg: #f5f5ff;
    --rkfvs-text: #1a1a2e;
    --rkfvs-text-muted: #666666;
    --rkfvs-border: #e0e0e8;
    --rkfvs-shadow: rgba(255, 0, 255, 0.15);
    --rkfvs-glow-pink: 0 0 8px rgba(255, 0, 255, 0.4);
    --rkfvs-glow-blue: 0 0 8px rgba(0, 180, 216, 0.4);
}
.rkfvs-overlay--light-neon .rkfvs-overlay__container {
    background: linear-gradient(135deg, #f5f5ff 0%, #ffe5f5 100%);
    border: none;
}
.rkfvs-overlay--light-neon .rkfvs-overlay__header {
    border-bottom-color: rgba(255, 0, 255, 0.2);
}
.rkfvs-overlay--light-neon .rkfvs-search-box {
    background: #fff;
    border-color: rgba(255, 0, 255, 0.3);
}
.rkfvs-overlay--light-neon .rkfvs-search-box:focus-within {
    border-color: var(--rkfvs-accent);
    box-shadow: 0 0 0 2px rgba(255, 0, 255, 0.1), 0 0 12px rgba(255, 0, 255, 0.2);
}
.rkfvs-overlay--light-neon .rkfvs-product {
    background: #ffffff;
    border: 1px solid rgba(255, 0, 255, 0.15);
    transition: all 0.3s ease;
}
.rkfvs-overlay--light-neon .rkfvs-product:hover {
    border-color: var(--rkfvs-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 0, 255, 0.1);
}
.rkfvs-overlay--light-neon .rkfvs-product__price {
    color: var(--rkfvs-accent);
    font-weight: 700;
}
.rkfvs-overlay--light-neon .rkfvs-product__name {
    color: var(--rkfvs-text);
}
.rkfvs-overlay--light-neon .rkfvs-product__exact-badge {
    background: rgba(255, 0, 255, 0.08);
    border-color: var(--rkfvs-accent);
    color: var(--rkfvs-accent);
}
.rkfvs-overlay--light-neon .rkfvs-filters {
    border-right-color: rgba(255, 0, 255, 0.15);
}
.rkfvs-overlay--light-neon .rkfvs-filter-group__title {
    color: var(--rkfvs-accent);
}
.rkfvs-overlay--light-neon .rkfvs-filter-item:hover {
    background: rgba(255, 0, 255, 0.05);
    color: var(--rkfvs-accent);
}
.rkfvs-overlay--light-neon .rkfvs-filter-item.active {
    background: rgba(255, 0, 255, 0.1);
    color: var(--rkfvs-accent);
    border-left: 2px solid var(--rkfvs-accent);
}
.rkfvs-overlay--light-neon .rkfvs-price-track {
    background: #e0e0e8;
}
.rkfvs-overlay--light-neon .rkfvs-price-range {
    background: linear-gradient(90deg, var(--rkfvs-accent-secondary), var(--rkfvs-accent));
}
.rkfvs-overlay--light-neon .rkfvs-price-input::-webkit-slider-thumb {
    background: var(--rkfvs-accent);
    box-shadow: 0 0 6px var(--rkfvs-accent);
}
.rkfvs-overlay--light-neon .rkfvs-product__cart-btn {
    background: linear-gradient(135deg, var(--rkfvs-accent), var(--rkfvs-accent-secondary));
    color: #fff;
    font-weight: 600;
}
.rkfvs-overlay--light-neon .rkfvs-product__cart-btn:hover {
    background: linear-gradient(135deg, var(--rkfvs-accent-secondary), var(--rkfvs-accent));
    box-shadow: 0 0 12px rgba(255, 0, 255, 0.4);
}
.rkfvs-overlay--light-neon .rkfvs-nav-link {
    background: #fff;
    border-color: rgba(255, 0, 255, 0.15);
}
.rkfvs-overlay--light-neon .rkfvs-nav-link:hover {
    background: var(--rkfvs-accent);
    border-color: var(--rkfvs-accent);
}
.rkfvs-overlay--light-neon .rkfvs-featured-category {
    background: #fff;
    border-color: rgba(255, 0, 255, 0.15);
}
.rkfvs-overlay--light-neon .rkfvs-featured-category:hover {
    background: var(--rkfvs-accent);
    border-color: var(--rkfvs-accent);
}
.rkfvs-overlay--light-neon .rkfvs-popular__tag {
    background: #fff;
    border-color: rgba(255, 0, 255, 0.2);
}
.rkfvs-overlay--light-neon .rkfvs-popular__tag:hover {
    background: var(--rkfvs-accent);
    border-color: var(--rkfvs-accent);
    color: #fff;
}
.rkfvs-overlay--light-neon .rkfvs-spinner {
    border-color: rgba(255, 0, 255, 0.2);
    border-top-color: var(--rkfvs-accent);
}
.rkfvs-overlay--light-neon .rkfvs-product__stock--in {
    background: rgba(0, 255, 0, 0.1);
    color: #00cc00;
}
.rkfvs-overlay--light-neon .rkfvs-overlay__main::-webkit-scrollbar-thumb {
    background: var(--rkfvs-accent);
    border-radius: 10px;
}
.rkfvs-overlay--light-neon .rkfvs-scroll-top-btn {
    background: rgba(255, 0, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid var(--rkfvs-accent);
}
.rkfvs-overlay--light-neon .rkfvs-scroll-top-btn:hover {
    background: var(--rkfvs-accent);
    color: #fff;
}
@keyframes neonPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}
.rkfvs-overlay--dark-neon .rkfvs-accent-glow {
    animation: neonPulse 2s ease-in-out infinite;
}
.rkfvs-overlay--light-neon .rkfvs-accent-glow {
    animation: neonPulse 1.5s ease-in-out infinite;
}
.rkfvs-overlay--dark-neon .rkfvs-section-header .rkfvs-section-title,
.rkfvs-overlay--light-neon .rkfvs-section-header .rkfvs-section-title {
    background: linear-gradient(135deg, currentColor, var(--rkfvs-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}
.rkfvs-overlay--dark-neon .rkfvs-section-header .rkfvs-section-title {
    background: linear-gradient(135deg, #fff, var(--rkfvs-accent), var(--rkfvs-accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
}
#rkrfreevisualsearch-results {
    transition: opacity 0.15s ease;
    will-change: opacity;
}
.rkfvs-product--skeleton {
    transition: opacity 0.1s ease;
}
.rkfvs-product__image {
    aspect-ratio: 1;
    background: #f5f5f5;
}
.rkfvs-price-slider-container {
    padding: 12px 0;
}
.rkfvs-price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
}
.rkfvs-price-separator {
    color: #999;
    margin: 0 8px;
}
.rkfvs-price-slider-track {
    position: relative;
    height: 36px;
    margin: 0 8px;
}
.rkfvs-price-slider-range {
    position: absolute;
    height: 4px;
    background: #ff0000;
    border-radius: 2px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.rkfvs-price-input {
    position: absolute;
    width: 100%;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    pointer-events: none;
    margin: 0;
    z-index: 2;
}
.rkfvs-price-input::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff0000;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: all;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.rkfvs-price-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.3);
}
.rkfvs-price-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff0000;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: all;
}
.rkfvs-price-input-max {
    z-index: 3;
}
.rkfvs-price-apply-btn {
    width: 100%;
    margin-top: 16px;
    padding: 10px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}
.rkfvs-price-apply-btn:hover {
    background: #ff0000;
}
.rkfvs-price-slider-track::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}
body.module-rkrfreevisualsearch-searchpage .ps-searchbar__results,
body.module-rkrfreevisualsearch-searchpage .searchbar-autocomplete,
body.module-rkrfreevisualsearch-searchpage .ps-searchbar__autocomplete,
body.module-rkrfreevisualsearch-searchpage ul.ui-autocomplete,
body.module-rkrfreevisualsearch-searchpage .ui-autocomplete-loading,
body.module-rkrfreevisualsearch-searchpage .search-widget-results,
body.module-rkrfreevisualsearch-searchpage .autocomplete-results {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}
body.module-rkrfreevisualsearch-searchpage #search_widget,
body.module-rkrfreevisualsearch-searchpage #search_widget form,
body.module-rkrfreevisualsearch-searchpage #search_widget input[type="text"],
body.module-rkrfreevisualsearch-searchpage .search-widgets,
body.module-rkrfreevisualsearch-searchpage .ps-searchbar,
body.module-rkrfreevisualsearch-searchpage .ps-searchbar__form {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
    pointer-events: auto !important;
}
.rkfvs-native-suggestions {
    position: fixed !important;
    background: var(--rkfvs-nat-bg, #ffffff) !important;
    color: var(--rkfvs-nat-text, #333333) !important;
    border: var(--rkfvs-nat-border-width, 1px) solid var(--rkfvs-nat-border, #e0e0e0) !important;
    border-top: none !important;
    border-radius: 0 0 var(--rkfvs-nat-radius, 8px) var(--rkfvs-nat-radius, 8px) !important;
    z-index: 99999 !important;
    display: none;
    box-shadow: 0 12px 36px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.08) !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    font-family: inherit;
    overflow: hidden !important;
}
.rkfvs-native-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--rkfvs-nat-header-bg, #f5f5f5);
    border-bottom: 1px solid var(--rkfvs-nat-border, #eee);
    font-size: 12px;
    color: var(--rkfvs-nat-text-muted, #666);
    flex-shrink: 0;
}
.rkfvs-native-list {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 6px;
    min-height: 0;
    max-height: 380px;
}
.rkfvs-native-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: calc(var(--rkfvs-nat-radius, 8px) * 0.75);
    cursor: pointer;
    transition: all 0.15s ease;
    border: 1px solid transparent;
    margin-bottom: 2px;
    color: var(--rkfvs-nat-text, #333);
}
.rkfvs-native-item:hover {
    background: var(--rkfvs-nat-hover-bg, #f8f9fa);
    border-color: color-mix(in srgb, var(--rkfvs-nat-accent, #ff0000) 30%, transparent);
    transform: translateX(2px);
}
.rkfvs-native-img {
    width: 44px;
    height: 44px;
    border-radius: calc(var(--rkfvs-nat-radius, 8px) * 0.75);
    object-fit: cover;
    background: var(--rkfvs-nat-header-bg, #f5f5f5);
    flex-shrink: 0;
    border: 1px solid var(--rkfvs-nat-border, #eee);
}
.rkfvs-native-img-placeholder {
    width: 44px;
    height: 44px;
    border-radius: calc(var(--rkfvs-nat-radius, 8px) * 0.75);
    background: var(--rkfvs-nat-header-bg, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--rkfvs-nat-text-muted, #888);
}
.rkfvs-native-item__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.rkfvs-native-item__title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--rkfvs-nat-text, #1a1a1a);
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 60px; }
.rkfvs-native-item__title mark {
    background: transparent;
    color: var(--rkfvs-nat-accent, #ff0000);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, var(--rkfvs-nat-accent, #ff0000) 30%, transparent);
    text-underline-offset: 2px;
}
.rkfvs-native-item__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--rkfvs-nat-text-muted, #888);
    line-height: 1.2;
    flex-wrap: wrap;
}
.rkfvs-native-item__price {
    font-weight: 700;
    color: var(--rkfvs-nat-accent, #ff0000);
    font-size: 12px;
}
.rkfvs-native-item__ref {
    color: var(--rkfvs-nat-text-muted, #aaa);
    font-size: 10px;
}
.rkfvs-native-item__stock {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 9px;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 4px;
}
.rkfvs-native-item__stock--in {
    background: #e8f5e9;
    color: #2e7d32;
}
.rkfvs-native-item__stock--out {
    background: #fce4ec;
    color: #c62828;
}
.rkfvs-native-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    padding: 3px 8px;
    border-radius: 12px;
    line-height: 1.2;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.rkfvs-native-badge--product {
    background: #2c7da0;
}
.rkfvs-native-badge--category {
    background: #2a9d8f;
}
.rkfvs-native-badge--manufacturer {
    background: #e76f51;
}
.rkfvs-native-badge--default {
    background: #adb5bd;
}
.rkfvs-native-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--rkfvs-nat-footer-bg, #fff5f5);
    border-top: 1px solid var(--rkfvs-nat-accent, #ff0000);
    font-size: 12px;
    font-weight: 600;
    color: var(--rkfvs-nat-accent, #ff0000);
    cursor: pointer;
    transition: all 0.15s ease;
    flex-shrink: 0;
}
.rkfvs-native-footer:hover {
    filter: brightness(0.95);
}
@media (max-width: 768px) {
    .rkfvs-native-item__title {
        padding-right: 50px;
    }
    .rkfvs-native-badge {
        top: 6px;
        right: 6px;
        padding: 2px 6px;
        font-size: 8px;
    }
    .rkfvs-native-img,
    .rkfvs-native-img-placeholder {
        width: 36px;
        height: 36px;
    }
    .rkfvs-native-item__title {
        font-size: 12px;
    }
    .rkfvs-native-item__meta {
        font-size: 10px;
    }
}
.rkfvs-native-suggestions--glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.rkfvs-native-suggestions--dark-neon {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a2e 100%) !important;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2), 0 12px 36px rgba(0,0,0,0.5) !important;
}
.rkfvs-native-suggestions--dark-neon .rkfvs-native-item__price,
.rkfvs-native-suggestions--dark-neon .rkfvs-native-footer {
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}
.rkfvs-native-suggestions--dark-neon .rkfvs-native-header {
    border-bottom-color: rgba(0, 255, 255, 0.3);
}
.rkfvs-native-suggestions--dark-neon .rkfvs-native-item:hover {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.15);
}
.rkfvs-native-suggestions--light-neon {
    background: linear-gradient(135deg, #f5f5ff 0%, #ffe5f5 100%) !important;
}
.rkfvs-native-suggestions--light-neon .rkfvs-native-item__price {
    text-shadow: 0 0 5px rgba(255, 0, 255, 0.2);
}
.rkfvs-native-suggestions--tiles {
    border-radius: 0 !important;
}
.rkfvs-native-suggestions--tiles .rkfvs-native-item {
    border-radius: 0 !important;
}
.rkfvs-native-suggestions--nordic .rkfvs-native-item__title {
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 13px;
}
.rkfvs-native-suggestions--nordic .rkfvs-native-header {
    border-bottom-width: 2px;
}
@media (max-width: 768px) {
    .rkfvs-native-suggestions__wrapper {
        max-height: 70vh !important;
    }
    .rkfvs-native-img,
    .rkfvs-native-img-placeholder {
        width: 40px;
        height: 40px;
    }
    .rkfvs-native-item__title { font-size: 13px; }
    .rkfvs-native-item__meta { font-size: 11px; }
}
.rkfvs-filter-group {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--rkfvs-border, #e0e0e0);
    border-radius: 8px;
    margin-bottom: 8px;
    background: #fff;
    transition: box-shadow 0.2s ease;
}
.rkfvs-filter-group:hover { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); }
.rkfvs-filter-group__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 12px 14px;
    background: #fafafa;
    border-bottom: 1px solid transparent;
    user-select: none;
    transition: all 0.2s ease;
    gap: 8px;
}
.rkfvs-filter-group__header:hover { background: #f5f5f5; }
.rkfvs-filter-group--expanded .rkfvs-filter-group__header {
    border-bottom-color: var(--rkfvs-border, #e0e0e0);
    background: #f8f8f8;
}
.rkfvs-filter-group__title {
    margin: 0 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    color: var(--rkfvs-text, #333) !important;
    font-weight: 700 !important;
    padding: 0 !important;
    border-bottom: none !important;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rkfvs-filter-group__active-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--rkfvs-accent, #ff0000);
    color: #fff;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}
.rkfvs-filter-group__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: none;
    border: 1px solid var(--rkfvs-border, #e0e0e0);
    cursor: pointer;
    color: var(--rkfvs-text-muted, #888);
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    padding: 0;
}
.rkfvs-filter-group__toggle:hover {
    color: var(--rkfvs-primary, #000);
    background: rgba(0, 0, 0, 0.04);
    border-color: var(--rkfvs-primary, #000);
}
.rkfvs-filter-group__toggle svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 14px;
    height: 14px;
}
.rkfvs-filter-group--expanded .rkfvs-filter-group__toggle svg {
    transform: rotate(180deg);
}
.rkfvs-filter-group--expanded .rkfvs-filter-group__toggle {
    background: var(--rkfvs-accent, #ff0000);
    border-color: var(--rkfvs-accent, #ff0000);
    color: #fff;
}
.rkfvs-filter-group__items,
.rkfvs-filter-group__collapsible {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease,
                padding 0.35s ease;
    padding: 0 14px;
}
.rkfvs-filter-group--expanded .rkfvs-filter-group__items,
.rkfvs-filter-group--expanded .rkfvs-filter-group__collapsible {
    max-height: 2000px;
    opacity: 1;
    padding: 12px 14px;
}
.rkfvs-filter-load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    padding: 8px 12px;
    margin-top: 8px;
    background: #f8f9fa;
    border: 1px dashed var(--rkfvs-border, #e0e0e0);
    border-radius: 4px;
    color: var(--rkfvs-text-muted, #888);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
}
.rkfvs-filter-load-more:hover {
    background: #f0f0f0;
    border-color: var(--rkfvs-accent, #ff0000);
    color: var(--rkfvs-accent, #ff0000);
}
.rkfvs-filter-price .rkfvs-filter-group__items,
.rkfvs-filter-price .rkfvs-filter-group__collapsible {
    max-height: 2000px !important;
    opacity: 1 !important;
    padding: 12px 14px !important;
}
.rkfvs-filter-price:not(.rkfvs-filter-collapsible--expanded) .rkfvs-filter-group-body {
    max-height: 0 !important;
    opacity: 0 !important;
    padding: 0 14px !important;
    overflow: hidden !important;
}
@media (max-width: 768px) {
    .rkfvs-native-suggestions {
        max-height: 70vh !important;
        border-radius: 0 0 8px 8px !important;
    }
    .rkfvs-native-img,
    .rkfvs-native-img-placeholder {
        width: 40px;
        height: 40px;
    }
    .rkfvs-native-item__title { font-size: 13px; }
    .rkfvs-native-item__meta { font-size: 11px; }
}
.rkfvs-sp--dark {
    background: #1a1a2e !important;
}
.rkfvs-sp--dark .rkfvs-searchpage-header {
    border-bottom-color: #0f3460 !important;
}
.rkfvs-sp--dark .rkfvs-searchpage-filters {
    background: #16213e !important;
    border-color: #0f3460 !important;
}
.rkfvs-sp--dark .rkfvs-searchpage-product {
    background: #16213e !important;
    border-color: #0f3460 !important;
}
.rkfvs-sp--dark .rkfvs-searchpage-product-image {
    background: #0f3460 !important;
}
.rkfvs-sp--tiles .rkfvs-searchpage-body {
    flex-direction: column !important;
}
.rkfvs-sp--tiles .rkfvs-searchpage-products {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
}
.rkfvs-sp--tiles .rkfvs-searchpage-product {
    border: none !important;
    border-radius: 0 !important;
}
.rkfvs-sp--tiles .rkfvs-searchpage-product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white !important;
    padding: 20px 12px 12px;
}
.rkfvs-sp--tiles .rkfvs-searchpage-product-name,
.rkfvs-sp--tiles .rkfvs-searchpage-product-price {
    color: white !important;
}
.rkfvs-sp--nordic .rkfvs-searchpage-product-name {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.rkfvs-sp--nordic .rkfvs-searchpage-product {
    border-width: 1px;
    box-shadow: none;
}
.rkfvs-sp--quicklist .rkfvs-searchpage-products {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}
.rkfvs-sp--quicklist .rkfvs-searchpage-product {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 12px !important;
}
.rkfvs-sp--quicklist .rkfvs-searchpage-product-image {
    width: 80px !important;
    height: 80px !important;
    flex-shrink: 0 !important;
    aspect-ratio: auto !important;
}
.rkfvs-sp--quicklist .rkfvs-searchpage-product-info {
    flex: 1;
    padding: 0 !important;
}
.rkfvs-sp--quicklist .rkfvs-product-cart-container {
    padding: 0 !important;
    width: auto;
}
.rkfvs-sp--glass .rkfvs-searchpage-filters,
.rkfvs-sp--glass .rkfvs-searchpage-product {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.rkfvs-sp--sidebar-right .rkfvs-searchpage-body {
    flex-direction: row-reverse !important;
}
.rkfvs-sp--sidebar-right .rkfvs-searchpage-sidebar {
    border-left: 1px solid var(--rkfvs-border);
    border-right: none;
}
.rkfvs-sp--dark-neon {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a2e 100%) !important;
}
.rkfvs-sp--dark-neon .rkfvs-searchpage-product {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%) !important;
    border-color: rgba(0, 255, 255, 0.2) !important;
}
.rkfvs-sp--dark-neon .rkfvs-searchpage-product:hover {
    border-color: var(--rkfvs-accent) !important;
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2), 0 0 15px rgba(0, 255, 255, 0.1) !important;
}
.rkfvs-sp--dark-neon .rkfvs-searchpage-product-price {
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}
.rkfvs-sp--dark-neon .rkfvs-searchpage-filters {
    background: #1a1a1a !important;
    border-color: rgba(0, 255, 255, 0.2) !important;
}
.rkfvs-sp--light-neon {
    background: linear-gradient(135deg, #f5f5ff 0%, #ffe5f5 100%) !important;
}
.rkfvs-sp--light-neon .rkfvs-searchpage-product:hover {
    box-shadow: 0 8px 20px rgba(255, 0, 255, 0.1) !important;
}
.rkfvs-sp--warm .rkfvs-searchpage-product-price {
    color: #cc8b5c !important;
}
.rkfvs-combos-modal {
    background: var(--rkfvs-bg, #fff) !important;
    color: var(--rkfvs-text, #333) !important;
}
.rkfvs-combos-modal__header {
    border-bottom-color: var(--rkfvs-border, #e0e0e0) !important;
}
#rkfvs-combo-product-name {
    color: var(--rkfvs-text, #333) !important;
}
#rkfvs-combo-close {
    color: var(--rkfvs-text-muted, #999) !important;
}
@media (max-width: 767px) {
    .rkfvs-sp--sidebar-right .rkfvs-searchpage-body {
        flex-direction: column !important;
    }
    .rkfvs-sp--quicklist .rkfvs-searchpage-product {
        flex-direction: column !important;
    }
    .rkfvs-sp--quicklist .rkfvs-searchpage-product-image {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
    }
}