.diko-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    margin-top: 4px;
    max-height: 480px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.diko-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    text-decoration: none;
    color: #1a1a1a;
    transition: background 0.15s;
    border-bottom: 1px solid #f0f0f0;
}

.diko-search-item:last-of-type {
    border-bottom: none;
}

.diko-search-item:hover {
    background: #f5f7ff;
}

.diko-search-item-img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diko-search-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.diko-search-item-title {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 500;
    color: #1a1a1a;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.diko-search-item-price {
    margin-top: 2px;
    font-size: 14px;
    font-weight: 600;
}

.diko-search-current-price {
    color: #1a1a1a;
}

.diko-search-old-price {
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
    font-size: 12px;
}

.diko-search-all {
    display: block;
    text-align: center;
    padding: 12px 16px;
    color: #4861FF;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-top: 1px solid #f0f0f0;
    transition: background 0.15s;
}

.diko-search-all:hover {
    background: #f5f7ff;
}

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

.diko-search-meta {
    padding: 6px 16px 10px;
    font-size: 11px;
    color: #bbb;
    text-align: right;
}

@media (max-width: 768px) {
    .diko-search-dropdown {
        max-height: 360px;
        border-radius: 8px;
    }

    .diko-search-item {
        padding: 8px 12px;
        gap: 10px;
    }

    .diko-search-item-img {
        width: 40px;
        height: 40px;
    }
}
