/**
 * SD Design – Livesökning
 * Version: 1.1.0
 */

.sd-search-wrap {
    position: relative;
    max-width: 500px;
    margin: 0 auto 30px;
    width: 100%;
}

.sd-search-inner {
    position: relative;
    display: flex;
    align-items: center;
}

.sd-search-icon {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: #999;
    pointer-events: none;
}

#sd-search-input {
    width: 100%;
    padding: 12px 40px 12px 44px;
    font-size: 15px;
    border: 2px solid #e4e6eb;
    border-radius: 10px;
    background: #fff;
    color: #1a1e2e;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

#sd-search-input::placeholder {
    color: #aaa;
}

#sd-search-input:focus {
    border-color: #1a2744;
    box-shadow: 0 0 0 3px rgba(26, 39, 68, .1);
}

.sd-search-clear {
    position: absolute;
    right: 14px;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    display: none;
    line-height: 1;
    user-select: none;
}

.sd-search-clear:hover {
    color: #1a2744;
}

.sd-search-clear.visible {
    display: block;
}

/* Dropdown-resultat */
.sd-search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e4e6eb;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
}

.sd-search-results.open {
    display: block;
}

.sd-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: #1a1e2e;
    transition: background .12s ease;
    border-bottom: 1px solid #f4f4f6;
}

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

.sd-search-item:hover {
    background: #f4f4f6;
}

.sd-search-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background: #f0f1f4;
}

.sd-search-item-info {
    flex: 1;
    min-width: 0;
}

.sd-search-item-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.sd-search-item-price {
    font-size: 13px;
    font-weight: 600;
    color: #1a2744;
    margin-top: 2px;
}

.sd-search-empty {
    padding: 20px 14px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.sd-search-loading {
    padding: 20px 14px;
    text-align: center;
    color: #999;
    font-size: 14px;
}
