﻿.globalsearch {
    position: relative;
    max-width: 420px;
}

.globalsearch-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
}

.globalsearch-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-top: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    z-index: 999;
}

.globalsearch-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 360px;
    overflow-y: auto;
}

.globalsearch-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
}

.globalsearch-item:last-child {
    border-bottom: none;
}

.globalsearch-item.is-active,
.globalsearch-item:hover {
    background: #f6f6f6;
}

.globalsearch-thumb img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.globalsearch-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.globalsearch-title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.globalsearch-price {
    font-size: 13px;
    color: #666;
}

.globalsearch-no-results {
    padding: 12px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 640px) {
    .globalsearch {
        max-width: 100%;
    }
}
